Lines Matching refs:l_code
3102 long l_code; in PHP_FUNCTION() local
3123 if (curl_easy_getinfo(ch->cp, CURLINFO_HTTP_CODE, &l_code) == CURLE_OK) { in PHP_FUNCTION()
3124 CAAL("http_code", l_code); in PHP_FUNCTION()
3126 if (curl_easy_getinfo(ch->cp, CURLINFO_HEADER_SIZE, &l_code) == CURLE_OK) { in PHP_FUNCTION()
3127 CAAL("header_size", l_code); in PHP_FUNCTION()
3129 if (curl_easy_getinfo(ch->cp, CURLINFO_REQUEST_SIZE, &l_code) == CURLE_OK) { in PHP_FUNCTION()
3130 CAAL("request_size", l_code); in PHP_FUNCTION()
3132 if (curl_easy_getinfo(ch->cp, CURLINFO_FILETIME, &l_code) == CURLE_OK) { in PHP_FUNCTION()
3133 CAAL("filetime", l_code); in PHP_FUNCTION()
3135 if (curl_easy_getinfo(ch->cp, CURLINFO_SSL_VERIFYRESULT, &l_code) == CURLE_OK) { in PHP_FUNCTION()
3136 CAAL("ssl_verify_result", l_code); in PHP_FUNCTION()
3138 if (curl_easy_getinfo(ch->cp, CURLINFO_REDIRECT_COUNT, &l_code) == CURLE_OK) { in PHP_FUNCTION()
3139 CAAL("redirect_count", l_code); in PHP_FUNCTION()
3195 if (curl_easy_getinfo(ch->cp, CURLINFO_PRIMARY_PORT, &l_code) == CURLE_OK) { in PHP_FUNCTION()
3196 CAAL("primary_port", l_code); in PHP_FUNCTION()
3201 if (curl_easy_getinfo(ch->cp, CURLINFO_LOCAL_PORT, &l_code) == CURLE_OK) { in PHP_FUNCTION()
3202 CAAL("local_port", l_code); in PHP_FUNCTION()