Lines Matching defs:hkey
101 hash_key_t hkey;
105 hkey.type = HASH_KEY_STRING;
106 hkey.str = discard_const_p(char, key);
108 hret = hash_lookup(table, &hkey, &hvalue);
124 hash_key_t hkey;
152 hkey.type = HASH_KEY_STRING;
153 hkey.str = discard_const_p(char, key);
158 hret = hash_enter(table, &hkey, &hvalue);
220 hash_key_t hkey;
227 hkey.type = HASH_KEY_STRING;
228 hkey.str = discard_const_p(char, key);
230 hret = hash_delete(table, &hkey);
259 hash_key_t hkey;
261 hkey.type = HASH_KEY_STRING;
262 hkey.str = discard_const_p(char, key);
264 return hash_has_key(table, &hkey);