File Coverage

blib/lib/Data/HashMap/Shared/SS.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::SS;
2 8     8   124956 use strict;
  8         18  
  8         504  
3 8     8   47 use warnings;
  8         18  
  8         612  
4 8     8   649 use Data::HashMap::Shared;
  8         15  
  8         4517  
5             our $VERSION = '0.01';
6              
7             sub import {
8 8     8   143 $^H{"Data::HashMap::Shared::SS/shm_ss_put"} = 1;
9 8         28 $^H{"Data::HashMap::Shared::SS/shm_ss_get"} = 1;
10 8         29 $^H{"Data::HashMap::Shared::SS/shm_ss_remove"} = 1;
11 8         23 $^H{"Data::HashMap::Shared::SS/shm_ss_exists"} = 1;
12 8         27 $^H{"Data::HashMap::Shared::SS/shm_ss_size"} = 1;
13 8         27 $^H{"Data::HashMap::Shared::SS/shm_ss_keys"} = 1;
14 8         48 $^H{"Data::HashMap::Shared::SS/shm_ss_values"} = 1;
15 8         33 $^H{"Data::HashMap::Shared::SS/shm_ss_items"} = 1;
16 8         33 $^H{"Data::HashMap::Shared::SS/shm_ss_each"} = 1;
17 8         27 $^H{"Data::HashMap::Shared::SS/shm_ss_iter_reset"} = 1;
18 8         54 $^H{"Data::HashMap::Shared::SS/shm_ss_clear"} = 1;
19 8         28 $^H{"Data::HashMap::Shared::SS/shm_ss_to_hash"} = 1;
20 8         26 $^H{"Data::HashMap::Shared::SS/shm_ss_max_entries"} = 1;
21 8         24 $^H{"Data::HashMap::Shared::SS/shm_ss_get_or_set"} = 1;
22 8         24 $^H{"Data::HashMap::Shared::SS/shm_ss_put_ttl"} = 1;
23 8         24 $^H{"Data::HashMap::Shared::SS/shm_ss_max_size"} = 1;
24 8         26 $^H{"Data::HashMap::Shared::SS/shm_ss_ttl"} = 1;
25 8         66 $^H{"Data::HashMap::Shared::SS/shm_ss_cursor"} = 1;
26 8         58 $^H{"Data::HashMap::Shared::SS/shm_ss_cursor_next"} = 1;
27 8         26 $^H{"Data::HashMap::Shared::SS/shm_ss_cursor_seek"} = 1;
28 8         25 $^H{"Data::HashMap::Shared::SS/shm_ss_ttl_remaining"} = 1;
29 8         36 $^H{"Data::HashMap::Shared::SS/shm_ss_capacity"} = 1;
30 8         24 $^H{"Data::HashMap::Shared::SS/shm_ss_tombstones"} = 1;
31 8         26 $^H{"Data::HashMap::Shared::SS/shm_ss_cursor_reset"} = 1;
32 8         23 $^H{"Data::HashMap::Shared::SS/shm_ss_take"} = 1;
33 8         32 $^H{"Data::HashMap::Shared::SS/shm_ss_flush_expired"} = 1;
34 8         23 $^H{"Data::HashMap::Shared::SS/shm_ss_flush_expired_partial"} = 1;
35 8         23 $^H{"Data::HashMap::Shared::SS/shm_ss_mmap_size"} = 1;
36 8         23 $^H{"Data::HashMap::Shared::SS/shm_ss_touch"} = 1;
37 8         24 $^H{"Data::HashMap::Shared::SS/shm_ss_reserve"} = 1;
38 8         27 $^H{"Data::HashMap::Shared::SS/shm_ss_stat_evictions"} = 1;
39 8         37 $^H{"Data::HashMap::Shared::SS/shm_ss_stat_expired"} = 1;
40 8         483028 $^H{"Data::HashMap::Shared::SS/shm_ss_stat_recoveries"} = 1;
41             }
42              
43             1;