HomeSort by relevance Sort by last modified time
    Searched refs:headerlist (Results 1 - 8 of 8) sorted by null

  /external/curl/docs/examples/
postit2-formadd.c 52 struct curl_slist *headerlist = NULL; local
82 headerlist = curl_slist_append(headerlist, buf);
88 curl_easy_setopt(curl, CURLOPT_HTTPHEADER, headerlist);
104 curl_slist_free_all(headerlist);
ftpupload.c 74 struct curl_slist *headerlist = NULL; local
97 headerlist = curl_slist_append(headerlist, buf_1);
98 headerlist = curl_slist_append(headerlist, buf_2);
110 curl_easy_setopt(curl, CURLOPT_POSTQUOTE, headerlist);
130 curl_slist_free_all(headerlist);
postit2.c 52 struct curl_slist *headerlist = NULL; local
79 headerlist = curl_slist_append(headerlist, buf);
84 curl_easy_setopt(curl, CURLOPT_HTTPHEADER, headerlist);
100 curl_slist_free_all(headerlist);
multi-formadd.c 42 struct curl_slist *headerlist = NULL; local
72 headerlist = curl_slist_append(headerlist, buf);
79 curl_easy_setopt(curl, CURLOPT_HTTPHEADER, headerlist);
168 curl_slist_free_all(headerlist);
multi-post.c 42 struct curl_slist *headerlist = NULL; local
69 headerlist = curl_slist_append(headerlist, buf);
75 curl_easy_setopt(curl, CURLOPT_HTTPHEADER, headerlist);
164 curl_slist_free_all(headerlist);
  /external/curl/tests/libtest/
lib505.c 46 struct curl_slist *headerlist = NULL; local
97 hl = curl_slist_append(headerlist, buf_1);
105 headerlist = curl_slist_append(hl, buf_2);
106 if(!headerlist) {
114 headerlist = hl;
126 test_setopt(curl, CURLOPT_POSTQUOTE, headerlist);
141 curl_slist_free_all(headerlist);
lib553.c 63 struct curl_slist *headerlist = NULL, *hl; local
81 hl = curl_slist_append(headerlist, buf);
84 headerlist = hl;
87 hl = curl_slist_append(headerlist, "Expect: ");
90 headerlist = hl;
93 test_setopt(curl, CURLOPT_HTTPHEADER, headerlist);
110 curl_slist_free_all(headerlist);
  /external/google-breakpad/src/common/linux/
http_upload.cc 147 struct curl_slist *headerlist = NULL; local
151 headerlist = (*curl_slist_append)(headerlist, buf);
152 (*curl_easy_setopt)(curl, CURLOPT_HTTPHEADER, headerlist);
190 if (headerlist != NULL) {
193 (*curl_slist_free_all)(headerlist);

Completed in 330 milliseconds