Searched refs:__out (Results 1 - 21 of 21) sorted by relevance

/haiku/src/tests/add-ons/kernel/file_systems/udf/udf_shell/
H A DDebug.h17 # define __out printf macro
19 # define __out dprintf macro
60 #define PRINT(x) { __out("udf: "); __out x; }
61 #define REPORT_ERROR(status) __out("udf: %s:%s:%ld: %s\n", __FILE__, __FUNCTION__, __LINE__, strerror(status));
63 #define FATAL(x) { __out("udf: "); __out x; }
64 #define INFORM(x) { __out("udf: "); __out x; }
65 #define FUNCTION() __out("ud
[all...]
/haiku/src/servers/registrar/
H A DDebug.h17 #define __out DEBUG_PRINTF macro
19 #define __out printf macro
38 #define PRINT(x...) { __out(DEBUG_APP ": " x); }
40 __out(DEBUG_APP ": %s:%d: %s\n", __FUNCTION__, __LINE__, \
56 #define FATAL(x...) { __out(DEBUG_APP ": " x); }
57 #define ERROR(x...) { __out(DEBUG_APP ": " x); }
58 #define WARNING(x...) { __out(DEBUG_APP ": " x); }
59 #define INFORM(x...) { __out(DEBUG_APP ": " x); }
60 #define FUNCTION(x) { __out(DEBUG_APP ": %s() ",__FUNCTION__); __out
[all...]
/haiku/src/add-ons/kernel/file_systems/bfs/
H A DDebug.h12 # define __out printf macro
14 # define __out dprintf macro
51 #define PRINT(x) { __out("bfs: "); __out x; }
53 __out("bfs: %s:%d: %s\n", __FUNCTION__, __LINE__, strerror(status));
55 #define FATAL(x) { __out("bfs: "); __out x; }
56 #define INFORM(x) { __out("bfs: "); __out x; }
57 // #define FUNCTION() __out("bf
[all...]
H A DQuery.cpp1041 __out("( ");
1051 __out(" %s ", op);
1056 __out(" )");
1072 __out("[\"%s\" %s \"%s\"]", fAttribute, symbol, fString);
1093 D(__out("\n"));
H A DBPlusTree.cpp2890 __out("TreeIterator at %p:\n", this);
2891 __out("\tfTree = %p\n", fTree);
2892 __out("\tfCurrentNodeOffset = %" B_PRId64 "\n", fCurrentNodeOffset);
2893 __out("\tfCurrentKey = %d\n", (int)fCurrentKey);
2894 __out("\tfDuplicateNode = %" B_PRId64 " (%" B_PRId64 ", 0x%" B_PRIx64 ")\n",
2897 __out("\tfDuplicate = %u\n", fDuplicate);
2898 __out("\tfNumDuplicates = %u\n", fNumDuplicates);
2899 __out("\tfIsFragment = %s\n", fIsFragment ? "true" : "false");
/haiku/src/add-ons/kernel/partitioning_systems/session/
H A DDebug.h30 # define __out dbg_printf macro
36 # define __out printf macro
39 # define __out dprintf macro
78 #define INFORM(x) { __out("session: "); __out x; }
107 __out("session: %s::%s(", \
110 __out("session: %s(", __FUNCTION__); \
112 __out arguments; \
113 __out("):\n"); \
123 __out("sessio
[all...]
/haiku/src/add-ons/kernel/file_systems/udf/
H A DUdfDebug.h34 # define __out dbg_printf macro
40 # define __out printf macro
43 # define __out dprintf macro
47 //# define __out printf
83 #define INFORM(x) { __out("udf: "); __out x; }
112 __out("udf: %s::%s(", \
115 __out("udf: %s(", __FUNCTION__); \
117 __out arguments; \
118 __out(")
[all...]
/haiku/src/add-ons/kernel/file_systems/netfs/headers/shared/
H A DDebugSupport.h46 # define __out dbg_printf macro
48 # define __out printf macro
54 # define __out dbg_printf macro
56 # define __out dprintf macro
103 __out(DEBUG_APP ": [%" B_PRIdBIGTIME ": %5" B_PRId32 "] ", system_time(), DEBUG_THREAD); \
110 __out(DEBUG_APP ": [%" B_PRIdBIGTIME ": %5" B_PRId32 "] %s" prefix, system_time(), DEBUG_THREAD, \
118 __out(DEBUG_APP ": [%" B_PRIdBIGTIME ": %5" B_PRId32 "] %s:%d: ", system_time(), DEBUG_THREAD, \
124 #define TPRINT(x...) DEBUG_CONTEXT( __out(x) )
126 DEBUG_CONTEXT_LINE( __out("%s\n", strerror(status)) )
141 #define TFUNCTION(x...) DEBUG_CONTEXT_FUNCTION( ": ", __out(
[all...]
/haiku/headers/private/userlandfs/shared/
H A DDebug.h41 # define __out dbg_printf macro
43 # define __out printf macro
49 # define __out dbg_printf macro
51 # define __out dprintf macro
94 #define DEBUG_CONTEXT(x) { dbg_printf_begin(); __out(DEBUG_APP ": [%" \
98 __out(DEBUG_APP ": [%" B_PRIdBIGTIME ": %5" B_PRId32 "] %s()" prefix, \
100 #define DEBUG_CONTEXT_LINE(x) { dbg_printf_begin(); __out(DEBUG_APP ": [%" \
104 #define TPRINT(x) DEBUG_CONTEXT( __out x )
105 #define TREPORT_ERROR(status) DEBUG_CONTEXT_LINE( __out("%s\n", strerror(status)) )
108 #define TFUNCTION(x) DEBUG_CONTEXT_FUNCTION( ": ", __out
[all...]
/haiku/src/add-ons/kernel/file_systems/bindfs/
H A DDebugSupport.h46 # define __out dbg_printf macro
48 # define __out printf macro
54 # define __out dbg_printf macro
56 # define __out dprintf macro
103 __out(DEBUG_APP ": [%" B_PRIdBIGTIME ": %5" B_PRId32 "] ", system_time(),\
111 __out(DEBUG_APP ": [%" B_PRIdBIGTIME ": %5" B_PRId32 "] %s" prefix, \
119 __out(DEBUG_APP ": [%" B_PRId64 ": %5" B_PRId32 "] %s:%d: ", \
125 #define TPRINT(x...) DEBUG_CONTEXT( __out(x) )
127 DEBUG_CONTEXT_LINE( __out("%s\n", strerror(status)) )
142 #define TFUNCTION(x...) DEBUG_CONTEXT_FUNCTION( ": ", __out(
[all...]
H A DDebugSupport.cpp61 __out("##################################################\n");
/haiku/src/servers/package/
H A DDebugSupport.h50 # define __out dbg_printf macro
52 # define __out debug_printf macro
58 # define __out dbg_printf macro
60 # define __out dprintf macro
107 __out(DEBUG_APP ": [%" B_PRIdBIGTIME ": %5" B_PRId32 "] ", \
115 __out(DEBUG_APP ": [%" B_PRIdBIGTIME ": %5" B_PRId32 "] %s" prefix, \
123 __out(DEBUG_APP ": [%" B_PRIdBIGTIME ": %5" B_PRId32 "] %s:%d: ", \
129 #define TPRINT(x...) DEBUG_CONTEXT( __out(x) )
131 DEBUG_CONTEXT_LINE( __out("%s\n", strerror(status)) )
146 #define TFUNCTION(x...) DEBUG_CONTEXT_FUNCTION( ": ", __out(
[all...]
H A DDebugSupport.cpp61 __out("##################################################\n");
/haiku/src/apps/icon-o-matic/generic/support/
H A DDebug.h48 # define __out dbg_printf macro
50 # define __out printf macro
56 # define __out dbg_printf macro
58 # define __out dprintf macro
101 #define DEBUG_CONTEXT(x) { dbg_printf_begin(); __out(DEBUG_APP ": [%lld: %5ld] ", system_time(), DEBUG_THREAD); x; dbg_printf_end(); }
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(); }
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(); }
105 #define TPRINT(x) DEBUG_CONTEXT( __out x )
106 #define TREPORT_ERROR(status) DEBUG_CONTEXT_LINE( __out("%s\n", strerror(status)) )
109 #define TFUNCTION(x) DEBUG_CONTEXT_FUNCTION( ": ", __out
[all...]
H A DDebug.cpp60 __out("##################################################\n");
/haiku/headers/private/file_systems/
H A DDebugSupport.h46 # define __out dbg_printf macro
49 # define __out printf macro
56 # define __out dbg_printf macro
59 # define __out dprintf macro
112 __out(DEBUG_APP ": [%" B_PRIdBIGTIME ": %5" B_PRId32 "] ", \
120 __out(DEBUG_APP ": [%" B_PRIdBIGTIME ": %5" B_PRId32 "] %s" prefix, \
128 __out(DEBUG_APP ": [%" B_PRIdBIGTIME ": %5" B_PRId32 "] %s:%d: ", \
134 #define TPRINT(x...) DEBUG_CONTEXT( __out(x) )
137 DEBUG_CONTEXT_LINE( __out("%s\n", strerror(status)) )
152 #define TFUNCTION(x...) DEBUG_CONTEXT_FUNCTION( ": ", __out(
[all...]
H A DQueryParser.h1119 QUERY_D(__out("( "));
1129 QUERY_D(__out(" %s ", op));
1134 QUERY_D(__out(" )"));
1151 QUERY_D(__out("[\"%s\" %s \"%s\"]", fAttribute, symbol, fString));
1173 QUERY_D(__out("\n"));
/haiku/src/add-ons/kernel/file_systems/netfs/shared/
H A DDebugSupport.cpp61 __out("##################################################\n");
/haiku/src/add-ons/kernel/file_systems/userlandfs/shared/
H A DDebug.cpp57 __out("##################################################\n");
/haiku/src/add-ons/kernel/file_systems/shared/
H A DDebugSupport.cpp63 __out("##################################################\n");
/haiku/headers/cpp/
H A Dstl_algo.h867 _OutputIter __out, const _Distance __n)
875 *__out = *__first;
876 ++__out;
883 return __out;
889 _OutputIter __out, const _Distance __n,
898 *__out = *__first;
899 ++__out;
906 return __out;
911 _RandomAccessIter __out,
917 __out[__
866 random_sample_n(_ForwardIter __first, _ForwardIter __last, _OutputIter __out, const _Distance __n) argument
888 random_sample_n(_ForwardIter __first, _ForwardIter __last, _OutputIter __out, const _Distance __n, _RandomNumberGenerator& __rand) argument
910 __random_sample(_InputIter __first, _InputIter __last, _RandomAccessIter __out, const _Distance __n) argument
932 __random_sample(_InputIter __first, _InputIter __last, _RandomAccessIter __out, _RandomNumberGenerator& __rand, const _Distance __n) argument
[all...]

Completed in 105 milliseconds