Lines Matching refs:blob
1226 struct curl_blob blob; in config2setopts() local
1227 blob.data = (void *)curl_ca_embed; in config2setopts()
1228 blob.len = strlen((const char *)curl_ca_embed); in config2setopts()
1229 blob.flags = CURL_BLOB_NOCOPY; in config2setopts()
1232 blob.len); in config2setopts()
1233 result = curl_easy_setopt(curl, CURLOPT_CAINFO_BLOB, &blob); in config2setopts()
1240 struct curl_blob blob; in config2setopts() local
1241 blob.data = (void *)curl_ca_embed; in config2setopts()
1242 blob.len = strlen((const char *)curl_ca_embed); in config2setopts()
1243 blob.flags = CURL_BLOB_NOCOPY; in config2setopts()
1246 blob.len); in config2setopts()
1247 result = curl_easy_setopt(curl, CURLOPT_PROXY_CAINFO_BLOB, &blob); in config2setopts()