Home
last modified time | relevance | path

Searched refs:headp (Results 1 – 6 of 6) sorted by relevance

/external/curl/docs/examples/
Dhttp2-serverpush.c169 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()
Dhttp2-pushinmemory.c100 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/
Dos.c315 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/
Dos.h215 int os_dirent_ls(const char *dirname, struct os_dirent_node **headp);
/external/u-boot/tools/
Dfdtgrep.c113 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/
Dhttp2.c1004 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()