Lines Matching refs:d_code

3103 		double d_code;  in PHP_FUNCTION()  local
3141 if (curl_easy_getinfo(ch->cp, CURLINFO_TOTAL_TIME, &d_code) == CURLE_OK) { in PHP_FUNCTION()
3142 CAAD("total_time", d_code); in PHP_FUNCTION()
3144 if (curl_easy_getinfo(ch->cp, CURLINFO_NAMELOOKUP_TIME, &d_code) == CURLE_OK) { in PHP_FUNCTION()
3145 CAAD("namelookup_time", d_code); in PHP_FUNCTION()
3147 if (curl_easy_getinfo(ch->cp, CURLINFO_CONNECT_TIME, &d_code) == CURLE_OK) { in PHP_FUNCTION()
3148 CAAD("connect_time", d_code); in PHP_FUNCTION()
3150 if (curl_easy_getinfo(ch->cp, CURLINFO_PRETRANSFER_TIME, &d_code) == CURLE_OK) { in PHP_FUNCTION()
3151 CAAD("pretransfer_time", d_code); in PHP_FUNCTION()
3153 if (curl_easy_getinfo(ch->cp, CURLINFO_SIZE_UPLOAD, &d_code) == CURLE_OK) { in PHP_FUNCTION()
3154 CAAD("size_upload", d_code); in PHP_FUNCTION()
3156 if (curl_easy_getinfo(ch->cp, CURLINFO_SIZE_DOWNLOAD, &d_code) == CURLE_OK) { in PHP_FUNCTION()
3157 CAAD("size_download", d_code); in PHP_FUNCTION()
3159 if (curl_easy_getinfo(ch->cp, CURLINFO_SPEED_DOWNLOAD, &d_code) == CURLE_OK) { in PHP_FUNCTION()
3160 CAAD("speed_download", d_code); in PHP_FUNCTION()
3162 if (curl_easy_getinfo(ch->cp, CURLINFO_SPEED_UPLOAD, &d_code) == CURLE_OK) { in PHP_FUNCTION()
3163 CAAD("speed_upload", d_code); in PHP_FUNCTION()
3165 if (curl_easy_getinfo(ch->cp, CURLINFO_CONTENT_LENGTH_DOWNLOAD, &d_code) == CURLE_OK) { in PHP_FUNCTION()
3166 CAAD("download_content_length", d_code); in PHP_FUNCTION()
3168 if (curl_easy_getinfo(ch->cp, CURLINFO_CONTENT_LENGTH_UPLOAD, &d_code) == CURLE_OK) { in PHP_FUNCTION()
3169 CAAD("upload_content_length", d_code); in PHP_FUNCTION()
3171 if (curl_easy_getinfo(ch->cp, CURLINFO_STARTTRANSFER_TIME, &d_code) == CURLE_OK) { in PHP_FUNCTION()
3172 CAAD("starttransfer_time", d_code); in PHP_FUNCTION()
3174 if (curl_easy_getinfo(ch->cp, CURLINFO_REDIRECT_TIME, &d_code) == CURLE_OK) { in PHP_FUNCTION()
3175 CAAD("redirect_time", d_code); in PHP_FUNCTION()