Lines Matching refs:curl_easy_setopt
141 curl_easy_setopt (c, CURLOPT_URL, "http://localhost:11081/hello_world"); in testInternalPut()
142 curl_easy_setopt (c, CURLOPT_WRITEFUNCTION, ©Buffer); in testInternalPut()
143 curl_easy_setopt (c, CURLOPT_WRITEDATA, &cbc); in testInternalPut()
144 curl_easy_setopt (c, CURLOPT_READFUNCTION, &putBuffer); in testInternalPut()
145 curl_easy_setopt (c, CURLOPT_READDATA, &pos); in testInternalPut()
146 curl_easy_setopt (c, CURLOPT_UPLOAD, 1L); in testInternalPut()
147 curl_easy_setopt (c, CURLOPT_INFILESIZE_LARGE, (curl_off_t) 8L); in testInternalPut()
148 curl_easy_setopt (c, CURLOPT_FAILONERROR, 1); in testInternalPut()
149 curl_easy_setopt (c, CURLOPT_TIMEOUT_MS, CURL_TIMEOUT); in testInternalPut()
151 curl_easy_setopt (c, CURLOPT_HTTP_VERSION, CURL_HTTP_VERSION_1_1); in testInternalPut()
153 curl_easy_setopt (c, CURLOPT_HTTP_VERSION, CURL_HTTP_VERSION_1_0); in testInternalPut()
154 curl_easy_setopt (c, CURLOPT_CONNECTTIMEOUT_MS, CURL_TIMEOUT); in testInternalPut()
158 curl_easy_setopt (c, CURLOPT_NOSIGNAL, 1); in testInternalPut()
192 curl_easy_setopt (c, CURLOPT_URL, "http://localhost:11081/hello_world"); in testMultithreadedPut()
193 curl_easy_setopt (c, CURLOPT_WRITEFUNCTION, ©Buffer); in testMultithreadedPut()
194 curl_easy_setopt (c, CURLOPT_WRITEDATA, &cbc); in testMultithreadedPut()
195 curl_easy_setopt (c, CURLOPT_READFUNCTION, &putBuffer); in testMultithreadedPut()
196 curl_easy_setopt (c, CURLOPT_READDATA, &pos); in testMultithreadedPut()
197 curl_easy_setopt (c, CURLOPT_UPLOAD, 1L); in testMultithreadedPut()
198 curl_easy_setopt (c, CURLOPT_INFILESIZE_LARGE, (curl_off_t) 8L); in testMultithreadedPut()
199 curl_easy_setopt (c, CURLOPT_FAILONERROR, 1); in testMultithreadedPut()
200 curl_easy_setopt (c, CURLOPT_TIMEOUT_MS, CURL_TIMEOUT); in testMultithreadedPut()
202 curl_easy_setopt (c, CURLOPT_HTTP_VERSION, CURL_HTTP_VERSION_1_1); in testMultithreadedPut()
204 curl_easy_setopt (c, CURLOPT_HTTP_VERSION, CURL_HTTP_VERSION_1_0); in testMultithreadedPut()
205 curl_easy_setopt (c, CURLOPT_CONNECTTIMEOUT_MS, CURL_TIMEOUT); in testMultithreadedPut()
209 curl_easy_setopt (c, CURLOPT_NOSIGNAL, 1); in testMultithreadedPut()
261 curl_easy_setopt (c, CURLOPT_URL, "http://localhost:11081/hello_world"); in testExternalPut()
262 curl_easy_setopt (c, CURLOPT_WRITEFUNCTION, ©Buffer); in testExternalPut()
263 curl_easy_setopt (c, CURLOPT_WRITEDATA, &cbc); in testExternalPut()
264 curl_easy_setopt (c, CURLOPT_READFUNCTION, &putBuffer); in testExternalPut()
265 curl_easy_setopt (c, CURLOPT_READDATA, &pos); in testExternalPut()
266 curl_easy_setopt (c, CURLOPT_UPLOAD, 1L); in testExternalPut()
267 curl_easy_setopt (c, CURLOPT_INFILESIZE_LARGE, (curl_off_t) 8L); in testExternalPut()
268 curl_easy_setopt (c, CURLOPT_FAILONERROR, 1); in testExternalPut()
269 curl_easy_setopt (c, CURLOPT_TIMEOUT_MS, CURL_TIMEOUT); in testExternalPut()
271 curl_easy_setopt (c, CURLOPT_HTTP_VERSION, CURL_HTTP_VERSION_1_1); in testExternalPut()
273 curl_easy_setopt (c, CURLOPT_HTTP_VERSION, CURL_HTTP_VERSION_1_0); in testExternalPut()
274 curl_easy_setopt (c, CURLOPT_CONNECTTIMEOUT_MS, CURL_TIMEOUT); in testExternalPut()
278 curl_easy_setopt (c, CURLOPT_NOSIGNAL, 1); in testExternalPut()