Searched refs:headp (Results 1 – 6 of 6) sorted by relevance
/external/curl/docs/examples/ |
D | http2-serverpush.c | 169 char *headp; in server_push_callback() local 195 headp = curl_pushheader_bynum(headers, i); in server_push_callback() 196 fprintf(stderr, "**** header %lu: %s\n", (unsigned long)i, headp); in server_push_callback() 199 headp = curl_pushheader_byname(headers, ":path"); in server_push_callback() 200 if(headp) { in server_push_callback() 201 fprintf(stderr, "**** The PATH is %s\n", headp /* skip :path + colon */); in server_push_callback()
|
D | http2-pushinmemory.c | 100 char *headp; in server_push_callback() local 114 headp = curl_pushheader_byname(headers, ":path"); in server_push_callback() 115 if(headp) in server_push_callback() 116 fprintf(stderr, "* Pushed :path '%s'\n", headp /* skip :path + colon */); in server_push_callback()
|
/external/u-boot/arch/sandbox/cpu/ |
D | os.c | 315 int os_dirent_ls(const char *dirname, struct os_dirent_node **headp) in os_dirent_ls() argument 327 *headp = NULL; in os_dirent_ls() 390 *headp = head; in os_dirent_ls()
|
/external/u-boot/include/ |
D | os.h | 215 int os_dirent_ls(const char *dirname, struct os_dirent_node **headp);
|
/external/u-boot/tools/ |
D | fdtgrep.c | 113 static int value_add(struct display_info *disp, struct value_node **headp, in value_add() argument 141 node->next = *headp; in value_add() 145 *headp = node; in value_add()
|
/external/curl/lib/ |
D | http2.c | 1004 char **headp; in on_header() local 1006 headp = Curl_saferealloc(stream->push_headers, in on_header() 1008 if(!headp) { in on_header() 1012 stream->push_headers = headp; in on_header()
|