HomeSort by relevance Sort by last modified time
    Searched refs:trace (Results 51 - 75 of 201) sorted by null

1 23 4 5 6 7 8 9

  /external/quake/quake/src/WinQuake/
gl_test.cpp 50 trace_t trace; local
52 // fill in a default trace
53 memset (&trace, 0, sizeof(trace_t));
54 trace.fraction = 1;
55 trace.allsolid = true;
56 VectorCopy (end, trace.endpos);
58 SV_RecursiveHullCheck (cl.worldmodel->hulls, 0, 0, 1, start, end, &trace);
60 junk = trace.plane;
pr_cmds.cpp 612 trace_t trace; local
621 trace = SV_Move (v1, vec3_origin, vec3_origin, v2, nomonsters, ent);
623 pr_global_struct->trace_allsolid = trace.allsolid;
624 pr_global_struct->trace_startsolid = trace.startsolid;
625 pr_global_struct->trace_fraction = trace.fraction;
626 pr_global_struct->trace_inwater = trace.inwater;
627 pr_global_struct->trace_inopen = trace.inopen;
628 VectorCopy (trace.endpos, pr_global_struct->trace_endpos);
629 VectorCopy (trace.plane.normal, pr_global_struct->trace_plane_normal);
630 pr_global_struct->trace_plane_dist = trace.plane.dist;
643 trace_t trace; local
1193 trace_t trace; local
    [all...]
sv_phys.cpp 225 If steptrace is not NULL, the trace of any vertical wall hit will be stored
238 trace_t trace; local
260 trace = SV_Move (ent->u.v.origin, ent->u.v.mins, ent->u.v.maxs, end, false, ent);
262 if (trace.allsolid)
268 if (trace.fraction > 0)
270 VectorCopy (trace.endpos, ent->u.v.origin);
275 if (trace.fraction == 1)
278 if (!trace.ent)
279 Sys_Error ("SV_FlyMove: !trace.ent");
281 if (trace.plane.normal[2] > 0.7
410 trace_t trace; local
1247 trace_t trace; local
1571 trace_t trace; local
    [all...]
  /frameworks/base/core/java/android/ddm/
DdmHandleThread.java 132 StackTraceElement[] trace = DdmVmInternal.getStackTraceById(threadId); local
133 if (trace == null) {
134 return createFailChunk(1, "Stack trace unavailable");
136 return createStackChunk(trace, threadId);
146 private Chunk createStackChunk(StackTraceElement[] trace, int threadId) {
152 for (StackTraceElement elem : trace) {
164 out.putInt(trace.length);
165 for (StackTraceElement elem : trace) {
  /sdk/emulator/qtools/
stack_dump.cpp 112 TraceReaderType *trace = new TraceReaderType; local
113 trace->Open(qemu_trace_file);
114 trace->ReadKernelSymbols(elf_file);
115 trace->SetRoot(root);
122 if (GetNextValidEvent(trace, &event, &ignored, &function))
132 pStack = new CallStackType(event.pid, kNumStackFrames, trace);
154 delete trace;
read_pid.cpp 13 TraceReaderBase *trace = new TraceReaderBase; local
14 trace->Open(trace_filename);
18 if (trace->ReadPidEvent(&event))
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);
  /frameworks/base/core/java/com/android/internal/http/multipart/
FilePart.java 191 LOG.trace("enter sendDispositionHeader(OutputStream out)");
210 LOG.trace("enter sendData(OutputStream out)");
239 LOG.trace("enter getSource()");
250 LOG.trace("enter lengthOfData()");
Part.java 204 LOG.trace("enter sendStart(OutputStream out)");
217 LOG.trace("enter sendDispositionHeader(OutputStream out)");
230 LOG.trace("enter sendContentTypeHeader(OutputStream out)");
252 LOG.trace("enter sendTransferEncodingHeader(OutputStream out)");
267 LOG.trace("enter sendEndOfHeader(OutputStream out)");
293 LOG.trace("enter sendEnd(OutputStream out)");
306 LOG.trace("enter send(OutputStream out)");
326 LOG.trace("enter length()");
419 LOG.trace("getLengthOfParts(Parts[])");
StringPart.java 126 LOG.trace("enter sendData(OutputStream)");
137 LOG.trace("enter lengthOfData()");
  /dalvik/tools/dmtracedump/
Android.mk 4 # Java method trace dump tool
  /dalvik/tools/dmtracedump/tests/filters/
run_tests.sh 8 *Trace) continue; ;;
14 # create_test_dmtrace $file tmp.trace
15 dmtracedump -f testFilters -h "$file"Trace > tmp.html 2> /dev/null
28 rm tmp.trace
  /external/blktrace/btt/
Android.mk 7 latency.c misc.c output.c proc.c seek.c trace.c \
  /dalvik/hit/src/com/android/hit/
Heap.java 69 StackTrace trace = mTraces.get(traceSerialNumber); local
71 if (trace != null) {
72 trace = trace.fromDepth(depth);
75 return trace;
  /external/quake/quake/src/QW/server/
sv_phys.c 234 If steptrace is not NULL, the trace of any vertical wall hit will be stored
247 trace_t trace; local
266 trace = SV_Move (ent->v.origin, ent->v.mins, ent->v.maxs, end, false, ent);
268 if (trace.allsolid)
274 if (trace.fraction > 0)
276 VectorCopy (trace.endpos, ent->v.origin);
281 if (trace.fraction == 1)
284 if (!trace.ent)
285 SV_Error ("SV_FlyMove: !trace.ent");
287 if (trace.plane.normal[2] > 0.7
399 trace_t trace; local
714 trace_t trace; local
    [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...]
  /dalvik/dx/src/junit/framework/
TestFailure.java 44 public String trace() { method in class:TestFailure
  /dalvik/libcore/junit/src/main/java/junit/framework/
TestFailure.java 44 public String trace() { method in class:TestFailure
  /external/junit/src/junit/framework/
TestFailure.java 44 public String trace() { method in class:TestFailure
  /cts/tests/tests/view/src/android/view/cts/
ViewDebugTest.java 52 method = "trace",
72 ViewDebug.trace(view, RecyclerTraceType.NEW_VIEW, 0, 1);
84 method = "trace",
110 ViewDebug.trace(v2, HierarchyTraceType.INVALIDATE);
  /dalvik/libcore/luni/src/test/java/com/google/coretests/
CoreTestResult.java 134 StackTraceElement[] trace = thread.getStackTrace(); local
144 timeout.setStackTrace(trace);
  /external/webkit/WebCore/page/
Console.idl 45 [CustomArgumentHandling] void trace();
  /external/jdiff/src/jdiff/
APIComparator.java 71 if (trace)
96 if (trace)
129 if (trace)
151 if (trace)
178 if (trace)
202 if (trace)
232 if (trace)
244 if (trace)
308 if (trace) {
348 if (trace)
933 private boolean trace = false; field in class:APIComparator
    [all...]
  /external/v8/src/
jsregexp.cc 592 // manipulation in an object called the Trace. The Trace object can record a
595 // to be emitted it can flush the Trace or update it. Flushing the Trace
604 // The virtual state found in the Trace affects code generation. For example
608 // string. Therefore code generated for a non-trivial trace is specialized
609 // to that trace. The code generator therefore has the ability to generate
613 // trace is flushed and a generic version of the code for a node is emitted.
615 // trace is not recorded in the node and so it cannot currently be reused in
616 // the event that code generation is requested for an identical trace
    [all...]
  /external/quake/quake/src/QW/client/
cl_cam.c 154 pmtrace_t trace; local
164 trace = Cam_DoTrace(player->origin, v);
165 if (/*trace.inopen ||*/ trace.inwater)
167 VectorCopy(trace.endpos, vec);
168 VectorSubtract(trace.endpos, player->origin, v);
173 VectorSubtract(trace.endpos, self->origin, v);
176 trace = Cam_DoTrace(self->origin, vec);
177 if (trace.fraction != 1 || trace.inwater
186 pmtrace_t trace; local
    [all...]

Completed in 638 milliseconds

1 23 4 5 6 7 8 9