Lines Matching refs:s_code
2478 char *s_code; in PHP_FUNCTION() local
2491 if (curl_easy_getinfo(ch->cp, CURLINFO_EFFECTIVE_URL, &s_code) == CURLE_OK) { in PHP_FUNCTION()
2492 CAAS("url", s_code); in PHP_FUNCTION()
2494 if (curl_easy_getinfo(ch->cp, CURLINFO_CONTENT_TYPE, &s_code) == CURLE_OK) { in PHP_FUNCTION()
2495 if (s_code != NULL) { in PHP_FUNCTION()
2496 CAAS("content_type", s_code); in PHP_FUNCTION()
2557 if (curl_easy_getinfo(ch->cp, CURLINFO_REDIRECT_URL, &s_code) == CURLE_OK) { in PHP_FUNCTION()
2558 CAAS("redirect_url", s_code); in PHP_FUNCTION()
2560 if (curl_easy_getinfo(ch->cp, CURLINFO_PRIMARY_IP, &s_code) == CURLE_OK) { in PHP_FUNCTION()
2561 CAAS("primary_ip", s_code); in PHP_FUNCTION()
2571 if (curl_easy_getinfo(ch->cp, CURLINFO_LOCAL_IP, &s_code) == CURLE_OK) { in PHP_FUNCTION()
2572 CAAS("local_ip", s_code); in PHP_FUNCTION()
2586 if (curl_easy_getinfo(ch->cp, CURLINFO_SCHEME, &s_code) == CURLE_OK) { in PHP_FUNCTION()
2587 CAAS("scheme", s_code); in PHP_FUNCTION()
2619 if (curl_easy_getinfo(ch->cp, CURLINFO_EFFECTIVE_METHOD, &s_code) == CURLE_OK) { in PHP_FUNCTION()
2620 CAAS("effective_method", s_code); in PHP_FUNCTION()
2624 if (curl_easy_getinfo(ch->cp, CURLINFO_CAPATH, &s_code) == CURLE_OK) { in PHP_FUNCTION()
2625 CAAS("capath", s_code); in PHP_FUNCTION()
2627 if (curl_easy_getinfo(ch->cp, CURLINFO_CAINFO, &s_code) == CURLE_OK) { in PHP_FUNCTION()
2628 CAAS("cainfo", s_code); in PHP_FUNCTION()
2663 char *s_code = NULL; in PHP_FUNCTION() local
2665 if (curl_easy_getinfo(ch->cp, option, &s_code) == CURLE_OK && s_code) { in PHP_FUNCTION()
2666 RETURN_STRING(s_code); in PHP_FUNCTION()