/external/chromium_org/third_party/freetype/src/base/ |
ftdebug.c | 27 /* - trace mode */ 29 /* Error and trace messages are sent to the log file (which can be the */ 103 /* array of trace levels, initialized to 0 */ 107 /* define array of trace toggle names */ 151 /* This requests that all levels be set to 3, except the trace level for */
|
/external/chromium_org/third_party/tcmalloc/chromium/src/ |
stacktrace_arm-inl.h | 94 // GetStack{Trace,Frames}() 95 // GetStack{Trace,Frames}WithContext() 98 // void** result: the stack-trace, as an array 103 // void* ucp: a ucontext_t* (GetStack{Trace,Frames}WithContext only) 122 // Use the non-strict unwinding rules to produce a stack trace
|
/external/chromium_org/third_party/tcmalloc/vendor/src/ |
stacktrace_arm-inl.h | 94 // GetStack{Trace,Frames}() 95 // GetStack{Trace,Frames}WithContext() 98 // void** result: the stack-trace, as an array 103 // void* ucp: a ucontext_t* (GetStack{Trace,Frames}WithContext only) 122 // Use the non-strict unwinding rules to produce a stack trace
|
/external/chromium_org/v8/src/ |
checks.cc | 43 void* trace[100]; local 44 int size = backtrace(trace, ARRAY_SIZE(trace)); 45 char** symbols = backtrace_symbols(trace, size); 46 i::OS::PrintError("\n==== C stack trace ===============================\n\n");
|
/external/freetype/src/base/ |
ftdebug.c | 27 /* - trace mode */ 29 /* Error and trace messages are sent to the log file (which can be the */ 103 /* array of trace levels, initialized to 0 */ 107 /* define array of trace toggle names */ 151 /* This requests that all levels be set to 3, except the trace level for */
|
/external/llvm/lib/Support/ |
PrettyStackTrace.cpp | 49 /// PrintCurStackTrace - Print the current stack trace to the specified stream. 51 // Don't print an empty trace. 78 /// process, it prints the pretty stack trace. 81 // On non-apple systems, just emit the crash stack trace to stderr. 123 "Pretty stack trace entry destruction is out of order");
|
/frameworks/base/core/tests/coretests/src/android/os/ |
TraceTest.java | 28 * while tracing on the emulator and then run traceview to view the trace. 111 /** Calls other methods to make some interesting trace data. 129 /** Calls another method to make some interesting trace data. 141 /** Executes a simple loop to make some interesting trace data. 153 /** Calls itself recursively to make some interesting trace data.
|
/frameworks/volley/src/com/android/volley/ |
VolleyLog.java | 80 StackTraceElement[] trace = new Throwable().fillInStackTrace().getStackTrace(); local 85 for (int i = 2; i < trace.length; i++) { 86 Class<?> clazz = trace[i].getClass(); 88 String callingClass = trace[i].getClassName(); 92 caller = callingClass + "." + trace[i].getMethodName();
|
/packages/apps/Nfc/nxp/jni/ |
com_android_nfc_NativeLlcpServiceSocket.cpp | 110 TRACE("phLibNfc_Llcp_Accept()"); 126 TRACE("phLibNfc_Llcp_Accept() returned 0x%04x[%s]", ret, nfc_jni_get_status_name(ret)); 169 TRACE("socket handle 0x%02x: MIU = %d, RW = %d\n",hIncomingSocket, miu, rw); 182 TRACE("Close Service socket"); 197 TRACE("Close Service socket OK");
|
com_android_nfc_NativeNfcTag.cpp | 198 TRACE("phLibNfc_Ndef_Read()"); 210 TRACE("phLibNfc_Ndef_Read() returned 0x%04x[%s]", status, nfc_jni_get_status_name(status)); 256 TRACE("phLibNfc_Ndef_Write()"); 257 TRACE("Ndef Handle :0x%x\n",handle); 258 TRACE("Ndef buffer length : %d", nfc_jni_ndef_rw.length); 267 TRACE("phLibNfc_Ndef_Write() returned 0x%04x[%s]", status, nfc_jni_get_status_name(status)); 456 TRACE("phLibNfc_RemoteDev_Connect(RW)"); 466 TRACE("phLibNfc_RemoteDev_Connect(RW) returned 0x%04x[%s]", status, nfc_jni_get_status_name(status)); 477 TRACE("phLibNfc_RemoteDev_Connect() - Status code = %d", status); 510 TRACE("phLibNfc_RemoteDev_ReConnect(RW)") [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_cmd.py | 232 trace = test_support.import_module('trace') 233 tracer=trace.Trace(ignoredirs=[sys.prefix, sys.exec_prefix,], 234 trace=0, count=1)
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_cmd.py | 232 trace = test_support.import_module('trace') 233 tracer=trace.Trace(ignoredirs=[sys.prefix, sys.exec_prefix,], 234 trace=0, count=1)
|
/system/core/libcutils/ |
trace.c | 28 #include <cutils/trace.h> 30 #define LOG_TAG "cutils-trace" 130 ALOGE("Error parsing trace property: Not a number: %s", value); 133 ALOGE("Error parsing trace property: Number too large: %s", value); 172 ALOGE("Error opening trace file: %s (%d)", strerror(errno), errno);
|
/external/chromium/testing/gtest/test/ |
gtest_output_test_.cc | 167 // There should be no trace before SCOPED_TRACE() is invoked. 168 ADD_FAILURE() << "This failure is expected, and shouldn't have a trace."; 171 SCOPED_TRACE("Expected trace"); 173 // the trace. 174 ADD_FAILURE() << "This failure is expected, and should have a trace."; 178 // should be no trace again. 179 ADD_FAILURE() << "This failure is expected, and shouldn't have a trace."; 205 SCOPED_TRACE(""); // A trace without a message. 216 << "This failure is expected, and should contain trace point A."; 220 << "This failure is expected, and should contain trace point A and B." [all...] |
/external/chromium_org/testing/gtest/test/ |
gtest_output_test_.cc | 179 // There should be no trace before SCOPED_TRACE() is invoked. 180 ADD_FAILURE() << "This failure is expected, and shouldn't have a trace."; 183 SCOPED_TRACE("Expected trace"); 185 // the trace. 186 ADD_FAILURE() << "This failure is expected, and should have a trace."; 190 // should be no trace again. 191 ADD_FAILURE() << "This failure is expected, and shouldn't have a trace."; 217 SCOPED_TRACE(""); // A trace without a message. 228 << "This failure is expected, and should contain trace point A."; 232 << "This failure is expected, and should contain trace point A and B." [all...] |
/external/gtest/test/ |
gtest_output_test_.cc | 167 // There should be no trace before SCOPED_TRACE() is invoked. 168 ADD_FAILURE() << "This failure is expected, and shouldn't have a trace."; 171 SCOPED_TRACE("Expected trace"); 173 // the trace. 174 ADD_FAILURE() << "This failure is expected, and should have a trace."; 178 // should be no trace again. 179 ADD_FAILURE() << "This failure is expected, and shouldn't have a trace."; 205 SCOPED_TRACE(""); // A trace without a message. 216 << "This failure is expected, and should contain trace point A."; 220 << "This failure is expected, and should contain trace point A and B." [all...] |
/ndk/sources/third_party/googletest/googletest/test/ |
gtest_output_test_.cc | 179 // There should be no trace before SCOPED_TRACE() is invoked. 180 ADD_FAILURE() << "This failure is expected, and shouldn't have a trace."; 183 SCOPED_TRACE("Expected trace"); 185 // the trace. 186 ADD_FAILURE() << "This failure is expected, and should have a trace."; 190 // should be no trace again. 191 ADD_FAILURE() << "This failure is expected, and shouldn't have a trace."; 217 SCOPED_TRACE(""); // A trace without a message. 228 << "This failure is expected, and should contain trace point A."; 232 << "This failure is expected, and should contain trace point A and B." [all...] |
/external/antlr/antlr-3.4/runtime/Python/tests/ |
t047treeparser.py | 33 self.compileGrammar('t047treeparserWalker.g', options='-trace') 70 # -trace option), if this is the real list. For now I'm happy that 100 self.compileGrammar('t047treeparserWalker.g', options='-trace')
|
/external/chromium/base/debug/ |
trace_event.cc | 51 void TraceLog::Trace(const std::string& name, 59 Trace(name, type, id, WideToUTF8(extra), file, line); 62 void TraceLog::Trace(const std::string& name,
|
/external/chromium/base/win/ |
event_trace_consumer.h | 5 // Declaration of a Windows event trace consumer base class. 50 // Opens the event trace log in "file_name", which must be a full or 51 // relative path to an existing event trace log file.
|
/external/chromium/net/disk_cache/ |
storage_block-inl.h | 12 #include "net/disk_cache/trace.h" 120 Trace("Failed data load."); 132 Trace("Failed data store.");
|
/external/chromium-trace/trace-viewer/src/ |
tests.html | 87 <h1><a href='/src/tests.html'>Trace-Viewer Tests</a></h1> 95 View a trace file: 97 class="unittest-error-link">Trace viewer</a>
|
/external/chromium-trace/ |
update.py | 8 upstream_svn = 'http://trace-viewer.googlecode.com/svn/trunk/' 11 trace_viewer_dir = os.path.join(script_dir, 'trace-viewer') 15 help='use a local trace-viewer')
|
/external/chromium_org/base/win/ |
event_trace_consumer.h | 5 // Declaration of a Windows event trace consumer base class. 49 // Opens the event trace log in "file_name", which must be a full or 50 // relative path to an existing event trace log file.
|
/external/chromium_org/net/disk_cache/ |
trace.cc | 5 #include "net/disk_cache/trace.h" 108 void Trace(const char* format, ...) { 187 void Trace(const char* format, ...) {
|