Searched defs:hash_static (Results 1 - 2 of 2) sorted by relevance

/external/curl/tests/unit/
H A Dunit1602.c31 static struct curl_hash hash_static; variable in typeref:struct:curl_hash
41 return Curl_hash_init(&hash_static, 7, Curl_hash_str,
47 Curl_hash_destroy(&hash_static);
63 nodep = Curl_hash_add(&hash_static, &key, klen, value);
67 Curl_hash_clean(&hash_static); variable
73 nodep = Curl_hash_add(&hash_static, &key2, klen, value2);
H A Dunit1603.c31 static struct curl_hash hash_static; variable in typeref:struct:curl_hash
42 return Curl_hash_init(&hash_static, slots, Curl_hash_str,
48 Curl_hash_destroy(&hash_static);
70 nodep = Curl_hash_add(&hash_static, &key1, strlen(key1), &key1);
72 nodep = Curl_hash_pick(&hash_static, &key1, strlen(key1));
75 nodep = Curl_hash_add(&hash_static, &key2, strlen(key2), &key2);
77 nodep = Curl_hash_pick(&hash_static, &key2, strlen(key2));
80 nodep = Curl_hash_add(&hash_static, &key3, strlen(key3), &key3);
82 nodep = Curl_hash_pick(&hash_static, &key3, strlen(key3));
86 nodep = Curl_hash_add(&hash_static,
148 Curl_hash_clean(&hash_static); variable
[all...]

Completed in 166 milliseconds