Lines Matching refs:d_code
2611 double d_code; in PHP_FUNCTION() local
2650 if (curl_easy_getinfo(ch->cp, CURLINFO_TOTAL_TIME, &d_code) == CURLE_OK) { in PHP_FUNCTION()
2651 CAAD("total_time", d_code); in PHP_FUNCTION()
2653 if (curl_easy_getinfo(ch->cp, CURLINFO_NAMELOOKUP_TIME, &d_code) == CURLE_OK) { in PHP_FUNCTION()
2654 CAAD("namelookup_time", d_code); in PHP_FUNCTION()
2656 if (curl_easy_getinfo(ch->cp, CURLINFO_CONNECT_TIME, &d_code) == CURLE_OK) { in PHP_FUNCTION()
2657 CAAD("connect_time", d_code); in PHP_FUNCTION()
2659 if (curl_easy_getinfo(ch->cp, CURLINFO_PRETRANSFER_TIME, &d_code) == CURLE_OK) { in PHP_FUNCTION()
2660 CAAD("pretransfer_time", d_code); in PHP_FUNCTION()
2662 if (curl_easy_getinfo(ch->cp, CURLINFO_SIZE_UPLOAD, &d_code) == CURLE_OK) { in PHP_FUNCTION()
2663 CAAD("size_upload", d_code); in PHP_FUNCTION()
2665 if (curl_easy_getinfo(ch->cp, CURLINFO_SIZE_DOWNLOAD, &d_code) == CURLE_OK) { in PHP_FUNCTION()
2666 CAAD("size_download", d_code); in PHP_FUNCTION()
2668 if (curl_easy_getinfo(ch->cp, CURLINFO_SPEED_DOWNLOAD, &d_code) == CURLE_OK) { in PHP_FUNCTION()
2669 CAAD("speed_download", d_code); in PHP_FUNCTION()
2671 if (curl_easy_getinfo(ch->cp, CURLINFO_SPEED_UPLOAD, &d_code) == CURLE_OK) { in PHP_FUNCTION()
2672 CAAD("speed_upload", d_code); in PHP_FUNCTION()
2674 if (curl_easy_getinfo(ch->cp, CURLINFO_CONTENT_LENGTH_DOWNLOAD, &d_code) == CURLE_OK) { in PHP_FUNCTION()
2675 CAAD("download_content_length", d_code); in PHP_FUNCTION()
2677 if (curl_easy_getinfo(ch->cp, CURLINFO_CONTENT_LENGTH_UPLOAD, &d_code) == CURLE_OK) { in PHP_FUNCTION()
2678 CAAD("upload_content_length", d_code); in PHP_FUNCTION()
2680 if (curl_easy_getinfo(ch->cp, CURLINFO_STARTTRANSFER_TIME, &d_code) == CURLE_OK) { in PHP_FUNCTION()
2681 CAAD("starttransfer_time", d_code); in PHP_FUNCTION()
2683 if (curl_easy_getinfo(ch->cp, CURLINFO_REDIRECT_TIME, &d_code) == CURLE_OK) { in PHP_FUNCTION()
2684 CAAD("redirect_time", d_code); in PHP_FUNCTION()