Lines Matching refs:d_code
2484 double d_code; in PHP_FUNCTION() local
2521 if (curl_easy_getinfo(ch->cp, CURLINFO_TOTAL_TIME, &d_code) == CURLE_OK) { in PHP_FUNCTION()
2522 CAAD("total_time", d_code); in PHP_FUNCTION()
2524 if (curl_easy_getinfo(ch->cp, CURLINFO_NAMELOOKUP_TIME, &d_code) == CURLE_OK) { in PHP_FUNCTION()
2525 CAAD("namelookup_time", d_code); in PHP_FUNCTION()
2527 if (curl_easy_getinfo(ch->cp, CURLINFO_CONNECT_TIME, &d_code) == CURLE_OK) { in PHP_FUNCTION()
2528 CAAD("connect_time", d_code); in PHP_FUNCTION()
2530 if (curl_easy_getinfo(ch->cp, CURLINFO_PRETRANSFER_TIME, &d_code) == CURLE_OK) { in PHP_FUNCTION()
2531 CAAD("pretransfer_time", d_code); in PHP_FUNCTION()
2533 if (curl_easy_getinfo(ch->cp, CURLINFO_SIZE_UPLOAD, &d_code) == CURLE_OK) { in PHP_FUNCTION()
2534 CAAD("size_upload", d_code); in PHP_FUNCTION()
2536 if (curl_easy_getinfo(ch->cp, CURLINFO_SIZE_DOWNLOAD, &d_code) == CURLE_OK) { in PHP_FUNCTION()
2537 CAAD("size_download", d_code); in PHP_FUNCTION()
2539 if (curl_easy_getinfo(ch->cp, CURLINFO_SPEED_DOWNLOAD, &d_code) == CURLE_OK) { in PHP_FUNCTION()
2540 CAAD("speed_download", d_code); in PHP_FUNCTION()
2542 if (curl_easy_getinfo(ch->cp, CURLINFO_SPEED_UPLOAD, &d_code) == CURLE_OK) { in PHP_FUNCTION()
2543 CAAD("speed_upload", d_code); in PHP_FUNCTION()
2545 if (curl_easy_getinfo(ch->cp, CURLINFO_CONTENT_LENGTH_DOWNLOAD, &d_code) == CURLE_OK) { in PHP_FUNCTION()
2546 CAAD("download_content_length", d_code); in PHP_FUNCTION()
2548 if (curl_easy_getinfo(ch->cp, CURLINFO_CONTENT_LENGTH_UPLOAD, &d_code) == CURLE_OK) { in PHP_FUNCTION()
2549 CAAD("upload_content_length", d_code); in PHP_FUNCTION()
2551 if (curl_easy_getinfo(ch->cp, CURLINFO_STARTTRANSFER_TIME, &d_code) == CURLE_OK) { in PHP_FUNCTION()
2552 CAAD("starttransfer_time", d_code); in PHP_FUNCTION()
2554 if (curl_easy_getinfo(ch->cp, CURLINFO_REDIRECT_TIME, &d_code) == CURLE_OK) { in PHP_FUNCTION()
2555 CAAD("redirect_time", d_code); in PHP_FUNCTION()