File Coverage

blib/lib/Data/HashMap/Shared/I32S.pm
Criterion Covered Total %
statement 42 42 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod n/a
total 46 46 100.0


line stmt bran cond sub pod time code
1             package Data::HashMap::Shared::I32S;
2 1     1   741 use strict;
  1         2  
  1         54  
3 1     1   5 use warnings;
  1         2  
  1         59  
4 1     1   6 use Data::HashMap::Shared;
  1         2  
  1         612  
5             our $VERSION = '0.01';
6              
7             sub import {
8 1     1   16 $^H{"Data::HashMap::Shared::I32S/shm_i32s_put"} = 1;
9 1         4 $^H{"Data::HashMap::Shared::I32S/shm_i32s_get"} = 1;
10 1         4 $^H{"Data::HashMap::Shared::I32S/shm_i32s_remove"} = 1;
11 1         3 $^H{"Data::HashMap::Shared::I32S/shm_i32s_exists"} = 1;
12 1         3 $^H{"Data::HashMap::Shared::I32S/shm_i32s_size"} = 1;
13 1         4 $^H{"Data::HashMap::Shared::I32S/shm_i32s_keys"} = 1;
14 1         3 $^H{"Data::HashMap::Shared::I32S/shm_i32s_values"} = 1;
15 1         3 $^H{"Data::HashMap::Shared::I32S/shm_i32s_items"} = 1;
16 1         3 $^H{"Data::HashMap::Shared::I32S/shm_i32s_each"} = 1;
17 1         4 $^H{"Data::HashMap::Shared::I32S/shm_i32s_iter_reset"} = 1;
18 1         3 $^H{"Data::HashMap::Shared::I32S/shm_i32s_clear"} = 1;
19 1         3 $^H{"Data::HashMap::Shared::I32S/shm_i32s_to_hash"} = 1;
20 1         3 $^H{"Data::HashMap::Shared::I32S/shm_i32s_max_entries"} = 1;
21 1         3 $^H{"Data::HashMap::Shared::I32S/shm_i32s_get_or_set"} = 1;
22 1         3 $^H{"Data::HashMap::Shared::I32S/shm_i32s_put_ttl"} = 1;
23 1         26 $^H{"Data::HashMap::Shared::I32S/shm_i32s_max_size"} = 1;
24 1         4 $^H{"Data::HashMap::Shared::I32S/shm_i32s_ttl"} = 1;
25 1         3 $^H{"Data::HashMap::Shared::I32S/shm_i32s_cursor"} = 1;
26 1         4 $^H{"Data::HashMap::Shared::I32S/shm_i32s_cursor_next"} = 1;
27 1         3 $^H{"Data::HashMap::Shared::I32S/shm_i32s_cursor_seek"} = 1;
28 1         3 $^H{"Data::HashMap::Shared::I32S/shm_i32s_ttl_remaining"} = 1;
29 1         3 $^H{"Data::HashMap::Shared::I32S/shm_i32s_capacity"} = 1;
30 1         4 $^H{"Data::HashMap::Shared::I32S/shm_i32s_tombstones"} = 1;
31 1         3 $^H{"Data::HashMap::Shared::I32S/shm_i32s_cursor_reset"} = 1;
32 1         3 $^H{"Data::HashMap::Shared::I32S/shm_i32s_take"} = 1;
33 1         3 $^H{"Data::HashMap::Shared::I32S/shm_i32s_flush_expired"} = 1;
34 1         3 $^H{"Data::HashMap::Shared::I32S/shm_i32s_flush_expired_partial"} = 1;
35 1         3 $^H{"Data::HashMap::Shared::I32S/shm_i32s_mmap_size"} = 1;
36 1         4 $^H{"Data::HashMap::Shared::I32S/shm_i32s_touch"} = 1;
37 1         3 $^H{"Data::HashMap::Shared::I32S/shm_i32s_reserve"} = 1;
38 1         3 $^H{"Data::HashMap::Shared::I32S/shm_i32s_stat_evictions"} = 1;
39 1         3 $^H{"Data::HashMap::Shared::I32S/shm_i32s_stat_expired"} = 1;
40 1         46 $^H{"Data::HashMap::Shared::I32S/shm_i32s_stat_recoveries"} = 1;
41             }
42              
43             1;