Home | History | Annotate | Download | only in unit

Lines Matching full:hash_static

31 static struct curl_hash hash_static;
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, &key4, strlen(key4), &key4);
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));
102 rc = Curl_hash_delete(&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));
110 nodep = Curl_hash_add(&hash_static, &key4, strlen(key4), &key4);
112 nodep = Curl_hash_pick(&hash_static, &key4, strlen(key4));
116 rc = Curl_hash_delete(&hash_static, &key1, strlen(key1));
118 nodep = Curl_hash_pick(&hash_static, &key1, strlen(key1));
120 nodep = Curl_hash_pick(&hash_static, &key4, strlen(key4));
124 rc = Curl_hash_delete(&hash_static, &key4, strlen(key4));
126 nodep = Curl_hash_pick(&hash_static, &key1, strlen(key1));
128 nodep = Curl_hash_pick(&hash_static, &key4, strlen(key4));
132 rc = Curl_hash_delete(&hash_static, &key4, strlen(key4));
136 nodep = Curl_hash_add(&hash_static, &key1, strlen(key1), &notakey);
138 nodep = Curl_hash_pick(&hash_static, &key1, strlen(key1));
142 nodep = Curl_hash_pick(&hash_static, &key2, strlen(key2));
144 nodep = Curl_hash_pick(&hash_static, &key3, strlen(key3));
148 Curl_hash_clean(&hash_static);