Lines Matching refs:rv
111 CURLcode rv; in main() local
113 rv=curl_global_init(CURL_GLOBAL_ALL); in main()
115 rv=curl_easy_setopt(ch, CURLOPT_VERBOSE, 0L); in main()
116 rv=curl_easy_setopt(ch, CURLOPT_HEADER, 0L); in main()
117 rv=curl_easy_setopt(ch, CURLOPT_NOPROGRESS, 1L); in main()
118 rv=curl_easy_setopt(ch, CURLOPT_NOSIGNAL, 1L); in main()
119 rv=curl_easy_setopt(ch, CURLOPT_WRITEFUNCTION, *writefunction); in main()
120 rv=curl_easy_setopt(ch, CURLOPT_WRITEDATA, stdout); in main()
121 rv=curl_easy_setopt(ch, CURLOPT_HEADERFUNCTION, *writefunction); in main()
122 rv=curl_easy_setopt(ch, CURLOPT_HEADERDATA, stderr); in main()
123 rv=curl_easy_setopt(ch, CURLOPT_SSLCERTTYPE, "PEM"); in main()
124 rv=curl_easy_setopt(ch, CURLOPT_SSL_VERIFYPEER, 1L); in main()
125 rv=curl_easy_setopt(ch, CURLOPT_URL, "https://www.example.com/"); in main()
129 rv=curl_easy_perform(ch); in main()
130 if(rv==CURLE_OK) in main()
139 rv=curl_easy_setopt(ch, CURLOPT_SSL_CTX_FUNCTION, *sslctx_function); in main()
140 rv=curl_easy_perform(ch); in main()
141 if(rv==CURLE_OK) in main()
148 return rv; in main()