Symbol: DEBUG_APP
headers/private/file_systems/DebugSupport.h
112
__out(DEBUG_APP ": [%" B_PRIdBIGTIME ": %5" B_PRId32 "] ", \
headers/private/file_systems/DebugSupport.h
120
__out(DEBUG_APP ": [%" B_PRIdBIGTIME ": %5" B_PRId32 "] %s" prefix, \
headers/private/file_systems/DebugSupport.h
128
__out(DEBUG_APP ": [%" B_PRIdBIGTIME ": %5" B_PRId32 "] %s:%d: ", \
headers/private/file_systems/DebugSupport.h
34
#ifndef DEBUG_APP
headers/private/file_systems/DebugSupport.h
38
# define DEBUG_PRINT_FILE "/var/log/" DEBUG_APP ".log"
headers/private/userlandfs/shared/Debug.h
100
#define DEBUG_CONTEXT_LINE(x) { dbg_printf_begin(); __out(DEBUG_APP ": [%" \
headers/private/userlandfs/shared/Debug.h
30
#ifndef DEBUG_APP
headers/private/userlandfs/shared/Debug.h
34
# define DEBUG_PRINT_FILE "/var/log/" DEBUG_APP ".log"
headers/private/userlandfs/shared/Debug.h
94
#define DEBUG_CONTEXT(x) { dbg_printf_begin(); __out(DEBUG_APP ": [%" \
headers/private/userlandfs/shared/Debug.h
98
__out(DEBUG_APP ": [%" B_PRIdBIGTIME ": %5" B_PRId32 "] %s()" prefix, \
src/add-ons/kernel/file_systems/bindfs/DebugSupport.h
103
__out(DEBUG_APP ": [%" B_PRIdBIGTIME ": %5" B_PRId32 "] ", system_time(),\
src/add-ons/kernel/file_systems/bindfs/DebugSupport.h
111
__out(DEBUG_APP ": [%" B_PRIdBIGTIME ": %5" B_PRId32 "] %s" prefix, \
src/add-ons/kernel/file_systems/bindfs/DebugSupport.h
119
__out(DEBUG_APP ": [%" B_PRId64 ": %5" B_PRId32 "] %s:%d: ", \
src/add-ons/kernel/file_systems/bindfs/DebugSupport.h
34
#ifndef DEBUG_APP
src/add-ons/kernel/file_systems/bindfs/DebugSupport.h
38
# define DEBUG_PRINT_FILE "/var/log/" DEBUG_APP ".log"
src/add-ons/kernel/file_systems/netfs/headers/shared/DebugSupport.h
103
__out(DEBUG_APP ": [%" B_PRIdBIGTIME ": %5" B_PRId32 "] ", system_time(), DEBUG_THREAD); \
src/add-ons/kernel/file_systems/netfs/headers/shared/DebugSupport.h
110
__out(DEBUG_APP ": [%" B_PRIdBIGTIME ": %5" B_PRId32 "] %s" prefix, system_time(), DEBUG_THREAD, \
src/add-ons/kernel/file_systems/netfs/headers/shared/DebugSupport.h
118
__out(DEBUG_APP ": [%" B_PRIdBIGTIME ": %5" B_PRId32 "] %s:%d: ", system_time(), DEBUG_THREAD, \
src/add-ons/kernel/file_systems/netfs/headers/shared/DebugSupport.h
34
#ifndef DEBUG_APP
src/add-ons/kernel/file_systems/netfs/headers/shared/DebugSupport.h
38
# define DEBUG_PRINT_FILE "/var/log/" DEBUG_APP ".log"
src/apps/icon-o-matic/generic/support/Debug.h
101
#define DEBUG_CONTEXT(x) { dbg_printf_begin(); __out(DEBUG_APP ": [%lld: %5ld] ", system_time(), DEBUG_THREAD); x; dbg_printf_end(); }
src/apps/icon-o-matic/generic/support/Debug.h
102
#define DEBUG_CONTEXT_FUNCTION(prefix, x) { dbg_printf_begin(); __out(DEBUG_APP ": [%lld: %5ld] %s()" prefix, system_time(), DEBUG_THREAD, __FUNCTION__); x; dbg_printf_end(); }
src/apps/icon-o-matic/generic/support/Debug.h
103
#define DEBUG_CONTEXT_LINE(x) { dbg_printf_begin(); __out(DEBUG_APP ": [%lld: %5ld] %s():%d: ", system_time(), DEBUG_THREAD, __FUNCTION__, __LINE__); x; dbg_printf_end(); }
src/apps/icon-o-matic/generic/support/Debug.h
37
#ifndef DEBUG_APP
src/apps/icon-o-matic/generic/support/Debug.h
41
# define DEBUG_PRINT_FILE "/var/log/" DEBUG_APP ".log"
src/servers/package/DebugSupport.h
107
__out(DEBUG_APP ": [%" B_PRIdBIGTIME ": %5" B_PRId32 "] ", \
src/servers/package/DebugSupport.h
115
__out(DEBUG_APP ": [%" B_PRIdBIGTIME ": %5" B_PRId32 "] %s" prefix, \
src/servers/package/DebugSupport.h
123
__out(DEBUG_APP ": [%" B_PRIdBIGTIME ": %5" B_PRId32 "] %s:%d: ", \
src/servers/package/DebugSupport.h
31
#ifndef DEBUG_APP
src/servers/package/DebugSupport.h
35
# define DEBUG_PRINT_FILE "/var/log/" DEBUG_APP ".log"
src/servers/registrar/Debug.h
38
#define PRINT(x...) { __out(DEBUG_APP ": " x); }
src/servers/registrar/Debug.h
40
__out(DEBUG_APP ": %s:%d: %s\n", __FUNCTION__, __LINE__, \
src/servers/registrar/Debug.h
56
#define FATAL(x...) { __out(DEBUG_APP ": " x); }
src/servers/registrar/Debug.h
57
#define ERROR(x...) { __out(DEBUG_APP ": " x); }
src/servers/registrar/Debug.h
58
#define WARNING(x...) { __out(DEBUG_APP ": " x); }
src/servers/registrar/Debug.h
59
#define INFORM(x...) { __out(DEBUG_APP ": " x); }
src/servers/registrar/Debug.h
60
#define FUNCTION(x) { __out(DEBUG_APP ": %s() ",__FUNCTION__); __out x; }
src/servers/registrar/Debug.h
61
#define FUNCTION_START() { __out(DEBUG_APP ": %s()\n",__FUNCTION__); }
src/servers/registrar/Debug.h
62
#define FUNCTION_END() { __out(DEBUG_APP ": %s() done\n",__FUNCTION__); }
src/servers/registrar/Debug.h
69
#define FATAL(x...) { __out(DEBUG_APP ": " x); }
src/servers/registrar/Debug.h
70
#define ERROR(x...) { __out(DEBUG_APP ": " x); }
src/servers/registrar/Debug.h
71
#define WARNING(x...) { __out(DEBUG_APP ": " x); }
src/servers/registrar/Debug.h
72
#define INFORM(x...) { __out(DEBUG_APP ": " x); }