Searched refs:pCurl (Results 1 – 1 of 1) sorted by relevance
/external/curl/tests/libtest/ |
D | lib1522.c | 53 CURL *pCurl = curl_easy_init(); in test() local 56 curl_easy_setopt(pCurl, CURLOPT_SOCKOPTFUNCTION, sockopt_callback); in test() 57 curl_easy_setopt(pCurl, CURLOPT_URL, URL); in test() 58 curl_easy_setopt(pCurl, CURLOPT_POSTFIELDS, g_Data); in test() 59 curl_easy_setopt(pCurl, CURLOPT_POSTFIELDSIZE, (long)sizeof(g_Data)); in test() 64 curl_easy_setopt(pCurl, CURLOPT_HTTPHEADER, pHeaderList); in test() 66 code = curl_easy_perform(pCurl); in test() 70 curl_easy_getinfo(pCurl, CURLINFO_SIZE_UPLOAD_T, &uploadSize); in test() 86 curl_easy_cleanup(pCurl); in test()
|