File Coverage

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


line stmt bran cond sub pod time code
1             package Data::HashMap::Shared::I32S;
2 1     1   562 use strict;
  1         2  
  1         35  
3 1     1   4 use warnings;
  1         1  
  1         39  
4 1     1   3 use Data::HashMap::Shared;
  1         1  
  1         434  
5             our $VERSION = '0.02';
6              
7             sub import {
8 1     1   10 $^H{"Data::HashMap::Shared::I32S/shm_i32s_put"} = 1;
9 1         2 $^H{"Data::HashMap::Shared::I32S/shm_i32s_get"} = 1;
10 1         2 $^H{"Data::HashMap::Shared::I32S/shm_i32s_remove"} = 1;
11 1         2 $^H{"Data::HashMap::Shared::I32S/shm_i32s_exists"} = 1;
12 1         1 $^H{"Data::HashMap::Shared::I32S/shm_i32s_size"} = 1;
13 1         2 $^H{"Data::HashMap::Shared::I32S/shm_i32s_keys"} = 1;
14 1         2 $^H{"Data::HashMap::Shared::I32S/shm_i32s_values"} = 1;
15 1         2 $^H{"Data::HashMap::Shared::I32S/shm_i32s_items"} = 1;
16 1         1 $^H{"Data::HashMap::Shared::I32S/shm_i32s_each"} = 1;
17 1         3 $^H{"Data::HashMap::Shared::I32S/shm_i32s_iter_reset"} = 1;
18 1         2 $^H{"Data::HashMap::Shared::I32S/shm_i32s_clear"} = 1;
19 1         1 $^H{"Data::HashMap::Shared::I32S/shm_i32s_to_hash"} = 1;
20 1         2 $^H{"Data::HashMap::Shared::I32S/shm_i32s_max_entries"} = 1;
21 1         2 $^H{"Data::HashMap::Shared::I32S/shm_i32s_get_or_set"} = 1;
22 1         1 $^H{"Data::HashMap::Shared::I32S/shm_i32s_put_ttl"} = 1;
23 1         2 $^H{"Data::HashMap::Shared::I32S/shm_i32s_max_size"} = 1;
24 1         2 $^H{"Data::HashMap::Shared::I32S/shm_i32s_ttl"} = 1;
25 1         2 $^H{"Data::HashMap::Shared::I32S/shm_i32s_cursor"} = 1;
26 1         2 $^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         2 $^H{"Data::HashMap::Shared::I32S/shm_i32s_ttl_remaining"} = 1;
29 1         7 $^H{"Data::HashMap::Shared::I32S/shm_i32s_capacity"} = 1;
30 1         5 $^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         2 $^H{"Data::HashMap::Shared::I32S/shm_i32s_pop"} = 1;
34 1         3 $^H{"Data::HashMap::Shared::I32S/shm_i32s_shift"} = 1;
35 1         3 $^H{"Data::HashMap::Shared::I32S/shm_i32s_drain"} = 1;
36 1         3 $^H{"Data::HashMap::Shared::I32S/shm_i32s_flush_expired"} = 1;
37 1         3 $^H{"Data::HashMap::Shared::I32S/shm_i32s_flush_expired_partial"} = 1;
38 1         3 $^H{"Data::HashMap::Shared::I32S/shm_i32s_mmap_size"} = 1;
39 1         3 $^H{"Data::HashMap::Shared::I32S/shm_i32s_touch"} = 1;
40 1         3 $^H{"Data::HashMap::Shared::I32S/shm_i32s_reserve"} = 1;
41 1         18 $^H{"Data::HashMap::Shared::I32S/shm_i32s_stat_evictions"} = 1;
42 1         3 $^H{"Data::HashMap::Shared::I32S/shm_i32s_stat_expired"} = 1;
43 1         3 $^H{"Data::HashMap::Shared::I32S/shm_i32s_stat_recoveries"} = 1;
44 1         3 $^H{"Data::HashMap::Shared::I32S/shm_i32s_arena_used"} = 1;
45 1         2 $^H{"Data::HashMap::Shared::I32S/shm_i32s_arena_cap"} = 1;
46 1         3 $^H{"Data::HashMap::Shared::I32S/shm_i32s_add"} = 1;
47 1         3 $^H{"Data::HashMap::Shared::I32S/shm_i32s_update"} = 1;
48 1         3 $^H{"Data::HashMap::Shared::I32S/shm_i32s_swap"} = 1;
49 1         2 $^H{"Data::HashMap::Shared::I32S/shm_i32s_persist"} = 1;
50 1         46 $^H{"Data::HashMap::Shared::I32S/shm_i32s_set_ttl"} = 1;
51             }
52              
53             1;