Lines Matching refs:s_code

2602 		char *s_code;  in PHP_FUNCTION()  local
2617 if (curl_easy_getinfo(ch->cp, CURLINFO_EFFECTIVE_URL, &s_code) == CURLE_OK) { in PHP_FUNCTION()
2618 CAAS("url", s_code); in PHP_FUNCTION()
2620 if (curl_easy_getinfo(ch->cp, CURLINFO_CONTENT_TYPE, &s_code) == CURLE_OK) { in PHP_FUNCTION()
2621 if (s_code != NULL) { in PHP_FUNCTION()
2622 CAAS("content_type", s_code); in PHP_FUNCTION()
2683 if (curl_easy_getinfo(ch->cp, CURLINFO_REDIRECT_URL, &s_code) == CURLE_OK) { in PHP_FUNCTION()
2684 CAAS("redirect_url", s_code); in PHP_FUNCTION()
2686 if (curl_easy_getinfo(ch->cp, CURLINFO_PRIMARY_IP, &s_code) == CURLE_OK) { in PHP_FUNCTION()
2687 CAAS("primary_ip", s_code); in PHP_FUNCTION()
2697 if (curl_easy_getinfo(ch->cp, CURLINFO_LOCAL_IP, &s_code) == CURLE_OK) { in PHP_FUNCTION()
2698 CAAS("local_ip", s_code); in PHP_FUNCTION()
2715 if (curl_easy_getinfo(ch->cp, CURLINFO_SCHEME, &s_code) == CURLE_OK) { in PHP_FUNCTION()
2716 CAAS("scheme", s_code); in PHP_FUNCTION()
2746 if (curl_easy_getinfo(ch->cp, CURLINFO_EFFECTIVE_METHOD, &s_code) == CURLE_OK) { in PHP_FUNCTION()
2747 CAAS("effective_method", s_code); in PHP_FUNCTION()
2751 if (curl_easy_getinfo(ch->cp, CURLINFO_CAPATH, &s_code) == CURLE_OK) { in PHP_FUNCTION()
2752 CAAS("capath", s_code); in PHP_FUNCTION()
2754 if (curl_easy_getinfo(ch->cp, CURLINFO_CAINFO, &s_code) == CURLE_OK) { in PHP_FUNCTION()
2755 CAAS("cainfo", s_code); in PHP_FUNCTION()
2790 char *s_code = NULL; in PHP_FUNCTION() local
2792 if (curl_easy_getinfo(ch->cp, option, &s_code) == CURLE_OK && s_code) { in PHP_FUNCTION()
2793 RETURN_STRING(s_code); in PHP_FUNCTION()