Lines Matching refs:d_code
3236 double d_code; in PHP_FUNCTION() local
3277 if (curl_easy_getinfo(ch->cp, CURLINFO_TOTAL_TIME, &d_code) == CURLE_OK) { in PHP_FUNCTION()
3278 CAAD("total_time", d_code); in PHP_FUNCTION()
3280 if (curl_easy_getinfo(ch->cp, CURLINFO_NAMELOOKUP_TIME, &d_code) == CURLE_OK) { in PHP_FUNCTION()
3281 CAAD("namelookup_time", d_code); in PHP_FUNCTION()
3283 if (curl_easy_getinfo(ch->cp, CURLINFO_CONNECT_TIME, &d_code) == CURLE_OK) { in PHP_FUNCTION()
3284 CAAD("connect_time", d_code); in PHP_FUNCTION()
3286 if (curl_easy_getinfo(ch->cp, CURLINFO_PRETRANSFER_TIME, &d_code) == CURLE_OK) { in PHP_FUNCTION()
3287 CAAD("pretransfer_time", d_code); in PHP_FUNCTION()
3289 if (curl_easy_getinfo(ch->cp, CURLINFO_SIZE_UPLOAD, &d_code) == CURLE_OK) { in PHP_FUNCTION()
3290 CAAD("size_upload", d_code); in PHP_FUNCTION()
3292 if (curl_easy_getinfo(ch->cp, CURLINFO_SIZE_DOWNLOAD, &d_code) == CURLE_OK) { in PHP_FUNCTION()
3293 CAAD("size_download", d_code); in PHP_FUNCTION()
3295 if (curl_easy_getinfo(ch->cp, CURLINFO_SPEED_DOWNLOAD, &d_code) == CURLE_OK) { in PHP_FUNCTION()
3296 CAAD("speed_download", d_code); in PHP_FUNCTION()
3298 if (curl_easy_getinfo(ch->cp, CURLINFO_SPEED_UPLOAD, &d_code) == CURLE_OK) { in PHP_FUNCTION()
3299 CAAD("speed_upload", d_code); in PHP_FUNCTION()
3301 if (curl_easy_getinfo(ch->cp, CURLINFO_CONTENT_LENGTH_DOWNLOAD, &d_code) == CURLE_OK) { in PHP_FUNCTION()
3302 CAAD("download_content_length", d_code); in PHP_FUNCTION()
3304 if (curl_easy_getinfo(ch->cp, CURLINFO_CONTENT_LENGTH_UPLOAD, &d_code) == CURLE_OK) { in PHP_FUNCTION()
3305 CAAD("upload_content_length", d_code); in PHP_FUNCTION()
3307 if (curl_easy_getinfo(ch->cp, CURLINFO_STARTTRANSFER_TIME, &d_code) == CURLE_OK) { in PHP_FUNCTION()
3308 CAAD("starttransfer_time", d_code); in PHP_FUNCTION()
3310 if (curl_easy_getinfo(ch->cp, CURLINFO_REDIRECT_TIME, &d_code) == CURLE_OK) { in PHP_FUNCTION()
3311 CAAD("redirect_time", d_code); in PHP_FUNCTION()