Symbol: __out
headers/cpp/stl_algo.h
867
_OutputIter __out, const _Distance __n)
headers/cpp/stl_algo.h
875
*__out = *__first;
headers/cpp/stl_algo.h
876
++__out;
headers/cpp/stl_algo.h
883
return __out;
headers/cpp/stl_algo.h
889
_OutputIter __out, const _Distance __n,
headers/cpp/stl_algo.h
898
*__out = *__first;
headers/cpp/stl_algo.h
899
++__out;
headers/cpp/stl_algo.h
906
return __out;
headers/cpp/stl_algo.h
911
_RandomAccessIter __out,
headers/cpp/stl_algo.h
917
__out[__m] = *__first;
headers/cpp/stl_algo.h
923
__out[__M] = *__first;
headers/cpp/stl_algo.h
927
return __out + __m;
headers/cpp/stl_algo.h
933
_RandomAccessIter __out,
headers/cpp/stl_algo.h
940
__out[__m] = *__first;
headers/cpp/stl_algo.h
946
__out[__M] = *__first;
headers/cpp/stl_algo.h
950
return __out + __m;
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
134
#define TPRINT(x...) DEBUG_CONTEXT( __out(x) )
headers/private/file_systems/DebugSupport.h
137
DEBUG_CONTEXT_LINE( __out("%s\n", strerror(status)) )
headers/private/file_systems/DebugSupport.h
152
#define TFUNCTION(x...) DEBUG_CONTEXT_FUNCTION( ": ", __out(x) )
headers/private/file_systems/QueryParser.h
1150
QUERY_D(__out("( "));
headers/private/file_systems/QueryParser.h
1160
QUERY_D(__out(" %s ", op));
headers/private/file_systems/QueryParser.h
1165
QUERY_D(__out(" )"));
headers/private/file_systems/QueryParser.h
1182
QUERY_D(__out("[\"%s\" %s \"%s\"]", fAttribute, symbol, fString));
headers/private/file_systems/QueryParser.h
1391
QUERY_D(__out("\n"));
headers/private/userlandfs/shared/Debug.h
100
#define DEBUG_CONTEXT_LINE(x) { dbg_printf_begin(); __out(DEBUG_APP ": [%" \
headers/private/userlandfs/shared/Debug.h
104
#define TPRINT(x) DEBUG_CONTEXT( __out x )
headers/private/userlandfs/shared/Debug.h
105
#define TREPORT_ERROR(status) DEBUG_CONTEXT_LINE( __out("%s\n", strerror(status)) )
headers/private/userlandfs/shared/Debug.h
108
#define TFUNCTION(x) DEBUG_CONTEXT_FUNCTION( ": ", __out x )
headers/private/userlandfs/shared/Debug.h
117
#define FATAL(x) DEBUG_CONTEXT( __out x )
headers/private/userlandfs/shared/Debug.h
118
#define ERROR(x) DEBUG_CONTEXT( __out x )
headers/private/userlandfs/shared/Debug.h
119
#define WARN(x) DEBUG_CONTEXT( __out x )
headers/private/userlandfs/shared/Debug.h
120
#define INFORM(x) DEBUG_CONTEXT( __out x )
headers/private/userlandfs/shared/Debug.h
131
#define FATAL(x) DEBUG_CONTEXT( __out x )
headers/private/userlandfs/shared/Debug.h
132
#define ERROR(x) DEBUG_CONTEXT( __out x )
headers/private/userlandfs/shared/Debug.h
133
#define WARN(x) DEBUG_CONTEXT( __out x )
headers/private/userlandfs/shared/Debug.h
134
#define INFORM(x) DEBUG_CONTEXT( __out x )
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/bfs/BPlusTree.cpp
2918
__out("TreeIterator at %p:\n", this);
src/add-ons/kernel/file_systems/bfs/BPlusTree.cpp
2919
__out("\tfTree = %p\n", fTree);
src/add-ons/kernel/file_systems/bfs/BPlusTree.cpp
2920
__out("\tfCurrentNodeOffset = %" B_PRId64 "\n", fCurrentNodeOffset);
src/add-ons/kernel/file_systems/bfs/BPlusTree.cpp
2921
__out("\tfCurrentKey = %d\n", (int)fCurrentKey);
src/add-ons/kernel/file_systems/bfs/BPlusTree.cpp
2922
__out("\tfDuplicateNode = %" B_PRId64 " (%" B_PRId64 ", 0x%" B_PRIx64 ")\n",
src/add-ons/kernel/file_systems/bfs/BPlusTree.cpp
2925
__out("\tfDuplicate = %u\n", fDuplicate);
src/add-ons/kernel/file_systems/bfs/BPlusTree.cpp
2926
__out("\tfNumDuplicates = %u\n", fNumDuplicates);
src/add-ons/kernel/file_systems/bfs/BPlusTree.cpp
2927
__out("\tfIsFragment = %s\n", fIsFragment ? "true" : "false");
src/add-ons/kernel/file_systems/bfs/Debug.h
51
#define PRINT(x) { __out("bfs: "); __out x; }
src/add-ons/kernel/file_systems/bfs/Debug.h
53
__out("bfs: %s:%d: %s\n", __FUNCTION__, __LINE__, strerror(status));
src/add-ons/kernel/file_systems/bfs/Debug.h
55
#define FATAL(x) { __out("bfs: "); __out x; }
src/add-ons/kernel/file_systems/bfs/Debug.h
56
#define INFORM(x) { __out("bfs: "); __out x; }
src/add-ons/kernel/file_systems/bfs/Debug.h
58
#define FUNCTION_START(x) { __out("bfs: %s() ",__FUNCTION__); __out x; }
src/add-ons/kernel/file_systems/bfs/Debug.h
68
__out("bfs: %s:%d: %s\n", __FUNCTION__, __LINE__, strerror(status));
src/add-ons/kernel/file_systems/bfs/Debug.h
71
#define FATAL(x) { __out("bfs: "); __out x; }
src/add-ons/kernel/file_systems/bfs/Debug.h
72
#define INFORM(x) { __out("bfs: "); __out x; }
src/add-ons/kernel/file_systems/bindfs/DebugSupport.cpp
61
__out("##################################################\n");
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
125
#define TPRINT(x...) DEBUG_CONTEXT( __out(x) )
src/add-ons/kernel/file_systems/bindfs/DebugSupport.h
127
DEBUG_CONTEXT_LINE( __out("%s\n", strerror(status)) )
src/add-ons/kernel/file_systems/bindfs/DebugSupport.h
142
#define TFUNCTION(x...) DEBUG_CONTEXT_FUNCTION( ": ", __out(x) )
src/add-ons/kernel/file_systems/bindfs/DebugSupport.h
151
#define FATAL(x...) DEBUG_CONTEXT( __out(x) )
src/add-ons/kernel/file_systems/bindfs/DebugSupport.h
152
#define ERROR(x...) DEBUG_CONTEXT( __out(x) )
src/add-ons/kernel/file_systems/bindfs/DebugSupport.h
153
#define WARN(x...) DEBUG_CONTEXT( __out(x) )
src/add-ons/kernel/file_systems/bindfs/DebugSupport.h
154
#define INFORM(x...) DEBUG_CONTEXT( __out(x) )
src/add-ons/kernel/file_systems/bindfs/DebugSupport.h
165
#define FATAL(x...) DEBUG_CONTEXT( __out(x) )
src/add-ons/kernel/file_systems/bindfs/DebugSupport.h
166
#define ERROR(x...) DEBUG_CONTEXT( __out(x) )
src/add-ons/kernel/file_systems/bindfs/DebugSupport.h
167
#define WARN(x...) DEBUG_CONTEXT( __out(x) )
src/add-ons/kernel/file_systems/bindfs/DebugSupport.h
168
#define INFORM(x...) DEBUG_CONTEXT( __out(x) )
src/add-ons/kernel/file_systems/fat/debug.h
106
__out("fat[%" B_PRId32 "]: ", find_thread(NULL)); \
src/add-ons/kernel/file_systems/fat/debug.h
107
__out x; \
src/add-ons/kernel/file_systems/fat/debug.h
111
__out("fat[%" B_PRId32 "]: ", find_thread(NULL)); \
src/add-ons/kernel/file_systems/fat/debug.h
112
__out(__VA_ARGS__); \
src/add-ons/kernel/file_systems/fat/debug.h
62
__out("fat[%" B_PRId32 "]: ", find_thread(NULL)); \
src/add-ons/kernel/file_systems/fat/debug.h
63
__out(__VA_ARGS__); \
src/add-ons/kernel/file_systems/fat/debug.h
66
__out("fat[%" B_PRId32 "]: %s:%d: %s\n", find_thread(NULL), __FUNCTION__, __LINE__, \
src/add-ons/kernel/file_systems/fat/debug.h
77
__out("fat[%" B_PRId32 "]: ", find_thread(NULL)); \
src/add-ons/kernel/file_systems/fat/debug.h
78
__out x; \
src/add-ons/kernel/file_systems/fat/debug.h
82
__out("fat[%" B_PRId32 "]: ", find_thread(NULL)); \
src/add-ons/kernel/file_systems/fat/debug.h
83
__out(__VA_ARGS__); \
src/add-ons/kernel/file_systems/fat/debug.h
85
#define FUNCTION() __out("fat[%" B_PRId32 "]: %s()\n", find_thread(NULL), __FUNCTION__);
src/add-ons/kernel/file_systems/fat/debug.h
88
__out("fat[%" B_PRId32 "]: %s() ", find_thread(NULL), __FUNCTION__); \
src/add-ons/kernel/file_systems/fat/debug.h
89
__out(__VA_ARGS__); \
src/add-ons/kernel/file_systems/fat/debug.h
98
__out("fat[%" B_PRId32 "]: %s:%d: %s\n", find_thread(NULL), __FUNCTION__, __LINE__, \
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
124
#define TPRINT(x...) DEBUG_CONTEXT( __out(x) )
src/add-ons/kernel/file_systems/netfs/headers/shared/DebugSupport.h
126
DEBUG_CONTEXT_LINE( __out("%s\n", strerror(status)) )
src/add-ons/kernel/file_systems/netfs/headers/shared/DebugSupport.h
141
#define TFUNCTION(x...) DEBUG_CONTEXT_FUNCTION( ": ", __out(x) )
src/add-ons/kernel/file_systems/netfs/headers/shared/DebugSupport.h
150
#define FATAL(x...) DEBUG_CONTEXT( __out(x) )
src/add-ons/kernel/file_systems/netfs/headers/shared/DebugSupport.h
151
#define ERROR(x...) DEBUG_CONTEXT( __out(x) )
src/add-ons/kernel/file_systems/netfs/headers/shared/DebugSupport.h
152
#define WARN(x...) DEBUG_CONTEXT( __out(x) )
src/add-ons/kernel/file_systems/netfs/headers/shared/DebugSupport.h
153
#define INFORM(x...) DEBUG_CONTEXT( __out(x) )
src/add-ons/kernel/file_systems/netfs/headers/shared/DebugSupport.h
164
#define FATAL(x...) DEBUG_CONTEXT( __out(x) )
src/add-ons/kernel/file_systems/netfs/headers/shared/DebugSupport.h
165
#define ERROR(x...) DEBUG_CONTEXT( __out(x) )
src/add-ons/kernel/file_systems/netfs/headers/shared/DebugSupport.h
166
#define WARN(x...) DEBUG_CONTEXT( __out(x) )
src/add-ons/kernel/file_systems/netfs/headers/shared/DebugSupport.h
167
#define INFORM(x...) DEBUG_CONTEXT( __out(x) )
src/add-ons/kernel/file_systems/netfs/shared/DebugSupport.cpp
61
__out("##################################################\n");
src/add-ons/kernel/file_systems/shared/DebugSupport.cpp
63
__out("##################################################\n");
src/add-ons/kernel/file_systems/udf/UdfDebug.h
112
__out("udf: %s::%s(", \
src/add-ons/kernel/file_systems/udf/UdfDebug.h
115
__out("udf: %s(", __FUNCTION__); \
src/add-ons/kernel/file_systems/udf/UdfDebug.h
117
__out arguments; \
src/add-ons/kernel/file_systems/udf/UdfDebug.h
118
__out("):\n"); \
src/add-ons/kernel/file_systems/udf/UdfDebug.h
128
__out("udf: %s::%s(): ", \
src/add-ons/kernel/file_systems/udf/UdfDebug.h
131
__out("udf: %s(): ", __FUNCTION__); \
src/add-ons/kernel/file_systems/udf/UdfDebug.h
133
__out x; \
src/add-ons/kernel/file_systems/udf/UdfDebug.h
141
__out("udf: %s::%s(): line %d: ", \
src/add-ons/kernel/file_systems/udf/UdfDebug.h
144
__out("udf: %s(): line %d: ", \
src/add-ons/kernel/file_systems/udf/UdfDebug.h
147
__out x; \
src/add-ons/kernel/file_systems/udf/UdfDebug.h
153
__out x; \
src/add-ons/kernel/file_systems/udf/UdfDebug.h
161
__out(" "); \
src/add-ons/kernel/file_systems/udf/UdfDebug.h
227
#define FATAL(x) { __out("udf: fatal error: "); __out x; }
src/add-ons/kernel/file_systems/udf/UdfDebug.h
83
#define INFORM(x) { __out("udf: "); __out x; }
src/add-ons/kernel/file_systems/userlandfs/shared/Debug.cpp
57
__out("##################################################\n");
src/add-ons/kernel/partitioning_systems/session/Debug.h
107
__out("session: %s::%s(", \
src/add-ons/kernel/partitioning_systems/session/Debug.h
110
__out("session: %s(", __FUNCTION__); \
src/add-ons/kernel/partitioning_systems/session/Debug.h
112
__out arguments; \
src/add-ons/kernel/partitioning_systems/session/Debug.h
113
__out("):\n"); \
src/add-ons/kernel/partitioning_systems/session/Debug.h
123
__out("session: %s::%s(): ", \
src/add-ons/kernel/partitioning_systems/session/Debug.h
126
__out("session: %s(): ", __FUNCTION__); \
src/add-ons/kernel/partitioning_systems/session/Debug.h
128
__out x; \
src/add-ons/kernel/partitioning_systems/session/Debug.h
136
__out("session: %s::%s(): line %d: ", \
src/add-ons/kernel/partitioning_systems/session/Debug.h
139
__out("session: %s(): line %d: ", \
src/add-ons/kernel/partitioning_systems/session/Debug.h
142
__out x; \
src/add-ons/kernel/partitioning_systems/session/Debug.h
148
__out x; \
src/add-ons/kernel/partitioning_systems/session/Debug.h
156
__out(" "); \
src/add-ons/kernel/partitioning_systems/session/Debug.h
219
#define FATAL(x) { __out("session: fatal error: "); __out x; }
src/add-ons/kernel/partitioning_systems/session/Debug.h
78
#define INFORM(x) { __out("session: "); __out x; }
src/apps/icon-o-matic/generic/support/Debug.cpp
60
__out("##################################################\n");
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
105
#define TPRINT(x) DEBUG_CONTEXT( __out x )
src/apps/icon-o-matic/generic/support/Debug.h
106
#define TREPORT_ERROR(status) DEBUG_CONTEXT_LINE( __out("%s\n", strerror(status)) )
src/apps/icon-o-matic/generic/support/Debug.h
109
#define TFUNCTION(x) DEBUG_CONTEXT_FUNCTION( ": ", __out x )
src/apps/icon-o-matic/generic/support/Debug.h
118
#define FATAL(x) DEBUG_CONTEXT( __out x )
src/apps/icon-o-matic/generic/support/Debug.h
119
#define ERROR(x) DEBUG_CONTEXT( __out x )
src/apps/icon-o-matic/generic/support/Debug.h
120
#define WARN(x) DEBUG_CONTEXT( __out x )
src/apps/icon-o-matic/generic/support/Debug.h
121
#define INFORM(x) DEBUG_CONTEXT( __out x )
src/apps/icon-o-matic/generic/support/Debug.h
131
#define FATAL(x) DEBUG_CONTEXT( __out x )
src/apps/icon-o-matic/generic/support/Debug.h
132
#define ERROR(x) DEBUG_CONTEXT( __out x )
src/apps/icon-o-matic/generic/support/Debug.h
133
#define WARN(x) DEBUG_CONTEXT( __out x )
src/apps/icon-o-matic/generic/support/Debug.h
134
#define INFORM(x) DEBUG_CONTEXT( __out x )
src/servers/package/DebugSupport.cpp
61
__out("##################################################\n");
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
129
#define TPRINT(x...) DEBUG_CONTEXT( __out(x) )
src/servers/package/DebugSupport.h
131
DEBUG_CONTEXT_LINE( __out("%s\n", strerror(status)) )
src/servers/package/DebugSupport.h
146
#define TFUNCTION(x...) DEBUG_CONTEXT_FUNCTION( ": ", __out(x) )
src/servers/package/DebugSupport.h
155
#define FATAL(x...) DEBUG_CONTEXT( __out(x) )
src/servers/package/DebugSupport.h
156
#define ERROR(x...) DEBUG_CONTEXT( __out(x) )
src/servers/package/DebugSupport.h
157
#define WARN(x...) DEBUG_CONTEXT( __out(x) )
src/servers/package/DebugSupport.h
158
#define INFORM(x...) DEBUG_CONTEXT( __out(x) )
src/servers/package/DebugSupport.h
169
#define FATAL(x...) DEBUG_CONTEXT( __out(x) )
src/servers/package/DebugSupport.h
170
#define ERROR(x...) DEBUG_CONTEXT( __out(x) )
src/servers/package/DebugSupport.h
171
#define WARN(x...) DEBUG_CONTEXT( __out(x) )
src/servers/package/DebugSupport.h
172
#define INFORM(x...) DEBUG_CONTEXT( __out(x) )
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); }
src/tests/add-ons/kernel/file_systems/shared/queries/QueryParserTest.cpp
11
#define QUERY_INFORM __out
src/tests/add-ons/kernel/file_systems/udf/udf_shell/Debug.h
60
#define PRINT(x) { __out("udf: "); __out x; }
src/tests/add-ons/kernel/file_systems/udf/udf_shell/Debug.h
61
#define REPORT_ERROR(status) __out("udf: %s:%s:%ld: %s\n", __FILE__, __FUNCTION__, __LINE__, strerror(status));
src/tests/add-ons/kernel/file_systems/udf/udf_shell/Debug.h
63
#define FATAL(x) { __out("udf: "); __out x; }
src/tests/add-ons/kernel/file_systems/udf/udf_shell/Debug.h
64
#define INFORM(x) { __out("udf: "); __out x; }
src/tests/add-ons/kernel/file_systems/udf/udf_shell/Debug.h
65
#define FUNCTION() __out("udf: %s()\n",__FUNCTION__);
src/tests/add-ons/kernel/file_systems/udf/udf_shell/Debug.h
66
#define FUNCTION_START(x) { __out("udf: %s() ",__FUNCTION__); __out x; }
src/tests/add-ons/kernel/file_systems/udf/udf_shell/Debug.h
75
#define FATAL(x) { __out("udf: "); __out x; }
src/tests/add-ons/kernel/file_systems/udf/udf_shell/Debug.h
76
#define INFORM(x) { __out("udf: "); __out x; }