OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:slirp_debug
(Results
1 - 6
of
6
) sorted by null
/external/qemu/slirp/
debug.h
14
extern int
slirp_debug
;
22
#define DEBUG_CALL(x) if (
slirp_debug
& DBG_CALL) { fprintf(dfd, "%s...\n", x); fflush(dfd); }
23
#define DEBUG_ARG(x, y) if (
slirp_debug
& DBG_CALL) { fputc(' ', dfd); fprintf(dfd, x, y); fputc('\n', dfd); fflush(dfd); }
24
#define DEBUG_ARGS(x) if (
slirp_debug
& DBG_CALL) { fprintf x ; fflush(dfd); }
25
#define DEBUG_MISC(x) if (
slirp_debug
& DBG_MISC) { fprintf x ; fflush(dfd); }
26
#define DEBUG_ERROR(x) if (
slirp_debug
& DBG_ERROR) {fprintf x ; fflush(dfd); }
debug.c
17
int
slirp_debug
= 0;
variable
42
slirp_debug
= dbg;
bootp.c
47
if (
slirp_debug
& DBG_CALL) { fprintf(dfd, fmt, ## __VA_ARGS__); fflush(dfd); }
/external/qemu/slirp-android/
debug.h
14
extern int
slirp_debug
;
22
#define DEBUG_CALL(x) if (
slirp_debug
& DBG_CALL) { fprintf(dfd, "%s...\n", x); fflush(dfd); }
23
#define DEBUG_ARG(x, y) if (
slirp_debug
& DBG_CALL) { fputc(' ', dfd); fprintf(dfd, x, y); fputc('\n', dfd); fflush(dfd); }
24
#define DEBUG_ARGS(x) if (
slirp_debug
& DBG_CALL) { fprintf x ; fflush(dfd); }
25
#define DEBUG_MISC(x) if (
slirp_debug
& DBG_MISC) { fprintf x ; fflush(dfd); }
26
#define DEBUG_ERROR(x) if (
slirp_debug
& DBG_ERROR) {fprintf x ; fflush(dfd); }
debug.c
17
int
slirp_debug
= 0;
variable
43
slirp_debug
= dbg;
bootp.c
48
if (
slirp_debug
& DBG_CALL) { fprintf(dfd, fmt, ## __VA_ARGS__); fflush(dfd); }
Completed in 473 milliseconds