Home
last modified time | relevance | path

Searched refs:hvalue (Results 1 – 7 of 7) sorted by relevance

/external/libsepol/src/
Dhashtab.c68 int hvalue; in hashtab_insert() local
74 hvalue = h->hash_value(h, key); in hashtab_insert()
76 cur = h->htable[hvalue]; in hashtab_insert()
95 newnode->next = h->htable[hvalue]; in hashtab_insert()
96 h->htable[hvalue] = newnode; in hashtab_insert()
107 int hvalue; in hashtab_remove() local
113 hvalue = h->hash_value(h, key); in hashtab_remove()
115 cur = h->htable[hvalue]; in hashtab_remove()
125 h->htable[hvalue] = cur->next; in hashtab_remove()
140 int hvalue; in hashtab_replace() local
[all …]
Dsidtab.c45 int hvalue; in sepol_sidtab_insert() local
51 hvalue = SIDTAB_HASH(sid); in sepol_sidtab_insert()
53 cur = s->htable[hvalue]; in sepol_sidtab_insert()
77 newnode->next = s->htable[hvalue]; in sepol_sidtab_insert()
78 s->htable[hvalue] = newnode; in sepol_sidtab_insert()
89 int hvalue; in sepol_sidtab_remove() local
95 hvalue = SIDTAB_HASH(sid); in sepol_sidtab_remove()
97 cur = s->htable[hvalue]; in sepol_sidtab_remove()
107 s->htable[hvalue] = cur->next; in sepol_sidtab_remove()
120 int hvalue; in sepol_sidtab_search() local
[all …]
Davtab.c59 avtab_insert_node(avtab_t * h, int hvalue, avtab_ptr_t prev, avtab_key_t * key, in avtab_insert_node() argument
73 newnode->next = h->htable[hvalue]; in avtab_insert_node()
74 h->htable[hvalue] = newnode; in avtab_insert_node()
83 int hvalue; in avtab_insert() local
91 hvalue = avtab_hash(key, h->mask); in avtab_insert()
92 for (prev = NULL, cur = h->htable[hvalue]; in avtab_insert()
110 newnode = avtab_insert_node(h, hvalue, prev, key, datum); in avtab_insert()
124 int hvalue; in avtab_insert_nonunique() local
131 hvalue = avtab_hash(key, h->mask); in avtab_insert_nonunique()
132 for (prev = NULL, cur = h->htable[hvalue]; in avtab_insert_nonunique()
[all …]
/external/libselinux/src/
Davc_sidtab.c51 int hvalue, rc = 0; in sidtab_insert() local
67 hvalue = sidtab_hash(newctx); in sidtab_insert()
68 newnode->next = s->htable[hvalue]; in sidtab_insert()
71 s->htable[hvalue] = newnode; in sidtab_insert()
81 int hvalue, rc = 0; in sidtab_context_to_sid() local
85 hvalue = sidtab_hash(ctx); in sidtab_context_to_sid()
88 cur = s->htable[hvalue]; in sidtab_context_to_sid()
Davc.c254 uint32_t hvalue; in hidden_def() local
256 hvalue = avc_cache.lru_hint; in hidden_def()
260 cur = avc_cache.slots[hvalue]; in hidden_def()
270 hvalue = (hvalue + 1) & (AVC_CACHE_SLOTS - 1); in hidden_def()
271 } while (hvalue != avc_cache.lru_hint); in hidden_def()
278 avc_cache.lru_hint = hvalue; in hidden_def()
281 avc_cache.slots[hvalue] = cur->next; in hidden_def()
302 int hvalue; in avc_claim_node() local
317 hvalue = avc_hash(ssid, tsid, tclass); in avc_claim_node()
323 new->next = avc_cache.slots[hvalue]; in avc_claim_node()
[all …]
/external/nist-sip/java/gov/nist/javax/sip/parser/
DURLParser.java694 String value = hvalue(); in qheader()
699 protected String hvalue() throws ParseException { in hvalue() method in URLParser
/external/v8/src/
Dobjects.cc2139 Handle<Object> hvalue(value); in SetPropertyWithCallbackSetterInPrototypes() local
2146 return self->AddProperty(*hname, *hvalue, attributes, strict_mode); in SetPropertyWithCallbackSetterInPrototypes()