Home
last modified time | relevance | path

Searched refs:time (Results 1 – 25 of 47) sorted by relevance

12

/sdk/emulator/qtools/
Dcallstack.h29 virtual void push(int stackLevel, uint64_t time, CallStackBase *base) {}; in push() argument
30 virtual void pop(int stackLevel, uint64_t time, CallStackBase *base) {}; in pop() argument
42 uint32_t time; // for debugging when a problem occurred variable
58 void popAll(uint64_t time);
59 void threadStart(uint64_t time);
60 void threadStop(uint64_t time);
69 uint64_t getGlobalTime(uint64_t time) { return time + mSkippedTime; } in getGlobalTime() argument
83 uint64_t time, int flags);
84 void doSimplePop(uint64_t time);
142 if (sCurrentMethod.time == 0) { in CallStack()
[all …]
Dread_pid.cpp22 printf("t%lld fork tgid %d pid %d\n", event.time, event.tgid, event.pid); in main()
25 printf("t%lld clone tgid %d pid %d\n", event.time, event.tgid, event.pid); in main()
28 printf("t%lld switch %d\n", event.time, event.pid); in main()
31 printf("t%lld exit %d\n", event.time, event.pid); in main()
35 event.time, event.vstart, event.vend, event.offset, event.path); in main()
40 event.time, event.vstart, event.vend); in main()
44 event.time, event.vstart, event.path); in main()
48 printf("t%lld remove %08x\n", event.time, event.vstart); in main()
51 printf("t%lld argc: %d\n", event.time, event.argc); in main()
60 event.time, event.tgid, event.pid, event.path); in main()
[all …]
Dq2dm.cpp27 void push(int stackLevel, uint64_t time, CallStackBase *base);
28 void pop(int stackLevel, uint64_t time, CallStackBase *base);
71 void MyFrame::push(int stackLevel, uint64_t time, CallStackBase *base) in push() argument
78 stack->getGlobalTime(time), pid, stackLevel, in push()
89 thread_time[pid] = time; in push()
90 dmtrace->addFunctionEntry(function->id, time, pid); in push()
93 void MyFrame::pop(int stackLevel, uint64_t time, CallStackBase *base) in pop() argument
100 stack->getGlobalTime(time), pid, stackLevel, in pop()
113 stack->getGlobalTime(time), pid, sym->name); in pop()
118 thread_time[pid] = time; in pop()
[all …]
Dparse_options-inl.h54 uint64_t time) in GetSymbol() argument
56 symbol_type *sym = trace->LookupFunction(pid, addr, time); in GetSymbol()
104 first_ignored_event->time = 0; in GetNextValidEvent()
112 if (first_ignored_event->time == 0) in GetNextValidEvent()
119 if (first_ignored_event->time == 0) in GetNextValidEvent()
127 sym = GetSymbol(trace, event->pid, event->bb_addr, event->time); in GetNextValidEvent()
129 if (first_ignored_event->time == 0) in GetNextValidEvent()
134 sym = GetSymbol(trace, event->pid, event->bb_addr, event->time); in GetNextValidEvent()
137 sym = GetSymbol(trace, event->pid, event->bb_addr, event->time); in GetNextValidEvent()
139 if (first_ignored_event->time == 0) in GetNextValidEvent()
[all …]
Dcheck_stack.cpp20 void compareStacks(uint64_t time, int pid);
32 uint64_t time; member
37 frame(uint64_t time, uint32_t addr, const char *name, bool isNative) { in frame()
38 this->time = time; in frame()
132 pframe = new frame(method_record.time, method_record.addr, in main()
155 if (debugTime != 0 && event.time >= debugTime) in main()
156 printf("time: %llu debug time: %lld\n", event.time, debugTime); in main()
160 } while (event.time < method_record.time); in main()
162 compareStacks(event.time, event.pid); in main()
167 eStacks[ii]->popAll(event.time); in main()
[all …]
Dstack_dump.cpp23 void push(int stackLevel, uint64_t time, CallStackBase *base);
24 void pop(int stackLevel, uint64_t time, CallStackBase *base);
43 void MyFrame::push(int stackLevel, uint64_t time, CallStackBase *base) in push() argument
51 printf("%llu en thr %d %s %3d", time, base->getId(), type, stackLevel); in push()
57 void MyFrame::pop(int stackLevel, uint64_t time, CallStackBase *base) in pop() argument
65 printf("%llu x thr %d %s %3d", time, base->getId(), type, stackLevel); in pop()
135 if (debugTime != 0 && event.time >= debugTime) in main()
143 if (dumpTime > 0 && event.time >= dumpTime) { in main()
151 stacks[ii]->popAll(event.time); in main()
Dread_method.cpp13 uint64_t time; member
18 frame(uint64_t time, uint32_t addr, const char *name, bool isNative) { in frame()
19 this->time = time; in frame()
64 native, ii, pframe->time, pframe->addr, in dump()
107 method_record.time, proc->pid, method_record.addr, in main()
111 method_record.time, proc->pid, method_record.addr, in main()
126 pframe = new frame(method_record.time, method_record.addr, in main()
Dtrace_reader_base.h29 uint64_t time; member
39 uint64_t time; member
61 uint64_t time; member
95 inline bool ReadAddr(uint64_t *time, uint32_t *addr, int *flags);
96 inline bool ReadExc(uint64_t *time, uint32_t *current_pc,
113 virtual int FindCurrentPid(uint64_t time);
214 bool ReadAddr(uint64_t *time, uint32_t *addr);
230 bool ReadExc(uint64_t *time, uint32_t *current_pc,
286 inline bool TraceReaderBase::ReadAddr(uint64_t *time, uint32_t *addr, int *flags) in ReadAddr() argument
292 *time = load_time_; in ReadAddr()
[all …]
Dcheck_trace.cpp47 uint64_t insn_time = trace->ReadInsnTime(event.time); in main()
48 if (insn_time != event.time) { in main()
50 event.time, insn_time, event.bb_num, event.bb_addr, in main()
55 trace->ReadInsnTime(event.time); in main()
Dread_addr.cpp17 uint64_t time; in main() local
21 if (trace->ReadAddr(&time, &addr, &flags)) in main()
26 printf("%lld 0x%08x %s\n", time, addr, op); in main()
Dexc_dump.cpp17 uint64_t time, recnum, bb_num, bb_start_time; in main() local
21 if (trace->ReadExc(&time, &pc, &recnum, &target_pc, &bb_num, in main()
25 time, recnum, pc, target_pc, bb_num, bb_start_time, num_insns); in main()
Dq2g.cpp83 gtrace->AddProcExit(prev_sym->filenum, prev_sym->procnum, event.time, in main()
90 gtrace->AddProcEntry(sym->filenum, sym->procnum, event.time, event.pid); in main()
96 if (ignored.time != 0 && prev_sym) { in main()
99 gtrace->AddProcExit(prev_sym->filenum, prev_sym->procnum, ignored.time, in main()
Dprofile_trace.cpp76 if (first_ignored_event.time != 0) in main()
77 elapsed = first_ignored_event.time - prev_bb_time; in main()
79 elapsed = event.time - prev_bb_time; in main()
85 prev_bb_time = event.time; in main()
Dtrace_reader.cpp188 event->time = bb->next_time; in ReadBB()
192 event->num_insns = trace_->FindNumInsns(event->bb_num, event->time); in ReadBB()
193 event->pid = trace_->FindCurrentPid(event->time); in ReadBB()
214 event->time = nextrec_.bb_rec.start_time; in ReadBB()
218 event->num_insns = trace_->FindNumInsns(event->bb_num, event->time); in ReadBB()
219 event->pid = trace_->FindCurrentPid(event->time); in ReadBB()
236 event->time = bb->next_time; in ReadBB()
240 event->num_insns = trace_->FindNumInsns(event->bb_num, event->time); in ReadBB()
241 event->pid = trace_->FindCurrentPid(event->time); in ReadBB()
340 bool AddrReader::ReadAddr(uint64_t *time, uint32_t *addr) in ReadAddr() argument
[all …]
Dtrace_reader.h206 symbol_type *LookupFunction(int pid, uint32_t addr, uint64_t time);
219 virtual int FindCurrentPid(uint64_t time);
245 symbol_type *FindCurrentMethod(int pid, uint64_t time);
286 next_method_.time = 0; in TraceReader()
1118 TraceReader<T>::LookupFunction(int pid, uint32_t addr, uint64_t time) in LookupFunction() argument
1130 symbol_type *sym = FindCurrentMethod(pid, time); in LookupFunction()
1159 symbol_type *sym = FindCurrentMethod(pid, time); in LookupFunction()
1195 child->start_time = event->time; in HandlePidEvent()
1214 uint64_t elapsed = event->time - function_start_time_; in HandlePidEvent()
1215 function_start_time_ = event->time; in HandlePidEvent()
[all …]
Dcoverage.cpp24 void push(int stackLevel, uint64_t time, CallStackBase *base) { in push() argument
27 void pop(int stackLevel, uint64_t time, CallStackBase *base) { in pop() argument
118 stacks[ii]->popAll(event.time); in main()
Dbb_dump.cpp43 event.time, event.bb_num, event.pid, event.num_insns, in main()
Dread_trace.cpp72 event.time, event.bb_num, event.num_insns); in main()
109 uint64_t sim_time = trace->ReadInsnTime(event.time); in main()
Dhist_trace.cpp35 prev_time = event.time; in main()
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/testdata/
Danimator1-expected-completion59.txt3 android:interpolator : Defines the interpolator used to smooth the animation movement in time. [r…
4 android:duration : Amount of time (in milliseconds) for the animation to run. [integer]
5 android:startOffset : Delay in milliseconds before the animation runs, once start time is reached.…
Danim1-expected-completion56.txt4 android:interpolator : Defines the interpolator used to smooth the animation movement in time. [r…
8 android:duration : Amount of time (in milliseconds) for the animation to run. [integer]
9 android:startOffset : Delay in milliseconds before the animation runs, once start time is reached.…
Danim1-expected-completion55.txt6 android:interpolator : Defines the interpolator used to smooth the animation movement in time. [r…
10 android:duration : Amount of time (in milliseconds) for the animation to run. [integer]
11 android:startOffset : Delay in milliseconds before the animation runs, once start time is reached.…
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gre/
DRuleLoader.java173 long time = System.currentTimeMillis(); in getClassLoader() local
174 if (time - mLastCheckTimeStamp > 3000) { in getClassLoader()
175 mLastCheckTimeStamp = time; in getClassLoader()
/sdk/eclipse/plugins/com.android.ide.eclipse.adt.overlay/
DNOTICE54 combination of the Contribution and the Program if, at the time the
191 and does not cure such failure in a reasonable period of time after
202 Agreement from time to time. No one other than the Agreement Steward has
/sdk/eclipse/plugins/com.android.ide.eclipse.ndk/
DNOTICE54 combination of the Contribution and the Program if, at the time the
191 and does not cure such failure in a reasonable period of time after
202 Agreement from time to time. No one other than the Agreement Steward has

12