Home
last modified time | relevance | path

Searched refs:Curl_hash_pick (Results 1 – 8 of 8) sorted by relevance

/external/curl/tests/unit/
Dunit1603.c72 nodep = Curl_hash_pick(&hash_static, &key1, strlen(key1));
77 nodep = Curl_hash_pick(&hash_static, &key2, strlen(key2));
82 nodep = Curl_hash_pick(&hash_static, &key3, strlen(key3));
88 nodep = Curl_hash_pick(&hash_static, &key4, strlen(key4));
92 nodep = Curl_hash_pick(&hash_static, &key1, strlen(key1));
94 nodep = Curl_hash_pick(&hash_static, &key2, strlen(key2));
96 nodep = Curl_hash_pick(&hash_static, &key3, strlen(key3));
98 nodep = Curl_hash_pick(&hash_static, &key4, strlen(key4));
104 nodep = Curl_hash_pick(&hash_static, &key1, strlen(key1));
106 nodep = Curl_hash_pick(&hash_static, &key4, strlen(key4));
[all …]
Dunit1609.c143 dns = Curl_hash_pick(easy->dns.hostcache, entry_id, strlen(entry_id) + 1);
Dunit1607.c135 dns = Curl_hash_pick(easy->dns.hostcache, entry_id, strlen(entry_id) + 1);
/external/curl/lib/
Dhash.h80 void *Curl_hash_pick(struct Curl_hash *, void *key, size_t key_len);
Dhostip.c271 dns = Curl_hash_pick(data->dns.hostcache, entry_id, entry_len + 1); in fetch_addr()
279 dns = Curl_hash_pick(data->dns.hostcache, entry_id, entry_len + 1); in fetch_addr()
1012 dns = Curl_hash_pick(data->dns.hostcache, entry_id, entry_len + 1); in Curl_loadhostpairs()
Dhash.c160 Curl_hash_pick(struct Curl_hash *h, void *key, size_t key_len) in Curl_hash_pick() function
Dconncache.c191 bundle = Curl_hash_pick(&connc->hash, key, strlen(key)); in Curl_conncache_find_bundle()
Dmulti.c212 return Curl_hash_pick(sh, (char *)&s, sizeof(curl_socket_t)); in sh_getentry()