/hardware/ti/omap3/dspbridge/inc/ |
gt.h | 21 * There are two definitions that affect which portions of trace 23 * GT_TRACE is set to 0 then all trace statements (except for assertions) 31 *! 02-Feb-2000 rr: Renamed this file to gtce.h. GT CLASS and trace definitions 41 #define GT_TRACE 0 /* 0 = "trace compiled out"; 1 = "trace active" */ 129 * branch testing using trace. For example, 171 * sets trace mask according to settings
|
/sdk/emulator/qtools/ |
bbprof.cpp | 70 TraceReaderBase *trace = new TraceReaderBase; local 71 trace->Open(trace_filename); 72 TraceHeader *header = trace->GetHeader(); 80 trace->ReadStatic(&blocks[ii].bb); 87 trace->ReadStaticInsns(num_insns, blocks[ii].insns); 103 if (trace->ReadBB(&event)) 116 uint32_t sim_time = trace->ReadInsnTime(event.time);
|
/external/v8/tools/ |
ll_prof.py | 55 This will produce a binary trace file (perf.data) that %prog can analyse. 67 $ %prog --log=foo.log --snapshot-log=snap-foo.log --trace=foo.data --snapshot 486 """Descriptor of a structure in the binary trace log.""" 504 def Read(self, trace, offset): 505 return self.ctype.from_buffer(trace, offset) 601 """Perf (linux-2.6/tools/perf) trace file reader.""" 607 self.trace = mmap.mmap(self.trace_file.fileno(), 0, mmap.MAP_PRIVATE) 608 self.trace_header = TRACE_HEADER_DESC.Read(self.trace, 0) 610 print >>sys.stderr, "Warning: unsupported trace header magic" 613 assert self.limit <= self.trace.size(), [all...] |
/dalvik/vm/alloc/TEST/HeapBitmapTest/ |
main.c | 17 #define TRACE(...) printf(__VA_ARGS__) 19 #define TRACE(...) /**/ 400 TRACE("walk 0\n"); 407 TRACE("walk 1\n"); 414 TRACE("walk 2\n"); 433 TRACE("walk 3\n"); 442 TRACE("walk 4\n"); 451 TRACE("walk 5\n"); 457 TRACE("walk 6\n");
|
/hardware/ti/omap3/omx/system/src/openmax_il/perf/tests/ |
perf_unittest.c | 280 create_config_file("trace_file = " INVALID_PATH "trace\nmask = 0xFFFFFFFF\n"); 281 test_PERF("invalid trace file"); 286 create_config_file("trace_file = " INVALID_PATH "trace\ndelayed_open = 1\nmask = 0xFFFFFFFF\n"); 287 test_PERF("invalid trace file + delayed open"); 291 test_PERF("large trace buffer size"); 320 /* trace output */ 322 test_PERF("TRACE"); 324 /* trace, FILE and debug output */ 326 test_PERF("FILE, TRACE and DEBUG");
|
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/lang/ |
ThrowableTest.java | 99 private String fixStacktrace(String trace) { 103 while (lastIndex < trace.length()) { 104 int index = trace.indexOf('\n', lastIndex); 106 index = trace.length(); 107 String line = trace.substring(lastIndex, index);
|
/external/llvm/lib/Support/ |
PrettyStackTrace.cpp | 45 /// PrintCurStackTrace - Print the current stack trace to the specified stream. 47 // Don't print an empty trace. 74 /// process, it prints the pretty stack trace. 77 // On non-apple systems, just emit the crash stack trace to stderr. 119 "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...] |
/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/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/libvpx/libvpx/third_party/googletest/src/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/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/importer/linux_perf/ |
android_parser.js | 6 * @fileoverview Parses trace_marker events that were inserted in the trace by 15 * Parses linux trace mark events that were inserted in the trace by userland.
|
/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/dropbear/ |
debug.h | 36 /* Define this to compile in trace debugging printf()s. 65 #define TRACE(X) dropbear_trace X; 67 #define TRACE(X)
|
/external/emma/core/java12/com/vladium/logging/ |
ILogLevels.java | 38 /** debug trace log level */ 40 /** finer debug trace log level */ 42 /** finest debug trace log level */
|
/external/libnfc-nci/src/nfc/include/ |
ce_api.h | 255 ** Description This function sets the trace level for Card Emulation mode. 257 ** it simply returns the current trace level. 259 ** Returns The new or current trace level
|
/external/libnfc-nci/src/nfc/llcp/ |
llcp_main.c | 179 ** Description This function sets the trace level for LLCP. If called with 180 ** a value of 0xFF, it simply returns the current trace level. 182 ** Returns The new or current trace level
|