Searched defs:hvalue (Results 1 - 6 of 6) sorted by relevance

/external/libselinux/src/
H A Davc_sidtab.c51 int hvalue, rc = 0; local
67 hvalue = sidtab_hash(newctx);
68 newnode->next = s->htable[hvalue];
71 s->htable[hvalue] = newnode;
81 int hvalue, rc = 0; local
85 hvalue = sidtab_hash(ctx);
88 cur = s->htable[hvalue];
H A Davc.c254 uint32_t hvalue; local
256 hvalue = avc_cache.lru_hint;
260 cur = avc_cache.slots[hvalue];
270 hvalue = (hvalue + 1) & (AVC_CACHE_SLOTS - 1);
271 } while (hvalue != avc_cache.lru_hint);
278 avc_cache.lru_hint = hvalue;
281 avc_cache.slots[hvalue] = cur->next;
302 int hvalue; local
317 hvalue
336 int hvalue; local
[all...]
/external/libsepol/src/
H A Dhashtab.c68 int hvalue; local
74 hvalue = h->hash_value(h, key);
76 cur = h->htable[hvalue];
95 newnode->next = h->htable[hvalue];
96 h->htable[hvalue] = newnode;
107 int hvalue; local
113 hvalue = h->hash_value(h, key);
115 cur = h->htable[hvalue];
125 h->htable[hvalue] = cur->next;
140 int hvalue; local
181 int hvalue; local
[all...]
H A Dsidtab.c45 int hvalue; local
51 hvalue = SIDTAB_HASH(sid);
53 cur = s->htable[hvalue];
77 newnode->next = s->htable[hvalue];
78 s->htable[hvalue] = newnode;
89 int hvalue; local
95 hvalue = SIDTAB_HASH(sid);
97 cur = s->htable[hvalue];
107 s->htable[hvalue] = cur->next;
120 int hvalue; local
[all...]
H A Davtab.c59 avtab_insert_node(avtab_t * h, int hvalue, avtab_ptr_t prev, avtab_key_t * key, argument
73 newnode->next = h->htable[hvalue];
74 h->htable[hvalue] = newnode;
83 int hvalue; local
91 hvalue = avtab_hash(key, h->mask);
92 for (prev = NULL, cur = h->htable[hvalue];
110 newnode = avtab_insert_node(h, hvalue, prev, key, datum);
124 int hvalue; local
131 hvalue = avtab_hash(key, h->mask);
132 for (prev = NULL, cur = h->htable[hvalue];
156 int hvalue; local
191 int hvalue; local
[all...]
/external/nist-sip/java/gov/nist/javax/sip/parser/
H A DURLParser.java694 String value = hvalue();
699 protected String hvalue() throws ParseException { method in class:URLParser

Completed in 88 milliseconds