OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:PROXY_LOG
(Results
1 - 5
of
5
) sorted by null
/external/qemu/proxy/
proxy_http.c
24
PROXY_LOG
("%s", __FUNCTION__);
44
PROXY_LOG
("%s: trying to connect to %s",
49
PROXY_LOG
("%s: using HTTP rewriter", __FUNCTION__);
52
PROXY_LOG
("%s: using HTTP rewriter", __FUNCTION__);
76
PROXY_LOG
( "%s: creating http proxy service connecting to: %.*s:%d",
89
PROXY_LOG
("%s: not enough memory to allocate new proxy service", __FUNCTION__);
142
PROXY_LOG
( "could not base64 encode '%.*s'", uplen, user_pass);
161
PROXY_LOG
( "%s: buffer overflow when creating connection footer",
171
PROXY_LOG
( "%s: creating HTTP Proxy Service Footer is (len=%d):\n'%.*s'",
180
PROXY_LOG
("%s: could not register service ?", __FUNCTION__)
[
all
...]
proxy_http_connector.c
65
PROXY_LOG
("%s: immediate connection", root->name);
70
PROXY_LOG
("%s: connecting", root->name);
73
PROXY_LOG
("%s: cannot connect to proxy: %s", root->name, errno_str);
119
PROXY_LOG
("%s: connected to http proxy, sending header", root->name);
127
PROXY_LOG
("%s: header sent, receiving first answer line", root->name);
140
PROXY_LOG
( "%s: invalid answer from proxy: '%s'",
148
PROXY_LOG
( "%s: connection refused, error=%d",
153
PROXY_LOG
("%s: receiving second answer line", root->name);
158
PROXY_LOG
("%s: connection succeeded", root->name);
165
PROXY_LOG
("%s: invalid state for read event: %d", root->name, conn->state)
[
all
...]
proxy_common.c
23
int
proxy_log
= 0;
variable
26
proxy_LOG
(const char* fmt, ...)
38
proxy_log
= mode;
55
proxy_LOG
( "%s", stralloc_cstr(s) );
129
if (
proxy_log
) {
130
PROXY_LOG
("%s: sending %d bytes:", conn->name, avail );
137
PROXY_LOG
("%s: connection reset by peer (send)",
145
PROXY_LOG
("%s: error: %s", conn->name, errno_str);
171
PROXY_LOG
("%s: connection reset by peer (receive)",
179
PROXY_LOG
("%s: error: %s", conn->name, errno_str)
[
all
...]
proxy_http_rewriter.c
53
# define D(...)
PROXY_LOG
(__VA_ARGS__)
287
PROXY_LOG
("%s: bad reply protocol: %s", __FUNCTION__, version);
292
PROXY_LOG
("%s: bad reply code: %d", __FUNCTION__, code);
393
PROXY_LOG
("%s: connecting", conn->root->name);
396
PROXY_LOG
("%s: cannot connect to proxy: %s", root->name, errno_str);
401
PROXY_LOG
("%s: immediate connection", root->name);
416
PROXY_LOG
("%s: coult not create socket pair: %s",
445
PROXY_LOG
("%s: can't parse method in '%'",
451
PROXY_LOG
( "%s: can't parse URI in '%s'",
457
PROXY_LOG
( "%s: extra data after version in '%s'"
[
all
...]
proxy_int.h
19
extern int
proxy_log
;
22
proxy_LOG
(const char* fmt, ...);
24
#define
PROXY_LOG
(...) \
25
do { if (
proxy_log
)
proxy_LOG
(__VA_ARGS__); } while (0)
Completed in 67 milliseconds