Lines Matching refs:s_code
3230 char *s_code; in PHP_FUNCTION() local
3247 if (curl_easy_getinfo(ch->cp, CURLINFO_EFFECTIVE_URL, &s_code) == CURLE_OK) { in PHP_FUNCTION()
3248 CAAS("url", s_code); in PHP_FUNCTION()
3250 if (curl_easy_getinfo(ch->cp, CURLINFO_CONTENT_TYPE, &s_code) == CURLE_OK) { in PHP_FUNCTION()
3251 if (s_code != NULL) { in PHP_FUNCTION()
3252 CAAS("content_type", s_code); in PHP_FUNCTION()
3314 if (curl_easy_getinfo(ch->cp, CURLINFO_REDIRECT_URL, &s_code) == CURLE_OK) { in PHP_FUNCTION()
3315 CAAS("redirect_url", s_code); in PHP_FUNCTION()
3319 if (curl_easy_getinfo(ch->cp, CURLINFO_PRIMARY_IP, &s_code) == CURLE_OK) { in PHP_FUNCTION()
3320 CAAS("primary_ip", s_code); in PHP_FUNCTION()
3334 if (curl_easy_getinfo(ch->cp, CURLINFO_LOCAL_IP, &s_code) == CURLE_OK) { in PHP_FUNCTION()
3335 CAAS("local_ip", s_code); in PHP_FUNCTION()
3353 if (curl_easy_getinfo(ch->cp, CURLINFO_SCHEME, &s_code) == CURLE_OK) { in PHP_FUNCTION()
3354 CAAS("scheme", s_code); in PHP_FUNCTION()
3410 char *s_code = NULL; in PHP_FUNCTION() local
3412 if (curl_easy_getinfo(ch->cp, option, &s_code) == CURLE_OK && s_code) { in PHP_FUNCTION()
3413 RETURN_STRING(s_code); in PHP_FUNCTION()