File Coverage

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


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