Lines Matching refs:d_code

3304 		double d_code;  in PHP_FUNCTION()  local
3345 if (curl_easy_getinfo(ch->cp, CURLINFO_TOTAL_TIME, &d_code) == CURLE_OK) { in PHP_FUNCTION()
3346 CAAD("total_time", d_code); in PHP_FUNCTION()
3348 if (curl_easy_getinfo(ch->cp, CURLINFO_NAMELOOKUP_TIME, &d_code) == CURLE_OK) { in PHP_FUNCTION()
3349 CAAD("namelookup_time", d_code); in PHP_FUNCTION()
3351 if (curl_easy_getinfo(ch->cp, CURLINFO_CONNECT_TIME, &d_code) == CURLE_OK) { in PHP_FUNCTION()
3352 CAAD("connect_time", d_code); in PHP_FUNCTION()
3354 if (curl_easy_getinfo(ch->cp, CURLINFO_PRETRANSFER_TIME, &d_code) == CURLE_OK) { in PHP_FUNCTION()
3355 CAAD("pretransfer_time", d_code); in PHP_FUNCTION()
3357 if (curl_easy_getinfo(ch->cp, CURLINFO_SIZE_UPLOAD, &d_code) == CURLE_OK) { in PHP_FUNCTION()
3358 CAAD("size_upload", d_code); in PHP_FUNCTION()
3360 if (curl_easy_getinfo(ch->cp, CURLINFO_SIZE_DOWNLOAD, &d_code) == CURLE_OK) { in PHP_FUNCTION()
3361 CAAD("size_download", d_code); in PHP_FUNCTION()
3363 if (curl_easy_getinfo(ch->cp, CURLINFO_SPEED_DOWNLOAD, &d_code) == CURLE_OK) { in PHP_FUNCTION()
3364 CAAD("speed_download", d_code); in PHP_FUNCTION()
3366 if (curl_easy_getinfo(ch->cp, CURLINFO_SPEED_UPLOAD, &d_code) == CURLE_OK) { in PHP_FUNCTION()
3367 CAAD("speed_upload", d_code); in PHP_FUNCTION()
3369 if (curl_easy_getinfo(ch->cp, CURLINFO_CONTENT_LENGTH_DOWNLOAD, &d_code) == CURLE_OK) { in PHP_FUNCTION()
3370 CAAD("download_content_length", d_code); in PHP_FUNCTION()
3372 if (curl_easy_getinfo(ch->cp, CURLINFO_CONTENT_LENGTH_UPLOAD, &d_code) == CURLE_OK) { in PHP_FUNCTION()
3373 CAAD("upload_content_length", d_code); in PHP_FUNCTION()
3375 if (curl_easy_getinfo(ch->cp, CURLINFO_STARTTRANSFER_TIME, &d_code) == CURLE_OK) { in PHP_FUNCTION()
3376 CAAD("starttransfer_time", d_code); in PHP_FUNCTION()
3378 if (curl_easy_getinfo(ch->cp, CURLINFO_REDIRECT_TIME, &d_code) == CURLE_OK) { in PHP_FUNCTION()
3379 CAAD("redirect_time", d_code); in PHP_FUNCTION()