HomeSort by relevance Sort by last modified time
    Searched full:trace (Results 401 - 425 of 3884) sorted by null

<<11121314151617181920>>

  /external/openssh/regress/
broken-pipe.sh 7 trace "protocol $p"
keyscan.sh 12 trace "keyscan type $t"
proto-mismatch.sh 12 trace "sshd prints ${banner}"
  /external/proguard/docs/manual/retrace/
introduction.html 16 When an obfuscated program throws an exception, the resulting stack trace
48 <td class="whiteblock">Readable stack trace</td>
50 <td class="whiteblock">Obfuscated stack trace</td>
55 ReTrace can read an obfuscated stack trace and restore it to what it would
usage.html 28 while obfuscating the application that produced the stack trace.</dd>
32 <dd>Optionally specifies the name of the file containing the stack trace. If
33 no file is specified, a stack trace is read from the standard input. Blank
47 stack trace. Specifying a different regular expression allows to
84 The restored stack trace is printed to the standard output. The completeness
85 of the restored stack trace depends on the presence of line number tables in
90 ReTrace will be able to restore the stack trace completely.
95 possible original method names for each line in the stack trace. The user
96 can then try to deduce the actual stack trace manually, based on the logic
  /frameworks/av/libvideoeditor/osal/src/
M4OSA_Random.c 19 * @brief Trace function for trace macros
20 * @note This file gives the implementation of the trace function used
21 * in the trace instrumentation macros
  /libcore/libart/src/main/java/dalvik/system/
VMStack.java 58 * Retrieves the stack trace from the specified thread.
62 * @return an array of stack trace elements, or null if the thread
63 * doesn't have a stack trace (e.g. because it exited)
68 * Retrieves a partial stack trace from the specified thread into
  /libcore/luni/src/test/java/libcore/java/lang/
ThreadTest.java 91 StackTraceElement trace = traces[traces.length - 2]; local
93 // Expect to find MyThread.doSomething in the trace
94 assertTrue(trace.getClassName().contains("ThreadTest")
95 && trace.getMethodName().equals("doSomething"));
  /packages/apps/Nfc/nxp/jni/
com_android_nfc_NativeLlcpConnectionlessSocket.cpp 36 TRACE("RECEIVE UI_FRAME FROM SAP %d OK \n", ssap);
80 TRACE("phLibNfc_Llcp_SendTo()");
94 TRACE("phLibNfc_Llcp_SendTo() returned 0x%04x[%s]", ret, nfc_jni_get_status_name(ret));
157 TRACE("phLibNfc_Llcp_RecvFrom(), Socket Handle = 0x%02x, Link LIU = %d", hLlcpSocket, linkMiu);
174 TRACE("phLibNfc_Llcp_RecvFrom() returned 0x%04x[%s]", ret, nfc_jni_get_status_name(ret));
189 TRACE("Data Received From SSAP = %d\n, length = %d", ssap, sReceiveBuffer.length);
211 TRACE("Close Connectionless socket");
216 TRACE("phLibNfc_Llcp_Close()");
222 TRACE("phLibNfc_Llcp_Close() returned 0x%04x[%s]", ret, nfc_jni_get_status_name(ret));
  /prebuilts/tools/common/proguard/proguard4.7/docs/manual/retrace/
usage.html 39 while obfuscating the application that produced the stack trace.</dd>
43 <dd>Optionally specifies the name of the file containing the stack trace. If
44 no file is specified, a stack trace is read from the standard input. Blank
58 stack trace. Specifying a different regular expression allows to
95 The restored stack trace is printed to the standard output. The completeness
96 of the restored stack trace depends on the presence of line number tables in
101 ReTrace will be able to restore the stack trace completely.</li>
105 possible original method names for each line in the stack trace. The user
106 can then try to deduce the actual stack trace manually, based on the logic
  /sdk/eclipse/plugins/com.android.ide.eclipse.ddms/src/com/android/ide/eclipse/ddms/systrace/
SystraceOutputParser.java 28 * parses it and generates html based on the trace */
30 private static final String TRACE_START = "TRACE:\n"; //$NON-NLS-1$
67 // locate the trace start marker within the first hundred bytes
72 throw new RuntimeException("Unable to find trace start marker 'TRACE:':\n" + header);
107 String trace = ""; local
124 trace = sb.toString();
126 trace = new String(mAtraceOutput, mSystraceIndex, mAtraceLength - mSystraceIndex);
130 String html_out = trace.replaceAll("\n", "\\\\n\\\\\n");
  /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/editors/
GLCallGroups.java 129 * @param trace trace to look at
137 public static List<GLCallNode> constructCallHierarchy(GLTrace trace, int start, int end,
139 if (trace == null) {
143 if (contextToGroup < 0 || contextToGroup > trace.getContexts().size()) {
144 return flatHierarchy(trace, start, end);
147 List<GLCall> calls = trace.getGLCalls();
192 private static List<GLCallNode> flatHierarchy(GLTrace trace, int start, int end) {
195 List<GLCall> calls = trace.getGLCalls();
  /sdk/eclipse/plugins/com.android.ide.eclipse.traceview/
plugin.xml 9 extensions="trace"
  /sdk/emulator/qtools/
read_trace.cpp 56 TraceReader<> *trace = new TraceReader<>; local
57 trace->Open(trace_filename);
58 trace->SetDemangle(demangle);
59 trace->ReadKernelSymbols(elf_file);
60 trace->SetRoot(root);
68 if (GetNextValidEvent(trace, &event, &ignored, &sym))
86 ProcessState *process = trace->GetCurrentProcess();
109 uint64_t sim_time = trace->ReadInsnTime(event.time);
163 delete trace;
  /external/webrtc/src/system_wrappers/source/
trace_impl.cc 76 kHighestPriority, "Trace")),
473 const char warning_msg[] = "WARNING MISSING TRACE MESSAGES\n";
739 void Trace::CreateTrace()
744 void Trace::ReturnTrace()
749 WebRtc_Word32 Trace::SetLevelFilter(WebRtc_UWord32 filter)
755 WebRtc_Word32 Trace::LevelFilter(WebRtc_UWord32& filter)
761 WebRtc_Word32 Trace::TraceFile(char fileName[FileWrapper::kMaxFileNameSize])
763 TraceImpl* trace = TraceImpl::GetTrace(); local
764 if(trace)
766 int retVal = trace->TraceFileImpl(fileName)
776 TraceImpl* trace = TraceImpl::GetTrace(); local
788 TraceImpl* trace = TraceImpl::GetTrace(); local
802 TraceImpl* trace = TraceImpl::GetTrace(level); local
    [all...]
  /external/webrtc/test/functional_test/
webrtc_test.html 55 function trace(txt) {
62 trace(wtxt);
67 trace(etxt);
71 trace("Changing call state: " + callState + " -> " + state);
89 trace("User has granted access to local media. url = " + url);
103 trace("Requested access to local media");
211 trace("Creating PeerConnection object");
228 trace("Adding stream");
236 trace("Sending BYE to " + remoteName + " (ID " + remoteId + ")");
242 trace("Stopping showing remote stream")
    [all...]
  /external/blktrace/
blkiomon.c 2 * I/O monitor based on block queue trace data
44 struct trace { struct
47 struct trace *next;
79 static struct trace *vacant_traces_list = NULL;
83 struct trace *thash[TRACE_HASH_SIZE] = {};
106 static void dump_bit(struct trace *t, const char *descr)
129 static void dump_bits(struct trace *t1, struct trace *t2, const char *descr)
338 static struct trace *blkiomon_alloc_trace(void)
340 struct trace *t = vacant_traces_list
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/examples/peerconnection/server/
server_test.html 14 function trace(txt) {
20 trace("Server notification: " + data);
33 trace(str);
73 trace("server error: " + hangingGet.statusText);
92 trace("Hanging get error: " + e.description);
104 trace("error" + e.description);
109 trace("hanging get timeout. issuing again.");
122 trace("My id: " + my_id);
125 trace("Peer " + i + ": " + peers[i]);
135 trace("error: " + e.description)
    [all...]
  /external/dropbear/
cli-session.c 142 TRACE(("enter cli_sessionloop"))
154 TRACE(("leave cli_sessionloop: done with KEXINIT_RCVD"))
166 TRACE(("leave cli_sessionloop: kex_state != KEX_NOTHING"))
173 TRACE(("XXX XXX might be bad! leave cli_sessionloop: haven't donefirstkex"))
184 TRACE(("leave cli_sessionloop: sent userauth service req"))
191 TRACE(("leave cli_sessionloop: sent userauth methods req"))
197 TRACE(("leave cli_sessionloop: cli_auth_try"))
204 TRACE(("leave cli_sessionloop: sent ssh-connection service req"))
209 TRACE(("leave cli_sessionloop: cli_send_chansess_request"))
241 TRACE(("leave cli_sessionloop: running")
    [all...]
  /frameworks/testing/uiautomator/library/core-src/com/android/uiautomator/core/
Tracer.java 33 * that needs to be traced should include a call to Tracer.trace in the
46 * Enum that determines where the trace output goes. It can go to either
101 * parameters before the trace is collected.
113 * Sets where the trace output will go. Can be either be logcat or a file or
126 "attempting write trace to a file");
137 "attempting write trace to a file");
195 * trace. The trace will include the method thats is being called, it's
198 * output a trace entry. Only calls from outise the UiAutomator package will
202 * to this function. Like String[] or Integer[]. The trace function will print thei
209 public static void trace(Object... arguments) { method in class:Tracer
    [all...]
  /hardware/ti/omap4xxx/domx/mm_osal/inc/
timm_osal_trace.h 61 * Debug Trace defines
79 * The OSAL debug trace level can be set at runtime by defining the environment
82 * Level 0 - No trace
87 * Level 5 - Trace ["ENTERING <function>" and "EXITING <function>" statements]
94 * Information about the trace location/type, passed as a single pointer to
95 * internal trace function. Not part of the public API
107 * Trace implementation function. Not part of public API. Default
109 * alternative trace system at runtime.
115 * Internal trace macro. Not part of public API.
153 ** New Trace to be used by Application
    [all...]
  /external/chromium_org/v8/src/
jsregexp.h 338 friend class Trace;
467 class Trace;
597 virtual void Emit(RegExpCompiler* compiler, Trace* trace) = 0;
610 Trace* trace,
670 // start of the trace) then it cannot be reused. This variable sets a limit
672 // trace and generating generic code for a node that can be reused by flushing
673 // the deferred actions in the current trace and generating a goto.
688 LimitResult LimitVersions(RegExpCompiler* compiler, Trace* trace)
    [all...]
  /frameworks/base/graphics/java/android/renderscript/
Allocation.java 31 import android.os.Trace;
372 Trace.traceBegin(RenderScript.TRACE_TAG, "syncAll");
393 Trace.traceEnd(RenderScript.TRACE_TAG);
404 Trace.traceBegin(RenderScript.TRACE_TAG, "ioSend");
411 Trace.traceEnd(RenderScript.TRACE_TAG);
428 Trace.traceBegin(RenderScript.TRACE_TAG, "ioReceive");
435 Trace.traceEnd(RenderScript.TRACE_TAG);
444 Trace.traceBegin(RenderScript.TRACE_TAG, "copyFrom");
456 Trace.traceEnd(RenderScript.TRACE_TAG);
522 Trace.traceBegin(RenderScript.TRACE_TAG, "copyFromUnchecked")
    [all...]
  /build/target/product/
embedded.mk 81 system/core/rootdir/init.trace.rc:root/init.trace.rc \
  /cts/tools/tradefed-host/tests/src/com/android/cts/tradefed/result/
CtsXmlResultReporterTest.java 136 final String trace = "this is a trace\nmore trace\nyet more trace"; local
140 mResultReporter.testFailed(TestFailure.FAILURE, testId, trace);
150 "<FailedScene message=\"this is a trace&#10;more trace\"> " +
151 "<StackTrace>this is a tracemore traceyet more trace</StackTrace>";

Completed in 686 milliseconds

<<11121314151617181920>>