HomeSort by relevance Sort by last modified time
    Searched full:trace (Results 226 - 250 of 2719) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/icu4c/common/
utracimp.h 20 * - using a trace level variable to only call trace functions
27 * implementations for the trace functions
28 * - ICU trace macros call ICU functions that route through the function
50 * Trace level variable. Negative for "off".
86 * Trace function for the entry point of a function.
95 * Trace function for each exit point of a function.
107 * Trace function used inside functions that have a UTRACE_ENTRY() statement.
112 * @param level The trace level for this message.
113 * @param fmt The trace format string
    [all...]
  /packages/apps/Nfc/nxp/jni/
com_android_nfc_NativeNfcManager.cpp 152 TRACE("phLibNfc_Mgt_DeInitialize() (download)");
174 TRACE("Deinitialization SUCCESS (download)");
184 TRACE("phLibNfc_Mgt_Initialize()");
193 TRACE("phLibNfc_Mgt_Initialize() returned 0x%04x[%s]", status, nfc_jni_get_status_name(status));
248 TRACE("phLibNfc_Mgt_ConfigureDriver(0x%08x)", gDrvCfg.nClientId);
260 TRACE("phLibNfc_Mgt_ConfigureDriver() returned 0x%04x[%s]", status, nfc_jni_get_status_name(status));
280 TRACE("phLibNfc_Mgt_UnConfigureDriver()");
352 TRACE("phLibNfc_Mgt_Initialize()");
362 TRACE("phLibNfc_Mgt_Initialize returned 0x%04x[%s]", status, nfc_jni_get_status_name(status));
406 TRACE("Firmware version not UpToDate")
    [all...]
com_android_nfc_NativeP2pDevice.cpp 144 TRACE("phLibNfc_RemoteDev_Connect(P2P)");
153 TRACE("phLibNfc_RemoteDev_Connect(P2P) returned 0x%04x[%s]", status, nfc_jni_get_status_name(status));
172 TRACE("General Bytes Length = %d", sGeneralBytes.length);
173 TRACE("General Bytes =");
176 TRACE("0x%02x ", sGeneralBytes.buffer[i]);
218 TRACE("Disconnecting from target (handle = 0x%x)", handle);
225 TRACE("phLibNfc_RemoteDev_Disconnect()");
244 TRACE("phLibNfc_RemoteDev_Disconnect() returned 0x%04x[%s]", status, nfc_jni_get_status_name(status));
291 TRACE("Transceive data to target (handle = 0x%x)", handle);
296 TRACE("Buffer Length = %d\n", buflen)
    [all...]
  /external/dropbear/
signkey.c 97 TRACE(("enter buf_get_pub_key"))
133 TRACE(("leave buf_get_pub_key"))
149 TRACE(("enter buf_get_priv_key"))
156 TRACE(("wrong key type: %d %d", *type, keytype))
186 TRACE(("leave buf_get_priv_key"))
197 TRACE(("enter buf_put_pub_key"))
219 TRACE(("leave buf_put_pub_key"))
225 TRACE(("enter buf_put_priv_key"))
226 TRACE(("type is %d", type))
231 TRACE(("leave buf_put_priv_key: dss done")
    [all...]
svr-chansession.c 70 TRACE(("sesscheckclose, pid is %d", chansess->exit.exitpid))
90 TRACE(("enter sigchld handler"))
92 TRACE(("sigchld handler: pid %d", pid))
98 TRACE(("found match session"));
107 TRACE(("using lastexit"));
141 TRACE(("leave sigchld handler"))
186 TRACE(("send_msg_chansess_exitsignal %d", chansess->exit.exitsignal))
259 TRACE(("enter closechansess"))
264 TRACE(("leave closechansess: chansess == NULL"))
296 TRACE(("closing pid %d", svr_ses.childpids[i].pid)
    [all...]
  /external/linux-tools-perf/Documentation/
perf-script-perl.txt 6 perf-script-perl - Process trace data with a Perl script
18 displays the results of the trace analysis implemented in the given
25 -g perl' in the same directory as an existing perf.data trace file.
27 the event types in the trace file; it simply prints every available
28 field for each event in the trace file.
39 When perf script is invoked using a trace script, a user-defined
40 'handler function' is called for each event in the trace. If there's
108 every event in a trace, which covers 90% of what you need to know to
109 write a useful trace script. The sections below cover the rest.
121 use Perf::Trace::Core
    [all...]
  /build/tools/
parsedeps.py 54 def trace(self, tgt, prereq): member in class:Dependencies
63 return d.trace
72 d.trace = result
78 print " trace TARGET PREREQ Print the paths from TARGET to PREREQ"
122 elif len(split) == 3 and cmd == "trace":
127 trace = deps.trace(tgt, prereq)
128 if trace:
130 for g in trace:
134 for g in trace
    [all...]
  /dalvik/vm/native/
dalvik_system_VMStack.cpp 74 * Get an array with the stack trace in it.
130 * Return a trace buffer for the specified thread or NULL if the
132 * non-NULL trace buffer. Caller is responsible for freeing the trace
160 * Suspend the thread, pull out the stack trace, then resume the thread
162 * our own stack trace, skip the suspend/resume.
177 * Retrieve the stack trace of the specified thread and return it as an
193 ArrayObject* trace = dvmGetStackTraceRaw(traceBuf, stackDepth); local
195 RETURN_PTR(trace);
201 * Retrieve a partial stack trace of the specified thread and retur
    [all...]
  /external/chromium/base/debug/
trace_event.h 5 // Trace events to track application performance. Events consist of a name
12 // trace report. In the future, it may use another mechansim to facilitate
55 base::debug::TraceLog::GetInstance()->Trace( \
66 base::debug::TraceLog::GetInstance()->Trace( \
76 base::debug::TraceLog::GetInstance()->Trace( \
103 // Start logging trace events.
105 // Stop logging trace events.
108 // Log a trace event of (name, type, id) with the optional extra string.
109 void Trace(const std::string& name,
115 void Trace(const std::string& name
    [all...]
  /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$
35 + "<title>Android System Trace</title>\n"
103 // locate the trace start marker within the first hundred bytes
108 throw new RuntimeException("Unable to find trace start marker 'TRACE:':\n" + header);
143 String trace = ""; local
160 trace = sb.toString();
162 trace = new String(mAtraceOutput, mSystraceIndex, mAtraceLength - mSystraceIndex);
166 String html_out = trace.replaceAll("\n", "\\\\n\\\\\n")
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/
GLTraceCollectorDialog.java 40 /** Dialog displayed while the trace is being streamed from device to host. */
42 private static final String TITLE = "OpenGL ES Trace";
43 private static final String DEFAULT_MESSAGE = "Trace collection in progress.";
85 controlGroup.setText("Trace Options");
113 "OpenGL ES Trace",
114 "Error while setting trace options: " + e.getMessage());
135 statusGroup.setText("Trace Status");
140 createLabel(statusGroup, "Trace File Size:");
149 new Thread(mRefreshTask, "Trace Status Refresh Thread").start();
183 /** Periodically refresh the trace status. *
    [all...]
TraceFileWriter.java 28 /** A class that streams data received from a socket into the trace file. */
38 * Construct a trace file writer.
39 * @param fos output stream to write trace data to
40 * @param is input stream from which trace data is read
50 mReceiverThread.setName("GL Trace Receiver");
78 * The GLTraceReceiverTask collects trace data from the device and writes it
  /sdk/emulator/qtools/
q2dm.cpp 145 TraceReaderType *trace = new TraceReaderType; local
146 trace->Open(qemu_trace_file);
147 trace->SetDemangle(demangle);
148 trace->ReadKernelSymbols(elf_file);
149 trace->SetRoot(root);
150 TraceHeader *qheader = trace->GetHeader();
163 kernelStack = new CallStackType(kernelPid, kNumStackFrames, trace);
173 if (GetNextValidEvent(trace, &event, &ignored, &function))
209 pStack = new CallStackType(event.pid, kNumStackFrames, trace);
211 const char *name = trace->GetProcessName(event.pid)
    [all...]
  /libcore/dalvik/src/main/java/dalvik/system/profiler/
BinaryHprofReader.java 40 private static final boolean TRACE = false;
117 if (TRACE) {
130 if (TRACE) {
138 if (TRACE) {
148 if (TRACE) {
173 if (TRACE) {
227 if (TRACE) {
240 if (TRACE) {
253 if (TRACE) {
278 // serial number apparently not a stack trace id. (int vs ID
    [all...]
  /external/chromium-trace/
systrace.py 9 This is a tool for capturing a trace that includes data from both userland and
10 the kernel. It creates an HTML file for visualizing the trace.
69 default='trace.html', metavar='FILE')
71 help='trace for N seconds', metavar='N')
73 help='use a trace buffer size of N KB', metavar='N')
75 help='specify a comma-separated list of kernel functions to trace')
86 help='read the trace from a file (compressed) rather than running a live trace')
87 parser.add_option('--asset-dir', dest='asset_dir', default='trace-viewer',
108 parser.error('the trace time must be a positive number'
    [all...]
  /external/bluetooth/bluedroid/main/
bte_logmsg.c 40 /* always enable trace framework */
190 /* map by default BTE trace levels onto android trace levels */
351 ** Purpose: set or reads the different Trace Levels of layer IDs (see bt_trace.h,
354 ** Input Parameters: Array with trace layers to set to a given level or read. a layer ID of 0
359 ** input array with trace levels for given layer id
375 printf("BTA_SysSetTraceLevel - trace id in map start = %d end= %d, paramter id = %d\r\n", p_f_map->layer_id_start, p_f_map->layer_id_end, p_l->layer_id );
397 /* set/read next trace level by getting out ot map loop */
506 /* read and set trace levels by calling the different XXX_SetTraceLevel().
525 ALOGI("[bttrc] using compile default trace settings")
    [all...]
  /external/clang/tools/libclang/
CLog.h 42 bool Trace;
57 bool trace = isStackTracingEnabled()) {
59 return new Logger(name, trace);
63 explicit Logger(llvm::StringRef name, bool trace)
64 : Name(name), Trace(trace), LogOS(Msg) { }
  /external/linux-tools-perf/scripts/perl/
check-perf-trace.pl 10 use lib "$ENV{'PERF_EXEC_PATH'}/scripts/perl/Perf-Trace-Util/lib";
11 use lib "./Perf-Trace-Util/lib";
12 use Perf::Trace::Core;
13 use Perf::Trace::Context;
14 use Perf::Trace::Util;
62 # print trace fields not included in handler args
  /external/openssh/regress/
agent.sh 11 trace "start agent"
21 trace "overwrite authorized keys"
46 trace "simple connect via agent"
54 trace "agent forwarding"
67 trace "delete all agent keys"
73 trace "kill agent"
  /external/quake/quake/src/QW/server/
sv_move.c 40 trace_t trace; local
74 trace = SV_Move (start, vec3_origin, vec3_origin, stop, true, ent);
76 if (trace.fraction == 1.0)
78 mid = bottom = trace.endpos[2];
87 trace = SV_Move (start, vec3_origin, vec3_origin, stop, true, ent);
89 if (trace.fraction != 1.0 && trace.endpos[2] > bottom)
90 bottom = trace.endpos[2];
91 if (trace.fraction == 1.0 || mid - trace.endpos[2] > STEPSIZE
114 trace_t trace; local
    [all...]
  /external/quake/quake/src/WinQuake/
sv_move.cpp 40 trace_t trace; local
74 trace = SV_Move (start, vec3_origin, vec3_origin, stop, true, ent);
76 if (trace.fraction == 1.0)
78 mid = bottom = trace.endpos[2];
87 trace = SV_Move (start, vec3_origin, vec3_origin, stop, true, ent);
89 if (trace.fraction != 1.0 && trace.endpos[2] > bottom)
90 bottom = trace.endpos[2];
91 if (trace.fraction == 1.0 || mid - trace.endpos[2] > STEPSIZE
114 trace_t trace; local
    [all...]
  /external/blktrace/doc/
blktrace.8 16 major components: a kernel component, a utility to record the i/o trace
18 trace information. This man page describes blktrace, which records the i/o event
19 trace information for a specific block device to a file.
75 a running trace -- via the \fB\-k\fR option.
112 Adds \fIdev\fR as a device to trace
119 Adds the devices found in \fIfile\fR as devices to trace
126 Kill on-going trace
190 \fInotify\fR: trace messages
206 To trace the i/o on the device \fI/dev/hda\fR and parse the output to human
219 To trace the i/o on a device and save the output for later processing wit
    [all...]
  /external/libnfc-nci/halimpl/bcm2079x/include/
OverrideLog.h 55 ** BT_TRACE_LEVEL_NONE 0 * No trace messages to be generated
56 ** BT_TRACE_LEVEL_ERROR 1 * Error condition trace messages
57 ** BT_TRACE_LEVEL_WARNING 2 * Warning condition trace messages
  /external/libnfc-nci/src/include/
OverrideLog.h 55 ** BT_TRACE_LEVEL_NONE 0 * No trace messages to be generated
56 ** BT_TRACE_LEVEL_ERROR 1 * Error condition trace messages
57 ** BT_TRACE_LEVEL_WARNING 2 * Warning condition trace messages
  /external/linux-tools-perf/scripts/perl/Perf-Trace-Util/lib/Perf/Trace/
Util.pm 1 package Perf::Trace::Util;
68 Perf::Trace::Util - Perl extension for perf script
72 use Perf::Trace::Util;

Completed in 307 milliseconds

1 2 3 4 5 6 7 8 91011>>