Lines Matching refs:d_code

2405 		double  d_code;  in PHP_FUNCTION()  local
2444 if (curl_easy_getinfo(ch->cp, CURLINFO_TOTAL_TIME, &d_code) == CURLE_OK) { in PHP_FUNCTION()
2445 CAAD("total_time", d_code); in PHP_FUNCTION()
2447 if (curl_easy_getinfo(ch->cp, CURLINFO_NAMELOOKUP_TIME, &d_code) == CURLE_OK) { in PHP_FUNCTION()
2448 CAAD("namelookup_time", d_code); in PHP_FUNCTION()
2450 if (curl_easy_getinfo(ch->cp, CURLINFO_CONNECT_TIME, &d_code) == CURLE_OK) { in PHP_FUNCTION()
2451 CAAD("connect_time", d_code); in PHP_FUNCTION()
2453 if (curl_easy_getinfo(ch->cp, CURLINFO_PRETRANSFER_TIME, &d_code) == CURLE_OK) { in PHP_FUNCTION()
2454 CAAD("pretransfer_time", d_code); in PHP_FUNCTION()
2456 if (curl_easy_getinfo(ch->cp, CURLINFO_SIZE_UPLOAD, &d_code) == CURLE_OK) { in PHP_FUNCTION()
2457 CAAD("size_upload", d_code); in PHP_FUNCTION()
2459 if (curl_easy_getinfo(ch->cp, CURLINFO_SIZE_DOWNLOAD, &d_code) == CURLE_OK) { in PHP_FUNCTION()
2460 CAAD("size_download", d_code); in PHP_FUNCTION()
2462 if (curl_easy_getinfo(ch->cp, CURLINFO_SPEED_DOWNLOAD, &d_code) == CURLE_OK) { in PHP_FUNCTION()
2463 CAAD("speed_download", d_code); in PHP_FUNCTION()
2465 if (curl_easy_getinfo(ch->cp, CURLINFO_SPEED_UPLOAD, &d_code) == CURLE_OK) { in PHP_FUNCTION()
2466 CAAD("speed_upload", d_code); in PHP_FUNCTION()
2468 if (curl_easy_getinfo(ch->cp, CURLINFO_CONTENT_LENGTH_DOWNLOAD, &d_code) == CURLE_OK) { in PHP_FUNCTION()
2469 CAAD("download_content_length", d_code); in PHP_FUNCTION()
2471 if (curl_easy_getinfo(ch->cp, CURLINFO_CONTENT_LENGTH_UPLOAD, &d_code) == CURLE_OK) { in PHP_FUNCTION()
2472 CAAD("upload_content_length", d_code); in PHP_FUNCTION()
2474 if (curl_easy_getinfo(ch->cp, CURLINFO_STARTTRANSFER_TIME, &d_code) == CURLE_OK) { in PHP_FUNCTION()
2475 CAAD("starttransfer_time", d_code); in PHP_FUNCTION()
2477 if (curl_easy_getinfo(ch->cp, CURLINFO_REDIRECT_TIME, &d_code) == CURLE_OK) { in PHP_FUNCTION()
2478 CAAD("redirect_time", d_code); in PHP_FUNCTION()