Searched defs:time (Results 1 - 25 of 34) sorted by relevance

12

/sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/location/
H A DTrackPoint.java22 * <p/>A track point is a point in time and space.
27 void setTime(long time) { argument
28 mTime = time;
/sdk/emulator/qtools/
H A Dread_addr.cpp17 uint64_t time; local
21 if (trace->ReadAddr(&time, &addr, &flags))
26 printf("%lld 0x%08x %s\n", time, addr, op);
H A Dexc_dump.cpp17 uint64_t time, recnum, bb_num, bb_start_time; local
21 if (trace->ReadExc(&time, &pc, &recnum, &target_pc, &bb_num,
24 printf("time: %lld rec: %llu pc: %08x target: %08x bb: %llu bb_start: %llu insns: %d\n",
25 time, recnum, pc, target_pc, bb_num, bb_start_time, num_insns);
H A Dparse_options-inl.h54 uint64_t time)
56 symbol_type *sym = trace->LookupFunction(pid, addr, time);
104 first_ignored_event->time = 0;
112 if (first_ignored_event->time == 0)
119 if (first_ignored_event->time == 0)
127 sym = GetSymbol(trace, event->pid, event->bb_addr, event->time);
129 if (first_ignored_event->time == 0)
134 sym = GetSymbol(trace, event->pid, event->bb_addr, event->time);
137 sym = GetSymbol(trace, event->pid, event->bb_addr, event->time);
139 if (first_ignored_event->time
53 GetSymbol(TraceReaderType *trace, int pid, uint32_t addr, uint64_t time) argument
[all...]
H A Dcoverage.cpp24 void push(int stackLevel, uint64_t time, CallStackBase *base) { argument
27 void pop(int stackLevel, uint64_t time, CallStackBase *base) { argument
118 stacks[ii]->popAll(event.time);
H A Dread_method.cpp13 uint64_t time; member in struct:frame
18 frame(uint64_t time, uint32_t addr, const char *name, bool isNative) { argument
19 this->time = time;
64 native, ii, pframe->time, pframe->addr,
107 method_record.time, proc->pid, method_record.addr,
111 method_record.time, proc->pid, method_record.addr,
126 pframe = new frame(method_record.time, method_record.addr,
H A 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) argument
51 printf("%llu en thr %d %s %3d", time, base->getId(), type, stackLevel);
57 void MyFrame::pop(int stackLevel, uint64_t time, CallStackBase *base) argument
65 printf("%llu x thr %d %s %3d", time, base->getId(), type, stackLevel);
135 if (debugTime != 0 && event.time >= debugTime)
136 printf("debug time: %lld\n", debugTime);
141 // If the user requested a stack dump at a certain time,
142 // and we are at that time, the
[all...]
H A Dcheck_stack.cpp20 void compareStacks(uint64_t time, int pid);
32 uint64_t time; member in struct:frame
37 frame(uint64_t time, uint32_t addr, const char *name, bool isNative) { argument
38 this->time = time;
132 pframe = new frame(method_record.time, method_record.addr,
155 if (debugTime != 0 && event.time >= debugTime)
156 printf("time: %llu debug time: %lld\n", event.time, debugTim
175 compareStacks(uint64_t time, int pid) argument
[all...]
H A 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) argument
78 stack->getGlobalTime(time), pid, stackLevel,
89 thread_time[pid] = time;
90 dmtrace->addFunctionEntry(function->id, time, pid);
93 void MyFrame::pop(int stackLevel, uint64_t time, CallStackBase *base) argument
100 stack->getGlobalTime(time), pid, stackLevel,
112 fprintf(stderr, "Error: q2dm function mismatch at time %llu pid %d sym %s\n",
113 stack->getGlobalTime(time), pi
[all...]
H A Dcallstack.h29 virtual void push(int stackLevel, uint64_t time, CallStackBase *base) {}; argument
30 virtual void pop(int stackLevel, uint64_t time, CallStackBase *base) {}; argument
42 uint32_t time; // for debugging when a problem occurred member in class:StackFrame
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; } argument
83 uint64_t time, int flags);
84 void doSimplePop(uint64_t time);
219 uint64_t time = event->time - mSkippedTime; local
233 threadStart(uint64_t time) argument
240 threadStop(uint64_t time) argument
385 uint64_t time = event->time - mSkippedTime; local
498 doSimplePush(symbol_type *function, uint32_t addr, uint64_t time, int flags) argument
519 doSimplePop(uint64_t time) argument
555 uint64_t time = event->time - mSkippedTime; local
681 popAll(uint64_t time) argument
693 uint64_t time = event->time - mSkippedTime; local
737 uint64_t time = event->time - mSkippedTime; local
[all...]
H A Dtrace_reader_base.h29 uint64_t time; member in struct:BBEvent
39 uint64_t time; member in struct:PidEvent
61 uint64_t time; member in struct:MethodRec
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) argument
292 *time
305 ReadExc(uint64_t *time, uint32_t *current_pc, uint64_t *recnum, uint32_t *target_pc, uint64_t *bb_num, uint64_t *bb_start_time, int *num_insns) argument
[all...]
H A Dtrace_reader.cpp188 event->time = bb->next_time;
192 event->num_insns = trace_->FindNumInsns(event->bb_num, event->time);
193 event->pid = trace_->FindCurrentPid(event->time);
214 event->time = nextrec_.bb_rec.start_time;
218 event->num_insns = trace_->FindNumInsns(event->bb_num, event->time);
219 event->pid = trace_->FindCurrentPid(event->time);
236 event->time = bb->next_time;
240 event->num_insns = trace_->FindNumInsns(event->bb_num, event->time);
241 event->pid = trace_->FindCurrentPid(event->time);
340 bool AddrReader::ReadAddr(uint64_t *time, uint32_ argument
387 ReadExc(uint64_t *time, uint32_t *current_pc, uint64_t *recnum, uint32_t *target_pc, uint64_t *bb_num, uint64_t *bb_start_time, int *num_insns) argument
1156 uint64_t time; local
1178 FindCurrentPid(uint64_t time) argument
[all...]
H A 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;
1118 TraceReader<T>::LookupFunction(int pid, uint32_t addr, uint64_t time) argument
1130 symbol_type *sym = FindCurrentMethod(pid, time);
1159 symbol_type *sym = FindCurrentMethod(pid, time);
1195 child->start_time = event->time;
1214 uint64_t elapsed = event->time - function_start_time_;
1215 function_start_time_ = event->time;
1365 FindCurrentPid(uint64_t time) argument
1479 FindCurrentMethod(int pid, uint64_t time) argument
1546 uint64_t time = next_method_.time; local
[all...]
/sdk/monkeyrunner/jython/test/
H A DMonkeyRunner_test.py19 import time namespace
47 start = time.time()
49 end = time.time()
/sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/logcat/
H A DLogCatMessage.java24 * generating the message, the time at which the message was generated, and
40 String tag, String time, String msg) {
45 mTime = time;
39 LogCatMessage(LogLevel logLevel, String pid, String tid, String appName, String tag, String time, String msg) argument
H A DLogPanel.java181 public String time; field in class:LogPanel.LogMessageInfo
207 return data.time + ": " //$NON-NLS-1$
1122 mLastMessageInfo.time = matcher.group(1);
1137 mLastMessageInfo.time = "??-?? ??:??:??.???"; //$NON-NLS1$
/sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/log/event/
H A DDisplaySyncHistogram.java27 import org.jfree.data.time.RegularTimePeriod;
28 import org.jfree.data.time.SimpleTimePeriod;
29 import org.jfree.data.time.TimePeriodValues;
30 import org.jfree.data.time.TimePeriodValuesCollection;
95 * @param startTime Start time (ms) of events
96 * @param stopTime Stop time (ms) of events
113 // Item turns out to be in error, so transfer time from old auth to error.
152 * Creates a multiple-hour time period for the histogram.
153 * @param time Time in milliseconds.
155 * @return SimpleTimePeriod covering the number of hours and containing time
157 getTimePeriod(long time, long numHoursWide) argument
[all...]
/sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/views/
H A DFrameSummaryViewPage.java355 private String formatDuration(long time) { argument
358 return String.format("%,10d", time); //$NON-NLS-1$
/sdk/ddms/libs/ddmlib/src/com/android/ddmlib/
H A DFileListingService.java135 String time; field in class:FileListingService.FileEntry
195 * Returns the time string of the entry, as returned by <code>ls</code>.
198 return time;
467 String time = m.group(6);
538 entry.time = time;
772 // we don't want to run multiple ls on the device at the same time, so we
/sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/editors/
H A DGLFunctionTraceViewer.java489 // column showing the GL function duration (wall clock time)
497 // column showing the GL function duration (thread time)
667 private String formatDuration(int time) { argument
670 return String.format("%,10d", time); //$NON-NLS-1$
/sdk/emulator/gps/
H A Dgps_qemu.c31 #include <time.h>
197 time_t now = time(NULL);
263 time_t now = time(NULL);
288 nmea_reader_update_date( NmeaReader* r, Token date, Token time )
310 return nmea_reader_update_time( r, time );
515 p += snprintf(p, end-p, " time=%s", asctime( &utc ) );
865 qemu_gps_inject_time(GpsUtcTime time, int64_t timeReference, int uncertainty) argument
/sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/net/
H A DNetworkPanel.java65 import org.jfree.data.time.Millisecond;
66 import org.jfree.data.time.TimePeriod;
67 import org.jfree.data.time.TimeSeries;
68 import org.jfree.data.time.TimeSeriesCollection;
524 * @param time Timestamp when delta was observed.
527 public void recordDelta(Millisecond time, long deltaMillis, NetworkSnapshot.Entry delta) { argument
533 mRxTotalSeries.addOrUpdate(time, rxBytesPerSecond);
534 mTxTotalSeries.addOrUpdate(time, -txBytesPerSecond);
536 mRxDetailDataset.addValue(rxBytesPerSecond, time, label);
537 mTxDetailDataset.addValue(-txBytesPerSecond, time, labe
[all...]
/sdk/testapps/jarCheckTests1/app/libs/
H A Dandroid-support-v4.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/support/ android/support/v4/ android/support/v4/accessibilityservice/ ...
/sdk/testapps/jarCheckTests1/lib1/libs/
H A Dandroid-support-v4.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/support/ android/support/v4/ android/support/v4/accessibilityservice/ ...
/sdk/testapps/jarCheckTests1/lib2/libs/
H A Dandroid-support-v4.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/support/ android/support/v4/ android/support/v4/accessibilityservice/ ...

Completed in 1566 milliseconds

12