Searched refs:tracer (Results 1 - 25 of 45) sorted by relevance

12

/external/chromium/base/
H A Dfile_descriptor_shuffle_unittest.cc74 InjectionTracer tracer; local
76 EXPECT_TRUE(PerformInjectiveMultimap(map, &tracer));
77 EXPECT_EQ(0u, tracer.actions().size());
82 InjectionTracer tracer; local
85 EXPECT_TRUE(PerformInjectiveMultimap(map, &tracer));
86 EXPECT_EQ(0u, tracer.actions().size());
91 InjectionTracer tracer; local
94 EXPECT_TRUE(PerformInjectiveMultimap(map, &tracer));
95 EXPECT_EQ(0u, tracer.actions().size());
100 InjectionTracer tracer; local
110 InjectionTracer tracer; local
122 InjectionTracer tracer; local
133 InjectionTracer tracer; local
145 InjectionTracer tracer; local
160 InjectionTracer tracer; local
175 InjectionTracer tracer; local
190 InjectionTracer tracer; local
205 InjectionTracer tracer; local
217 InjectionTracer tracer; local
230 InjectionTracer tracer; local
243 InjectionTracer tracer; local
[all...]
/external/chromium_org/base/posix/
H A Dfile_descriptor_shuffle_unittest.cc71 InjectionTracer tracer; local
73 EXPECT_TRUE(PerformInjectiveMultimap(map, &tracer));
74 EXPECT_EQ(0u, tracer.actions().size());
79 InjectionTracer tracer; local
82 EXPECT_TRUE(PerformInjectiveMultimap(map, &tracer));
83 EXPECT_EQ(0u, tracer.actions().size());
88 InjectionTracer tracer; local
91 EXPECT_TRUE(PerformInjectiveMultimap(map, &tracer));
92 EXPECT_EQ(0u, tracer.actions().size());
97 InjectionTracer tracer; local
107 InjectionTracer tracer; local
119 InjectionTracer tracer; local
130 InjectionTracer tracer; local
142 InjectionTracer tracer; local
157 InjectionTracer tracer; local
172 InjectionTracer tracer; local
187 InjectionTracer tracer; local
202 InjectionTracer tracer; local
214 InjectionTracer tracer; local
227 InjectionTracer tracer; local
240 InjectionTracer tracer; local
[all...]
/external/chromium_org/chrome/test/functional/tracing/
H A Dtracing_smoke_test.py8 import tracer namespace
15 self._tracer_factory = tracer.TracerFactory(self)
19 tracer = self._tracer_factory.Produce()
20 tracer.BeginTracing()
21 model = tracer.EndTracing()
25 """Check that we can run multiple traces on the same tracer."""
26 tracer = self._tracer_factory.Produce()
27 tracer.BeginTracing()
28 model1 = tracer.EndTracing()
29 tracer
[all...]
/external/jmonkeyengine/engine/src/test/jme3test/collision/
H A DTestRayCasting.java45 private RayTrace tracer; field in class:TestRayCasting
84 tracer = new RayTrace(rootNode, cam, 160, 128);
85 tracer.show();
86 tracer.update();
92 tracer.update();
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/coverage/
H A Dcollector.py7 from coverage.tracer import CTracer
14 """Python implementation of the raw data tracer."""
30 # used to force the use of this tracer.
182 """Return the class name of the tracer we're using."""
201 tracer = self._trace_class()
202 tracer.data = self.data
203 tracer.arcs = self.branch
204 tracer.should_trace = self.should_trace
205 tracer.should_trace_cache = self.should_trace_cache
206 tracer
[all...]
/external/chromium/base/debug/
H A Ddebugger_posix.cc121 StringPiece tracer("TracerPid:\t");
123 StringPiece::size_type pid_index = status.find(tracer);
128 pid_index += tracer.size();
/external/chromium_org/third_party/tcmalloc/chromium/src/
H A Dstacktrace_android-inl.h69 static _Unwind_Reason_Code tracer(__unwind_context* context, void* arg) { function
119 _Unwind_Backtrace(tracer, &state);
/external/jmonkeyengine/engine/src/terrain/com/jme3/terrain/geomipmap/picking/
H A DBresenhamTerrainPicker.java69 private final BresenhamYUpGridTracer tracer = new BresenhamYUpGridTracer(); field in class:BresenhamTerrainPicker
92 tracer.getGridSpacing().set(patch.getWorldScale());
93 tracer.setGridOrigin(patch.getWorldTranslation());
97 tracer.startWalk(workRay);
100 final Vector2f loc = tracer.getGridLocation();
102 if (tracer.isRayPerpendicularToGrid()) {
135 Direction d = tracer.getLastStepDirection();
159 tracer.next();
/external/chromium_org/base/debug/
H A Ddebugger_posix.cc167 StringPiece tracer("TracerPid:\t");
169 StringPiece::size_type pid_index = status.find(tracer);
174 pid_index += tracer.size();
H A Dtrace_event_unittest.cc1256 TraceLog* tracer = TraceLog::GetInstance(); local
1259 EXPECT_EQ(0u, tracer->GetEventsSize());
1270 size_t num_events = tracer->GetEventsSize();
1272 const TraceEvent& event1 = tracer->GetEventAt(num_events - 2);
1273 const TraceEvent& event2 = tracer->GetEventAt(num_events - 1);
1294 size_t num_events = tracer->GetEventsSize();
1296 const TraceEvent& event1 = tracer->GetEventAt(num_events - 2);
1297 const TraceEvent& event2 = tracer->GetEventAt(num_events - 1);
/external/blktrace/
H A Dbtrace.spec20 Summary: Block IO tracer
H A Dblktrace.c102 * Each tracer will have a tracer_devpath_head that it will add new
119 * For piped output to stdout we will have each tracer thread (one per dev)
126 * dp_entries. (When dp_entries is 0, and a tracer adds an entry it will
130 * adb: It may be better just to have a large buffer per tracer per dev,
163 struct tracer { struct
299 * tracer threads add entries, the main thread takes them off and processes
326 static int (*handle_pfds)(struct tracer *, int, int);
538 static void tracer_wait_unblock(struct tracer *tp)
546 static void tracer_signal_ready(struct tracer *tp,
1456 static inline int net_sendfile_data(struct tracer *t
[all...]
/external/apache-xml/src/main/java/org/apache/xml/serializer/
H A DSerializerTraceWriter.java54 /** The tracer to send events to */
58 * events from being sent to the tracer
95 * @param tracer the tracer to inform that characters are being written
97 public SerializerTraceWriter(Writer out, SerializerTrace tracer) argument
100 m_tracer = tracer;
/external/v8/src/
H A Dmark-compact.h434 void Prepare(GCTracer* tracer);
449 // bookkeeping information. Return a pointer to that tracer.
450 GCTracer* tracer() { return tracer_; } function in class:v8::internal::MarkCompactCollector
589 // A pointer to the current stack-allocated GC tracer object during a full
H A Dliveobjectlist.cc2134 // The tracer needs to be scoped because its usage asserts no allocation,
2136 LolPathTracer tracer(f, obj2, LolPathTracer::FIND_FIRST);
2189 heap->IterateRoots(&tracer, VISIT_ONLY_STRONG);
2190 found = tracer.found();
2195 tracer.VisitPointers(reinterpret_cast<Object**>(&symbol_table),
2197 found = tracer.found();
2199 symbol_table->IteratePrefix(&tracer);
2200 found = tracer.found();
2207 isolate->global_handles()->IterateWeakRoots(&tracer);
2208 found = tracer
[all...]
H A Dhydrogen.h1309 Tag(HTracer* tracer, const char* name) { argument
1311 tracer_ = tracer;
1312 tracer->PrintIndent();
1313 tracer->trace_.Add("begin_%s\n", name);
1314 tracer->indent_++;
H A Dheap.cc526 { GCTracer tracer(this, gc_reason, collector_reason);
528 // The GC count was incremented in the prologue. Tell the tracer about
530 tracer.set_gc_count(gc_count_);
532 // Tell the tracer which collector we've selected.
533 tracer.set_collector(collector);
540 PerformGarbageCollection(collector, &tracer);
558 GCTracer tracer(this, NULL, NULL);
560 PerformGarbageCollection(SCAVENGER, &tracer);
562 PerformGarbageCollection(MARK_COMPACTOR, &tracer);
764 GCTracer* tracer) {
763 PerformGarbageCollection(GarbageCollector collector, GCTracer* tracer) argument
908 MarkCompact(GCTracer* tracer) argument
6419 MarkVisitor(PathTracer* tracer) argument
6435 UnmarkVisitor(PathTracer* tracer) argument
[all...]
H A Dheap.h1490 GCTracer* tracer() { return tracer_; } function in class:v8::internal::Heap
1801 GCTracer* tracer);
1858 void MarkCompact(GCTracer* tracer);
2414 Scope(GCTracer* tracer, ScopeId scope) argument
2415 : tracer_(tracer),
/external/chromium_org/v8/src/
H A Dglobal-handles.cc628 GarbageCollector collector, GCTracer* tracer) {
691 tracer->increment_nodes_copied_in_new_space();
694 tracer->increment_nodes_promoted();
698 tracer->increment_nodes_died_in_new_space();
H A Dglobal-handles.h180 GCTracer* tracer);
H A Dheap.cc671 { GCTracer tracer(this, gc_reason, collector_reason);
675 // The GC count was incremented in the prologue. Tell the tracer about
677 tracer.set_gc_count(gc_count_);
679 // Tell the tracer which collector we've selected.
680 tracer.set_collector(collector);
687 PerformGarbageCollection(collector, &tracer);
717 GCTracer tracer(this, NULL, NULL);
719 PerformGarbageCollection(SCAVENGER, &tracer);
721 PerformGarbageCollection(MARK_COMPACTOR, &tracer);
914 GCTracer* tracer) {
913 PerformGarbageCollection(GarbageCollector collector, GCTracer* tracer) argument
1079 MarkCompact(GCTracer* tracer) argument
7384 MarkVisitor(PathTracer* tracer) argument
7400 UnmarkVisitor(PathTracer* tracer) argument
[all...]
H A Dmark-compact.h582 void Prepare(GCTracer* tracer);
597 // bookkeeping information. Return a pointer to that tracer.
598 GCTracer* tracer() { return tracer_; } function in class:v8::internal::MarkCompactCollector
793 // A pointer to the current stack-allocated GC tracer object during a full
/external/kernel-headers/original/asm-x86/
H A Dvoyager.h128 __u8 tracer[4]; /* tracer number */ member in struct:voyager_eeprom_hdr
/external/chromium-trace/trace-viewer/src/tracing/importer/
H A Dlinux_perf_importer.js216 * Looks for the magic string "# tracer" at the start of the file,
229 if (/^# tracer:/.test(events))
/external/v8/
H A DAndroid.v8common.mk173 src/regexp-macro-assembler-tracer.cc

Completed in 853 milliseconds

12