File Coverage

blib/lib/Data/HashMap/Shared/I16S.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::I16S;
2 1     1   529 use strict;
  1         2  
  1         37  
3 1     1   3 use warnings;
  1         1  
  1         37  
4 1     1   4 use Data::HashMap::Shared;
  1         1  
  1         420  
5             our $VERSION = '0.02';
6              
7             sub import {
8 1     1   9 $^H{"Data::HashMap::Shared::I16S/shm_i16s_put"} = 1;
9 1         2 $^H{"Data::HashMap::Shared::I16S/shm_i16s_get"} = 1;
10 1         2 $^H{"Data::HashMap::Shared::I16S/shm_i16s_remove"} = 1;
11 1         2 $^H{"Data::HashMap::Shared::I16S/shm_i16s_exists"} = 1;
12 1         2 $^H{"Data::HashMap::Shared::I16S/shm_i16s_size"} = 1;
13 1         2 $^H{"Data::HashMap::Shared::I16S/shm_i16s_keys"} = 1;
14 1         1 $^H{"Data::HashMap::Shared::I16S/shm_i16s_values"} = 1;
15 1         2 $^H{"Data::HashMap::Shared::I16S/shm_i16s_items"} = 1;
16 1         2 $^H{"Data::HashMap::Shared::I16S/shm_i16s_each"} = 1;
17 1         1 $^H{"Data::HashMap::Shared::I16S/shm_i16s_iter_reset"} = 1;
18 1         2 $^H{"Data::HashMap::Shared::I16S/shm_i16s_clear"} = 1;
19 1         2 $^H{"Data::HashMap::Shared::I16S/shm_i16s_to_hash"} = 1;
20 1         2 $^H{"Data::HashMap::Shared::I16S/shm_i16s_max_entries"} = 1;
21 1         2 $^H{"Data::HashMap::Shared::I16S/shm_i16s_get_or_set"} = 1;
22 1         1 $^H{"Data::HashMap::Shared::I16S/shm_i16s_put_ttl"} = 1;
23 1         2 $^H{"Data::HashMap::Shared::I16S/shm_i16s_max_size"} = 1;
24 1         2 $^H{"Data::HashMap::Shared::I16S/shm_i16s_ttl"} = 1;
25 1         2 $^H{"Data::HashMap::Shared::I16S/shm_i16s_cursor"} = 1;
26 1         1 $^H{"Data::HashMap::Shared::I16S/shm_i16s_cursor_next"} = 1;
27 1         2 $^H{"Data::HashMap::Shared::I16S/shm_i16s_cursor_seek"} = 1;
28 1         2 $^H{"Data::HashMap::Shared::I16S/shm_i16s_ttl_remaining"} = 1;
29 1         2 $^H{"Data::HashMap::Shared::I16S/shm_i16s_capacity"} = 1;
30 1         1 $^H{"Data::HashMap::Shared::I16S/shm_i16s_tombstones"} = 1;
31 1         2 $^H{"Data::HashMap::Shared::I16S/shm_i16s_cursor_reset"} = 1;
32 1         2 $^H{"Data::HashMap::Shared::I16S/shm_i16s_take"} = 1;
33 1         2 $^H{"Data::HashMap::Shared::I16S/shm_i16s_pop"} = 1;
34 1         1 $^H{"Data::HashMap::Shared::I16S/shm_i16s_shift"} = 1;
35 1         2 $^H{"Data::HashMap::Shared::I16S/shm_i16s_drain"} = 1;
36 1         2 $^H{"Data::HashMap::Shared::I16S/shm_i16s_flush_expired"} = 1;
37 1         2 $^H{"Data::HashMap::Shared::I16S/shm_i16s_flush_expired_partial"} = 1;
38 1         2 $^H{"Data::HashMap::Shared::I16S/shm_i16s_mmap_size"} = 1;
39 1         2 $^H{"Data::HashMap::Shared::I16S/shm_i16s_touch"} = 1;
40 1         2 $^H{"Data::HashMap::Shared::I16S/shm_i16s_reserve"} = 1;
41 1         23 $^H{"Data::HashMap::Shared::I16S/shm_i16s_stat_evictions"} = 1;
42 1         3 $^H{"Data::HashMap::Shared::I16S/shm_i16s_stat_expired"} = 1;
43 1         2 $^H{"Data::HashMap::Shared::I16S/shm_i16s_stat_recoveries"} = 1;
44 1         2 $^H{"Data::HashMap::Shared::I16S/shm_i16s_arena_used"} = 1;
45 1         1 $^H{"Data::HashMap::Shared::I16S/shm_i16s_arena_cap"} = 1;
46 1         2 $^H{"Data::HashMap::Shared::I16S/shm_i16s_add"} = 1;
47 1         2 $^H{"Data::HashMap::Shared::I16S/shm_i16s_update"} = 1;
48 1         2 $^H{"Data::HashMap::Shared::I16S/shm_i16s_swap"} = 1;
49 1         6 $^H{"Data::HashMap::Shared::I16S/shm_i16s_persist"} = 1;
50 1         28 $^H{"Data::HashMap::Shared::I16S/shm_i16s_set_ttl"} = 1;
51             }
52              
53             1;