Lines Matching refs:curl

379     curl_easy_setopt(curl,                                        \
382 curl_easy_setopt(curl, \
388 curl_easy_setopt(curl,CURLOPT_NOBODY,false); \
390 curl_easy_setopt(curl,CURLOPT_WRITEFUNCTION,memory_write); \
391 curl_easy_setopt(curl,CURLOPT_WRITEDATA,&data)
397 curl_easy_setopt(curl, \
409 curl_easy_setopt(curl, \
421 CURL *curl = m_pFCP->handle(); in open() local
430 curl_easy_setopt(curl,CURLOPT_WRITEFUNCTION,file_write); in open()
431 curl_easy_setopt(curl,CURLOPT_WRITEDATA,res); in open()
433 curl_easy_setopt(curl,CURLOPT_POSTQUOTE,0); in open()
434 CURLcode err = curl_easy_perform(curl); in open()
455 CURL *curl = m_pFCP->handle(); in list() local
461 curl_easy_setopt(curl,CURLOPT_POSTQUOTE,0); in list()
463 CURLcode err = curl_easy_perform(curl); in list()
540 CURL *curl = m_pFCP->handle(); in net_title() local
543 curl_easy_setopt(curl,CURLOPT_NOBODY,true); // no data => no transfer in net_title()
547 curl_easy_setopt(curl,CURLOPT_POSTQUOTE,slist); in net_title()
564 err = curl_easy_perform(curl); in net_title()
677 CURL *curl = m_pFCP->handle(); in insert() local
680 curl_easy_setopt(curl,CURLOPT_NOBODY,false); // no data => no transfer in insert()
681 curl_easy_setopt(curl,CURLOPT_POSTQUOTE,0); in insert()
682 curl_easy_setopt(curl,CURLOPT_QUOTE,0); in insert()
683 curl_easy_setopt(curl,CURLOPT_READFUNCTION,memory_read); in insert()
684 curl_easy_setopt(curl,CURLOPT_READDATA,stream); in insert()
685 curl_easy_setopt(curl, CURLOPT_UPLOAD,1); in insert()
690 CURLcode err = curl_easy_perform(curl); in insert()
691 curl_easy_setopt(curl, CURLOPT_UPLOAD,false); in insert()
729 CURL *curl = m_pFCP->handle(); in mkdir() local
731 curl_easy_setopt(curl,CURLOPT_NOBODY,true); // no data => no transfer in mkdir()
732 curl_easy_setopt(curl,CURLOPT_QUOTE,0); in mkdir()
735 curl_easy_setopt(curl,CURLOPT_POSTQUOTE,slist); in mkdir()
742 CURLcode err = curl_easy_perform(curl); in mkdir()
752 CURL *curl = m_pFCP->handle(); in ren() local
771 curl_easy_setopt(curl,CURLOPT_POSTQUOTE,slist); in ren()
774 curl_easy_setopt(curl,CURLOPT_NOBODY,true); // no data => no transfer in ren()
775 curl_easy_setopt(curl,CURLOPT_QUOTE,0); in ren()
782 CURLcode err = curl_easy_perform(curl); in ren()
819 CURL *curl = m_pFCP->handle(); in del() local
822 curl_easy_setopt(curl,CURLOPT_POSTQUOTE,slist); in del()
825 curl_easy_setopt(curl,CURLOPT_NOBODY,true); // no data => no transfer in del()
826 curl_easy_setopt(curl,CURLOPT_QUOTE,0); in del()
833 CURLcode err = curl_easy_perform(curl); in del()