Lines Matching refs:writeLong
42 static int writeLong(FILE *stream, const struct writeoutvar *wovar,
79 {"exitcode", VAR_EXITCODE, CURLINFO_NONE, writeLong},
83 {"http_code", VAR_HTTP_CODE, CURLINFO_RESPONSE_CODE, writeLong},
84 {"http_connect", VAR_HTTP_CODE_PROXY, CURLINFO_HTTP_CONNECTCODE, writeLong},
88 {"local_port", VAR_LOCAL_PORT, CURLINFO_LOCAL_PORT, writeLong},
90 {"num_certs", VAR_NUM_CERTS, CURLINFO_NONE, writeLong},
91 {"num_connects", VAR_NUM_CONNECTS, CURLINFO_NUM_CONNECTS, writeLong},
92 {"num_headers", VAR_NUM_HEADERS, CURLINFO_NONE, writeLong},
93 {"num_redirects", VAR_REDIRECT_COUNT, CURLINFO_REDIRECT_COUNT, writeLong},
94 {"num_retries", VAR_NUM_RETRY, CURLINFO_NONE, writeLong},
97 CURLINFO_PROXY_SSL_VERIFYRESULT, writeLong},
98 {"proxy_used", VAR_PROXY_USED, CURLINFO_USED_PROXY, writeLong},
102 {"remote_port", VAR_PRIMARY_PORT, CURLINFO_PRIMARY_PORT, writeLong},
103 {"response_code", VAR_HTTP_CODE, CURLINFO_RESPONSE_CODE, writeLong},
106 {"size_header", VAR_HEADER_SIZE, CURLINFO_HEADER_SIZE, writeLong},
107 {"size_request", VAR_REQUEST_SIZE, CURLINFO_REQUEST_SIZE, writeLong},
113 writeLong},
151 {"urlnum", VAR_URLNUM, CURLINFO_NONE, writeLong},
433 static int writeLong(FILE *stream, const struct writeoutvar *wovar, in writeLong() function
440 DEBUGASSERT(wovar->writefunc == writeLong); in writeLong()