Searched refs:Curl_tree (Results 1 – 6 of 6) sorted by relevance
/external/curl/lib/ |
D | splay.h | 27 struct Curl_tree { struct 28 struct Curl_tree *smaller; /* smaller node */ argument 29 struct Curl_tree *larger; /* larger node */ argument 30 struct Curl_tree *samen; /* points to the next node with identical key */ argument 31 struct Curl_tree *samep; /* points to the prev node with identical key */ argument 36 struct Curl_tree *Curl_splay(struct curltime i, argument 37 struct Curl_tree *t); 39 struct Curl_tree *Curl_splayinsert(struct curltime key, 40 struct Curl_tree *t, 41 struct Curl_tree *newnode); [all …]
|
D | splay.c | 40 struct Curl_tree *Curl_splay(struct curltime i, in Curl_splay() 41 struct Curl_tree *t) in Curl_splay() 43 struct Curl_tree N, *l, *r, *y; in Curl_splay() 99 struct Curl_tree *Curl_splayinsert(struct curltime i, in Curl_splayinsert() 100 struct Curl_tree *t, in Curl_splayinsert() 101 struct Curl_tree *node) in Curl_splayinsert() 153 struct Curl_tree *Curl_splaygetbest(struct curltime i, in Curl_splaygetbest() 154 struct Curl_tree *t, in Curl_splaygetbest() 155 struct Curl_tree **removed) in Curl_splaygetbest() 158 struct Curl_tree *x; in Curl_splaygetbest() [all …]
|
D | multihandle.h | 108 struct Curl_tree *timetree;
|
D | urldata.h | 1299 struct Curl_tree timenode; /* for the splay stuff */
|
D | multi.c | 2123 struct Curl_tree *t; in curl_multi_perform() 2534 struct Curl_tree *t; in multi_socket()
|
/external/curl/tests/unit/ |
D | unit1309.c | 38 static void splayprint(struct Curl_tree * t, int d, char output) in splayprint() 40 struct Curl_tree *node; in splayprint() 74 struct Curl_tree *root, *removed; 75 struct Curl_tree nodes[NUM_NODES*3];
|