File Coverage

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


line stmt bran cond sub pod time code
1             package Data::HashMap::Shared::II;
2 14     14   1405113 use strict;
  14         23  
  14         445  
3 14     14   48 use warnings;
  14         23  
  14         690  
4 14     14   4857 use Data::HashMap::Shared;
  14         30  
  14         6750  
5             our $VERSION = '0.08';
6              
7             sub import {
8 14     14   168 $^H{"Data::HashMap::Shared::II/shm_ii_put"} = 1;
9 14         46 $^H{"Data::HashMap::Shared::II/shm_ii_get"} = 1;
10 14         38 $^H{"Data::HashMap::Shared::II/shm_ii_remove"} = 1;
11 14         39 $^H{"Data::HashMap::Shared::II/shm_ii_exists"} = 1;
12 14         32 $^H{"Data::HashMap::Shared::II/shm_ii_incr"} = 1;
13 14         41 $^H{"Data::HashMap::Shared::II/shm_ii_decr"} = 1;
14 14         27 $^H{"Data::HashMap::Shared::II/shm_ii_incr_by"} = 1;
15 14         32 $^H{"Data::HashMap::Shared::II/shm_ii_size"} = 1;
16 14         40 $^H{"Data::HashMap::Shared::II/shm_ii_keys"} = 1;
17 14         27 $^H{"Data::HashMap::Shared::II/shm_ii_values"} = 1;
18 14         66 $^H{"Data::HashMap::Shared::II/shm_ii_items"} = 1;
19 14         30 $^H{"Data::HashMap::Shared::II/shm_ii_each"} = 1;
20 14         31 $^H{"Data::HashMap::Shared::II/shm_ii_iter_reset"} = 1;
21 14         33 $^H{"Data::HashMap::Shared::II/shm_ii_clear"} = 1;
22 14         31 $^H{"Data::HashMap::Shared::II/shm_ii_to_hash"} = 1;
23 14         26 $^H{"Data::HashMap::Shared::II/shm_ii_max_entries"} = 1;
24 14         34 $^H{"Data::HashMap::Shared::II/shm_ii_get_or_set"} = 1;
25 14         26 $^H{"Data::HashMap::Shared::II/shm_ii_put_ttl"} = 1;
26 14         48 $^H{"Data::HashMap::Shared::II/shm_ii_max_size"} = 1;
27 14         30 $^H{"Data::HashMap::Shared::II/shm_ii_ttl"} = 1;
28 14         26 $^H{"Data::HashMap::Shared::II/shm_ii_cursor"} = 1;
29 14         69 $^H{"Data::HashMap::Shared::II/shm_ii_cursor_next"} = 1;
30 14         56 $^H{"Data::HashMap::Shared::II/shm_ii_cursor_seek"} = 1;
31 14         29 $^H{"Data::HashMap::Shared::II/shm_ii_ttl_remaining"} = 1;
32 14         31 $^H{"Data::HashMap::Shared::II/shm_ii_capacity"} = 1;
33 14         32 $^H{"Data::HashMap::Shared::II/shm_ii_tombstones"} = 1;
34 14         29 $^H{"Data::HashMap::Shared::II/shm_ii_cursor_reset"} = 1;
35 14         30 $^H{"Data::HashMap::Shared::II/shm_ii_take"} = 1;
36 14         27 $^H{"Data::HashMap::Shared::II/shm_ii_pop"} = 1;
37 14         31 $^H{"Data::HashMap::Shared::II/shm_ii_shift"} = 1;
38 14         29 $^H{"Data::HashMap::Shared::II/shm_ii_drain"} = 1;
39 14         25 $^H{"Data::HashMap::Shared::II/shm_ii_flush_expired"} = 1;
40 14         28 $^H{"Data::HashMap::Shared::II/shm_ii_flush_expired_partial"} = 1;
41 14         52 $^H{"Data::HashMap::Shared::II/shm_ii_mmap_size"} = 1;
42 14         29 $^H{"Data::HashMap::Shared::II/shm_ii_touch"} = 1;
43 14         28 $^H{"Data::HashMap::Shared::II/shm_ii_reserve"} = 1;
44 14         34 $^H{"Data::HashMap::Shared::II/shm_ii_stat_evictions"} = 1;
45 14         26 $^H{"Data::HashMap::Shared::II/shm_ii_stat_expired"} = 1;
46 14         28 $^H{"Data::HashMap::Shared::II/shm_ii_stat_recoveries"} = 1;
47 14         25 $^H{"Data::HashMap::Shared::II/shm_ii_arena_used"} = 1;
48 14         26 $^H{"Data::HashMap::Shared::II/shm_ii_arena_cap"} = 1;
49 14         29 $^H{"Data::HashMap::Shared::II/shm_ii_add"} = 1;
50 14         37 $^H{"Data::HashMap::Shared::II/shm_ii_add_ttl"} = 1;
51 14         38 $^H{"Data::HashMap::Shared::II/shm_ii_update_ttl"} = 1;
52 14         27 $^H{"Data::HashMap::Shared::II/shm_ii_update"} = 1;
53 14         29 $^H{"Data::HashMap::Shared::II/shm_ii_swap"} = 1;
54 14         29 $^H{"Data::HashMap::Shared::II/shm_ii_cas"} = 1;
55 14         24 $^H{"Data::HashMap::Shared::II/shm_ii_cas_take"} = 1;
56 14         23 $^H{"Data::HashMap::Shared::II/shm_ii_persist"} = 1;
57 14         3307 $^H{"Data::HashMap::Shared::II/shm_ii_set_ttl"} = 1;
58             }
59              
60             1;