• Home
  • Raw
  • Download

Lines Matching refs:curl_easy_setopt

140   curl_easy_setopt (c, CURLOPT_URL, "http://127.0.0.1:1080/hello_world");  in testInternalPut()
141 curl_easy_setopt (c, CURLOPT_WRITEFUNCTION, &copyBuffer); in testInternalPut()
142 curl_easy_setopt (c, CURLOPT_WRITEDATA, &cbc); in testInternalPut()
143 curl_easy_setopt (c, CURLOPT_READFUNCTION, &putBuffer); in testInternalPut()
144 curl_easy_setopt (c, CURLOPT_READDATA, &pos); in testInternalPut()
145 curl_easy_setopt (c, CURLOPT_UPLOAD, 1L); in testInternalPut()
146 curl_easy_setopt (c, CURLOPT_INFILESIZE_LARGE, (curl_off_t) 8L); in testInternalPut()
147 curl_easy_setopt (c, CURLOPT_FAILONERROR, 1); in testInternalPut()
148 curl_easy_setopt (c, CURLOPT_TIMEOUT, 150L); in testInternalPut()
150 curl_easy_setopt (c, CURLOPT_HTTP_VERSION, CURL_HTTP_VERSION_1_1); in testInternalPut()
152 curl_easy_setopt (c, CURLOPT_HTTP_VERSION, CURL_HTTP_VERSION_1_0); in testInternalPut()
153 curl_easy_setopt (c, CURLOPT_CONNECTTIMEOUT, 150L); in testInternalPut()
157 curl_easy_setopt (c, CURLOPT_NOSIGNAL, 1); in testInternalPut()
196 curl_easy_setopt (c, CURLOPT_URL, "http://127.0.0.1:1081/hello_world"); in testMultithreadedPut()
197 curl_easy_setopt (c, CURLOPT_WRITEFUNCTION, &copyBuffer); in testMultithreadedPut()
198 curl_easy_setopt (c, CURLOPT_WRITEDATA, &cbc); in testMultithreadedPut()
199 curl_easy_setopt (c, CURLOPT_READFUNCTION, &putBuffer); in testMultithreadedPut()
200 curl_easy_setopt (c, CURLOPT_READDATA, &pos); in testMultithreadedPut()
201 curl_easy_setopt (c, CURLOPT_UPLOAD, 1L); in testMultithreadedPut()
202 curl_easy_setopt (c, CURLOPT_INFILESIZE_LARGE, (curl_off_t) 8L); in testMultithreadedPut()
203 curl_easy_setopt (c, CURLOPT_FAILONERROR, 1); in testMultithreadedPut()
204 curl_easy_setopt (c, CURLOPT_TIMEOUT, 150L); in testMultithreadedPut()
206 curl_easy_setopt (c, CURLOPT_HTTP_VERSION, CURL_HTTP_VERSION_1_1); in testMultithreadedPut()
208 curl_easy_setopt (c, CURLOPT_HTTP_VERSION, CURL_HTTP_VERSION_1_0); in testMultithreadedPut()
209 curl_easy_setopt (c, CURLOPT_CONNECTTIMEOUT, 150L); in testMultithreadedPut()
213 curl_easy_setopt (c, CURLOPT_NOSIGNAL, 1); in testMultithreadedPut()
254 curl_easy_setopt (c, CURLOPT_URL, "http://127.0.0.1:1081/hello_world"); in testMultithreadedPoolPut()
255 curl_easy_setopt (c, CURLOPT_WRITEFUNCTION, &copyBuffer); in testMultithreadedPoolPut()
256 curl_easy_setopt (c, CURLOPT_WRITEDATA, &cbc); in testMultithreadedPoolPut()
257 curl_easy_setopt (c, CURLOPT_READFUNCTION, &putBuffer); in testMultithreadedPoolPut()
258 curl_easy_setopt (c, CURLOPT_READDATA, &pos); in testMultithreadedPoolPut()
259 curl_easy_setopt (c, CURLOPT_UPLOAD, 1L); in testMultithreadedPoolPut()
260 curl_easy_setopt (c, CURLOPT_INFILESIZE_LARGE, (curl_off_t) 8L); in testMultithreadedPoolPut()
261 curl_easy_setopt (c, CURLOPT_FAILONERROR, 1); in testMultithreadedPoolPut()
262 curl_easy_setopt (c, CURLOPT_TIMEOUT, 150L); in testMultithreadedPoolPut()
264 curl_easy_setopt (c, CURLOPT_HTTP_VERSION, CURL_HTTP_VERSION_1_1); in testMultithreadedPoolPut()
266 curl_easy_setopt (c, CURLOPT_HTTP_VERSION, CURL_HTTP_VERSION_1_0); in testMultithreadedPoolPut()
267 curl_easy_setopt (c, CURLOPT_CONNECTTIMEOUT, 150L); in testMultithreadedPoolPut()
271 curl_easy_setopt (c, CURLOPT_NOSIGNAL, 1); in testMultithreadedPoolPut()
322 curl_easy_setopt (c, CURLOPT_URL, "http://127.0.0.1:1082/hello_world"); in testExternalPut()
323 curl_easy_setopt (c, CURLOPT_WRITEFUNCTION, &copyBuffer); in testExternalPut()
324 curl_easy_setopt (c, CURLOPT_WRITEDATA, &cbc); in testExternalPut()
325 curl_easy_setopt (c, CURLOPT_READFUNCTION, &putBuffer); in testExternalPut()
326 curl_easy_setopt (c, CURLOPT_READDATA, &pos); in testExternalPut()
327 curl_easy_setopt (c, CURLOPT_UPLOAD, 1L); in testExternalPut()
328 curl_easy_setopt (c, CURLOPT_INFILESIZE_LARGE, (curl_off_t) 8L); in testExternalPut()
329 curl_easy_setopt (c, CURLOPT_FAILONERROR, 1); in testExternalPut()
330 curl_easy_setopt (c, CURLOPT_TIMEOUT, 150L); in testExternalPut()
332 curl_easy_setopt (c, CURLOPT_HTTP_VERSION, CURL_HTTP_VERSION_1_1); in testExternalPut()
334 curl_easy_setopt (c, CURLOPT_HTTP_VERSION, CURL_HTTP_VERSION_1_0); in testExternalPut()
335 curl_easy_setopt (c, CURLOPT_CONNECTTIMEOUT, 150L); in testExternalPut()
339 curl_easy_setopt (c, CURLOPT_NOSIGNAL, 1); in testExternalPut()