Lines Matching refs:rv
117 CURLcode rv; in main() local
119 rv=curl_global_init(CURL_GLOBAL_ALL); in main()
121 rv=curl_easy_setopt(ch,CURLOPT_VERBOSE, 0L); in main()
122 rv=curl_easy_setopt(ch,CURLOPT_HEADER, 0L); in main()
123 rv=curl_easy_setopt(ch,CURLOPT_NOPROGRESS, 1L); in main()
124 rv=curl_easy_setopt(ch,CURLOPT_NOSIGNAL, 1L); in main()
125 rv=curl_easy_setopt(ch,CURLOPT_WRITEFUNCTION, *writefunction); in main()
126 rv=curl_easy_setopt(ch,CURLOPT_WRITEDATA, stdout); in main()
127 rv=curl_easy_setopt(ch,CURLOPT_HEADERFUNCTION, *writefunction); in main()
128 rv=curl_easy_setopt(ch,CURLOPT_HEADERDATA, stderr); in main()
129 rv=curl_easy_setopt(ch,CURLOPT_SSLCERTTYPE,"PEM"); in main()
130 rv=curl_easy_setopt(ch,CURLOPT_SSL_VERIFYPEER,1L); in main()
131 rv=curl_easy_setopt(ch, CURLOPT_URL, "https://www.example.com/"); in main()
135 rv=curl_easy_perform(ch); in main()
136 if (rv==CURLE_OK) in main()
145 rv=curl_easy_setopt(ch,CURLOPT_SSL_CTX_FUNCTION, *sslctx_function); in main()
146 rv=curl_easy_perform(ch); in main()
147 if (rv==CURLE_OK) in main()
154 return rv; in main()