Lines Matching refs:d_code
3107 double d_code; in PHP_FUNCTION() local
3145 if (curl_easy_getinfo(ch->cp, CURLINFO_TOTAL_TIME, &d_code) == CURLE_OK) { in PHP_FUNCTION()
3146 CAAD("total_time", d_code); in PHP_FUNCTION()
3148 if (curl_easy_getinfo(ch->cp, CURLINFO_NAMELOOKUP_TIME, &d_code) == CURLE_OK) { in PHP_FUNCTION()
3149 CAAD("namelookup_time", d_code); in PHP_FUNCTION()
3151 if (curl_easy_getinfo(ch->cp, CURLINFO_CONNECT_TIME, &d_code) == CURLE_OK) { in PHP_FUNCTION()
3152 CAAD("connect_time", d_code); in PHP_FUNCTION()
3154 if (curl_easy_getinfo(ch->cp, CURLINFO_PRETRANSFER_TIME, &d_code) == CURLE_OK) { in PHP_FUNCTION()
3155 CAAD("pretransfer_time", d_code); in PHP_FUNCTION()
3157 if (curl_easy_getinfo(ch->cp, CURLINFO_SIZE_UPLOAD, &d_code) == CURLE_OK) { in PHP_FUNCTION()
3158 CAAD("size_upload", d_code); in PHP_FUNCTION()
3160 if (curl_easy_getinfo(ch->cp, CURLINFO_SIZE_DOWNLOAD, &d_code) == CURLE_OK) { in PHP_FUNCTION()
3161 CAAD("size_download", d_code); in PHP_FUNCTION()
3163 if (curl_easy_getinfo(ch->cp, CURLINFO_SPEED_DOWNLOAD, &d_code) == CURLE_OK) { in PHP_FUNCTION()
3164 CAAD("speed_download", d_code); in PHP_FUNCTION()
3166 if (curl_easy_getinfo(ch->cp, CURLINFO_SPEED_UPLOAD, &d_code) == CURLE_OK) { in PHP_FUNCTION()
3167 CAAD("speed_upload", d_code); in PHP_FUNCTION()
3169 if (curl_easy_getinfo(ch->cp, CURLINFO_CONTENT_LENGTH_DOWNLOAD, &d_code) == CURLE_OK) { in PHP_FUNCTION()
3170 CAAD("download_content_length", d_code); in PHP_FUNCTION()
3172 if (curl_easy_getinfo(ch->cp, CURLINFO_CONTENT_LENGTH_UPLOAD, &d_code) == CURLE_OK) { in PHP_FUNCTION()
3173 CAAD("upload_content_length", d_code); in PHP_FUNCTION()
3175 if (curl_easy_getinfo(ch->cp, CURLINFO_STARTTRANSFER_TIME, &d_code) == CURLE_OK) { in PHP_FUNCTION()
3176 CAAD("starttransfer_time", d_code); in PHP_FUNCTION()
3178 if (curl_easy_getinfo(ch->cp, CURLINFO_REDIRECT_TIME, &d_code) == CURLE_OK) { in PHP_FUNCTION()
3179 CAAD("redirect_time", d_code); in PHP_FUNCTION()