HomeSort by relevance Sort by last modified time
    Searched defs:nodep (Results 1 - 10 of 10) sorted by null

  /external/curl/tests/unit/
unit1305.c 123 struct Curl_dns_entry *nodep; variable in typeref:struct:Curl_dns_entry
133 nodep = Curl_hash_add(&hp, data_key, key_len+1, data_node);
134 abort_unless(nodep, "insertion into hash failed");
unit1602.c 53 int *nodep; variable
63 nodep = Curl_hash_add(&hash_static, &key, klen, value);
64 if(!nodep)
66 abort_unless(nodep, "insertion into hash failed");
73 nodep = Curl_hash_add(&hash_static, &key2, klen, value2);
74 if(!nodep)
76 abort_unless(nodep, "insertion into hash failed");
unit1603.c 57 char *nodep; variable
70 nodep = Curl_hash_add(&hash_static, &key1, strlen(key1), &key1);
71 fail_unless(nodep, "insertion into hash failed");
72 nodep = Curl_hash_pick(&hash_static, &key1, strlen(key1));
73 fail_unless(nodep == key1, "hash retrieval failed");
75 nodep = Curl_hash_add(&hash_static, &key2, strlen(key2), &key2);
76 fail_unless(nodep, "insertion into hash failed");
77 nodep = Curl_hash_pick(&hash_static, &key2, strlen(key2));
78 fail_unless(nodep == key2, "hash retrieval failed");
80 nodep = Curl_hash_add(&hash_static, &key3, strlen(key3), &key3)
    [all...]
  /external/ltrace/
zero.c 95 static struct expr_node *nodep = NULL; local
96 if (nodep == NULL) {
100 nodep = &node;
102 return nodep;
expr.c 408 static struct expr_node *nodep = NULL; local
409 if (nodep == NULL) {
412 nodep = &node;
414 return nodep;
  /external/vboot_reference/firmware/stub/
vboot_api_stub_sf.c 68 struct alloc_node **nodep; local
70 for (nodep = &alloc_head; *nodep; nodep = &(*nodep)->next)
71 if ((*nodep)->ptr == ptr)
72 return nodep;
79 struct alloc_node **nodep, *next; local
81 nodep = find_node(ptr);
82 if (nodep) {
    [all...]
  /external/regex-re2/re2/
onepass.cc 405 uint8* nodep = nodes; local
410 nodep += statesize;
458 nodep += statesize;
593 nodep = new uint8[nalloc*statesize];
594 memmove(nodep, nodes, nalloc*statesize);
596 nodes = nodep;
  /external/bison/src/
ielr.c 973 state_list **nodep = &first_state; local
    [all...]
  /libcore/ojluni/src/main/java/java/util/logging/
LogManager.java 627 LogNode nodep = node.parent; local
628 while (nodep != null) {
629 LoggerWeakRef nodeRef = nodep.loggerRef;
636 nodep = nodep.parent;
    [all...]
  /external/libmicrohttpd/src/microhttpd/
daemon.c 312 void **nodep; local
334 if (NULL == (nodep = tsearch (key,
346 node = *nodep;
377 void **nodep; local
390 if (NULL == (nodep = tfind (&search_key,
398 found_key = (struct MHD_IPCount *) *nodep;
    [all...]

Completed in 504 milliseconds