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   786205 use strict;
  7         14  
  7         216  
3 7     7   27 use warnings;
  7         9  
  7         340  
4 7     7   2977 use Data::HashMap::Shared;
  7         18  
  7         3465  
5             our $VERSION = '0.02';
6              
7             sub import {
8 7     7   94 $^H{"Data::HashMap::Shared::II/shm_ii_put"} = 1;
9 7         21 $^H{"Data::HashMap::Shared::II/shm_ii_get"} = 1;
10 7         17 $^H{"Data::HashMap::Shared::II/shm_ii_remove"} = 1;
11 7         17 $^H{"Data::HashMap::Shared::II/shm_ii_exists"} = 1;
12 7         14 $^H{"Data::HashMap::Shared::II/shm_ii_incr"} = 1;
13 7         17 $^H{"Data::HashMap::Shared::II/shm_ii_decr"} = 1;
14 7         30 $^H{"Data::HashMap::Shared::II/shm_ii_incr_by"} = 1;
15 7         14 $^H{"Data::HashMap::Shared::II/shm_ii_size"} = 1;
16 7         14 $^H{"Data::HashMap::Shared::II/shm_ii_keys"} = 1;
17 7         12 $^H{"Data::HashMap::Shared::II/shm_ii_values"} = 1;
18 7         18 $^H{"Data::HashMap::Shared::II/shm_ii_items"} = 1;
19 7         14 $^H{"Data::HashMap::Shared::II/shm_ii_each"} = 1;
20 7         15 $^H{"Data::HashMap::Shared::II/shm_ii_iter_reset"} = 1;
21 7         14 $^H{"Data::HashMap::Shared::II/shm_ii_clear"} = 1;
22 7         31 $^H{"Data::HashMap::Shared::II/shm_ii_to_hash"} = 1;
23 7         13 $^H{"Data::HashMap::Shared::II/shm_ii_max_entries"} = 1;
24 7         16 $^H{"Data::HashMap::Shared::II/shm_ii_get_or_set"} = 1;
25 7         12 $^H{"Data::HashMap::Shared::II/shm_ii_put_ttl"} = 1;
26 7         15 $^H{"Data::HashMap::Shared::II/shm_ii_max_size"} = 1;
27 7         13 $^H{"Data::HashMap::Shared::II/shm_ii_ttl"} = 1;
28 7         13 $^H{"Data::HashMap::Shared::II/shm_ii_cursor"} = 1;
29 7         28 $^H{"Data::HashMap::Shared::II/shm_ii_cursor_next"} = 1;
30 7         34 $^H{"Data::HashMap::Shared::II/shm_ii_cursor_seek"} = 1;
31 7         24 $^H{"Data::HashMap::Shared::II/shm_ii_ttl_remaining"} = 1;
32 7         21 $^H{"Data::HashMap::Shared::II/shm_ii_capacity"} = 1;
33 7         13 $^H{"Data::HashMap::Shared::II/shm_ii_tombstones"} = 1;
34 7         16 $^H{"Data::HashMap::Shared::II/shm_ii_cursor_reset"} = 1;
35 7         21 $^H{"Data::HashMap::Shared::II/shm_ii_take"} = 1;
36 7         13 $^H{"Data::HashMap::Shared::II/shm_ii_pop"} = 1;
37 7         12 $^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         14 $^H{"Data::HashMap::Shared::II/shm_ii_flush_expired_partial"} = 1;
41 7         13 $^H{"Data::HashMap::Shared::II/shm_ii_mmap_size"} = 1;
42 7         14 $^H{"Data::HashMap::Shared::II/shm_ii_touch"} = 1;
43 7         15 $^H{"Data::HashMap::Shared::II/shm_ii_reserve"} = 1;
44 7         13 $^H{"Data::HashMap::Shared::II/shm_ii_stat_evictions"} = 1;
45 7         14 $^H{"Data::HashMap::Shared::II/shm_ii_stat_expired"} = 1;
46 7         14 $^H{"Data::HashMap::Shared::II/shm_ii_stat_recoveries"} = 1;
47 7         15 $^H{"Data::HashMap::Shared::II/shm_ii_arena_used"} = 1;
48 7         15 $^H{"Data::HashMap::Shared::II/shm_ii_arena_cap"} = 1;
49 7         16 $^H{"Data::HashMap::Shared::II/shm_ii_add"} = 1;
50 7         40 $^H{"Data::HashMap::Shared::II/shm_ii_update"} = 1;
51 7         21 $^H{"Data::HashMap::Shared::II/shm_ii_swap"} = 1;
52 7         14 $^H{"Data::HashMap::Shared::II/shm_ii_cas"} = 1;
53 7         17 $^H{"Data::HashMap::Shared::II/shm_ii_persist"} = 1;
54 7         2502 $^H{"Data::HashMap::Shared::II/shm_ii_set_ttl"} = 1;
55             }
56              
57             1;