File Coverage

blib/lib/Data/HashMap/Shared/II.pm
Criterion Covered Total %
statement 45 45 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod n/a
total 49 49 100.0


line stmt bran cond sub pod time code
1             package Data::HashMap::Shared::II;
2 7     7   1140392 use strict;
  7         17  
  7         308  
3 7     7   39 use warnings;
  7         12  
  7         533  
4 7     7   3793 use Data::HashMap::Shared;
  7         23  
  7         4208  
5             our $VERSION = '0.01';
6              
7             sub import {
8 7     7   130 $^H{"Data::HashMap::Shared::II/shm_ii_put"} = 1;
9 7         35 $^H{"Data::HashMap::Shared::II/shm_ii_get"} = 1;
10 7         24 $^H{"Data::HashMap::Shared::II/shm_ii_remove"} = 1;
11 7         20 $^H{"Data::HashMap::Shared::II/shm_ii_exists"} = 1;
12 7         25 $^H{"Data::HashMap::Shared::II/shm_ii_incr"} = 1;
13 7         22 $^H{"Data::HashMap::Shared::II/shm_ii_decr"} = 1;
14 7         24 $^H{"Data::HashMap::Shared::II/shm_ii_incr_by"} = 1;
15 7         20 $^H{"Data::HashMap::Shared::II/shm_ii_size"} = 1;
16 7         21 $^H{"Data::HashMap::Shared::II/shm_ii_keys"} = 1;
17 7         19 $^H{"Data::HashMap::Shared::II/shm_ii_values"} = 1;
18 7         25 $^H{"Data::HashMap::Shared::II/shm_ii_items"} = 1;
19 7         24 $^H{"Data::HashMap::Shared::II/shm_ii_each"} = 1;
20 7         20 $^H{"Data::HashMap::Shared::II/shm_ii_iter_reset"} = 1;
21 7         22 $^H{"Data::HashMap::Shared::II/shm_ii_clear"} = 1;
22 7         19 $^H{"Data::HashMap::Shared::II/shm_ii_to_hash"} = 1;
23 7         21 $^H{"Data::HashMap::Shared::II/shm_ii_max_entries"} = 1;
24 7         21 $^H{"Data::HashMap::Shared::II/shm_ii_get_or_set"} = 1;
25 7         21 $^H{"Data::HashMap::Shared::II/shm_ii_put_ttl"} = 1;
26 7         19 $^H{"Data::HashMap::Shared::II/shm_ii_max_size"} = 1;
27 7         22 $^H{"Data::HashMap::Shared::II/shm_ii_ttl"} = 1;
28 7         19 $^H{"Data::HashMap::Shared::II/shm_ii_cursor"} = 1;
29 7         57 $^H{"Data::HashMap::Shared::II/shm_ii_cursor_next"} = 1;
30 7         35 $^H{"Data::HashMap::Shared::II/shm_ii_cursor_seek"} = 1;
31 7         35 $^H{"Data::HashMap::Shared::II/shm_ii_ttl_remaining"} = 1;
32 7         32 $^H{"Data::HashMap::Shared::II/shm_ii_capacity"} = 1;
33 7         20 $^H{"Data::HashMap::Shared::II/shm_ii_tombstones"} = 1;
34 7         20 $^H{"Data::HashMap::Shared::II/shm_ii_cursor_reset"} = 1;
35 7         22 $^H{"Data::HashMap::Shared::II/shm_ii_take"} = 1;
36 7         21 $^H{"Data::HashMap::Shared::II/shm_ii_flush_expired"} = 1;
37 7         19 $^H{"Data::HashMap::Shared::II/shm_ii_flush_expired_partial"} = 1;
38 7         22 $^H{"Data::HashMap::Shared::II/shm_ii_mmap_size"} = 1;
39 7         19 $^H{"Data::HashMap::Shared::II/shm_ii_touch"} = 1;
40 7         21 $^H{"Data::HashMap::Shared::II/shm_ii_reserve"} = 1;
41 7         22 $^H{"Data::HashMap::Shared::II/shm_ii_stat_evictions"} = 1;
42 7         36 $^H{"Data::HashMap::Shared::II/shm_ii_stat_expired"} = 1;
43 7         2894 $^H{"Data::HashMap::Shared::II/shm_ii_stat_recoveries"} = 1;
44             }
45              
46             1;