Home
last modified time | relevance | path

Searched refs:timestamps (Results 1 – 25 of 214) sorted by relevance

123456789

/external/chromium-trace/catapult/devil/devil/android/perf/
Dsurface_stats_collector.py47 (refresh_period, timestamps) = self._GetDataFromThread()
52 return (refresh_period, timestamps)
56 timestamps = []
63 if refresh_period is None or timestamps is None:
76 timestamps += [timestamp for timestamp in new_timestamps
78 if len(timestamps):
79 last_timestamp = timestamps[-1]
83 self._data_queue.put((refresh_period, timestamps))
84 timestamps = []
173 timestamps = []
[all …]
/external/perfetto/src/trace_processor/
Devent_tracker_unittest.cc56 const auto& timestamps = context.storage->slices().start_ns(); in TEST_F() local
60 ASSERT_EQ(timestamps.size(), 1); in TEST_F()
66 ASSERT_EQ(timestamps.size(), 2ul); in TEST_F()
67 ASSERT_EQ(timestamps[0], timestamp); in TEST_F()
84 const auto& timestamps = context.storage->slices().start_ns(); in TEST_F() local
88 ASSERT_EQ(timestamps.size(), 1); in TEST_F()
100 ASSERT_EQ(timestamps.size(), 4ul); in TEST_F()
101 ASSERT_EQ(timestamps[0], timestamp); in TEST_F()
126 ASSERT_EQ(context.storage->counter_values().timestamps().at(0), timestamp); in TEST_F()
129 ASSERT_EQ(context.storage->counter_values().timestamps().at(1), in TEST_F()
[all …]
Dtrace_storage.cc119 MaybeUpdateMinMax(counter_values_.timestamps().begin(), in GetTraceTimestampBoundsNs()
120 counter_values_.timestamps().end(), &start_ns, &end_ns); in GetTraceTimestampBoundsNs()
121 MaybeUpdateMinMax(instants_.timestamps().begin(), in GetTraceTimestampBoundsNs()
122 instants_.timestamps().end(), &start_ns, &end_ns); in GetTraceTimestampBoundsNs()
125 MaybeUpdateMinMax(android_log_.timestamps().begin(), in GetTraceTimestampBoundsNs()
126 android_log_.timestamps().end(), &start_ns, &end_ns); in GetTraceTimestampBoundsNs()
/external/autotest/site_utils/rpm_control_system/
Dutils.py88 self.timestamps = {}
107 self.timestamps.pop(removed_key)
109 self.timestamps[key] = time.time()
115 key in self.timestamps and
116 time.time() - self.timestamps[key] > self.expiration_secs):
118 self.timestamps.pop(key)
Dutils_unittest.py143 self.assertEqual(len(cache.timestamps), 1)
145 self.assertTrue('host2' in cache.timestamps)
/external/deqp/modules/egl/
DteglGetFrameTimestampsTests.cpp80 … EGLuint64KHR frameId, eglw::EGLint numTimestamps, const eglw::EGLint *timestamps, EGLnsecsANDROID…
526 TimestampInfoMap timestamps; in executeForConfig() local
527 timestamps[EGL_REQUESTED_PRESENT_TIME_ANDROID] = TimestampInfo(true, false, 0); in executeForConfig()
528 timestamps[EGL_RENDERING_COMPLETE_TIME_ANDROID] = TimestampInfo(true, false, 0); in executeForConfig()
529 timestamps[EGL_COMPOSITION_LATCH_TIME_ANDROID] = TimestampInfo(true, false, 0); in executeForConfig()
530 timestamps[EGL_FIRST_COMPOSITION_START_TIME_ANDROID] = TimestampInfo(true, false, 0); in executeForConfig()
531 timestamps[EGL_LAST_COMPOSITION_START_TIME_ANDROID] = TimestampInfo(true, false, 0); in executeForConfig()
532 timestamps[EGL_FIRST_COMPOSITION_GPU_FINISHED_TIME_ANDROID] = TimestampInfo(true, false, 0); in executeForConfig()
533 timestamps[EGL_DISPLAY_PRESENT_TIME_ANDROID] = TimestampInfo(false, false, 0); in executeForConfig()
534 timestamps[EGL_DEQUEUE_READY_TIME_ANDROID] = TimestampInfo(true, false, 0); in executeForConfig()
[all …]
/external/v8/tools/
Dparse-processor.js131 rawTimestampMin(...timestamps) { argument
132 timestamps = timestamps.length == 1 ? timestamps[0] : timestamps;
133 let result = timestamps.reduce((min, item) => {
138 timestampMin(...timestamps) { argument
139 let result = this.rawTimestampMin(...timestamps);
142 'Invalid timestamp min:', {result, timestamps, script: this}); property
148 timestampMax(...timestamps) { argument
149 timestamps = timestamps.length == 1 ? timestamps[0] : timestamps;
150 let result = Math.max(...timestamps);
153 'Invalid timestamp max:', {result, timestamps, script: this}); property
/external/autotest/client/site_tests/hardware_TPMTakeOwnership/
Dhardware_TPMTakeOwnership.py78 timestamps = dict()
117 timestamps[i] = self.tpm_obj.takeTpmOwnership()
127 for k, v in timestamps.iteritems():
133 self.perf_dict['num_total_iterations'] = len(timestamps)
/external/toolchain-utils/cros_utils/
Dlogger.py44 timestamps = []
53 timestamps.append(os.stat(cmd_file).st_mtime)
59 suffix = str(timestamps.index(min(timestamps)))
216 timestamps = []
225 timestamps.append(os.stat(cmd_file).st_mtime)
231 suffix = str(timestamps.index(min(timestamps)))
/external/perfetto/ui/src/tracks/counter/
Dfrontend.ts64 assertTrue(data.timestamps.length === data.values.length);
101 const startTime = data.timestamps[i];
191 const [left, right] = searchSegment(data.timestamps, time);
192 this.hoveredTs = left === -1 ? undefined : data.timestamps[left];
193 this.hoveredTsEnd = right === -1 ? undefined : data.timestamps[right];
Dcontroller.ts112 timestamps: new Float64Array(numRows),
120 data.timestamps[row] = startSec;
/external/perfetto/ui/src/frontend/
Dlogs_panel.ts115 const timestamps = this.entries.timestamps; constant
119 for (let i = 0; i < this.entries.timestamps.length; i++) {
121 const ts = timestamps[i];
/external/bcc/tools/
Dcachestat_example.txt11 ./cachestat -T # run with default option of 5 seconds delay with timestamps
13 ./cachestat -T 1 # include timestamps with one second samples
15 ./cachestat -T 1 5 # include timestamps with interval of one second for five iterations
Dbiolatency_example.txt41 For efficiency, biolatency uses an in-kernel eBPF map to store timestamps
49 print timestamps with the output, and to print 1 second summaries 5 times:
222 ./biolatency -mT 1 # 1s summaries, milliseconds, and timestamps
/external/perfetto/ui/src/tracks/android_log/
Dcontroller.ts59 timestamps: new Float64Array(rowCount),
64 result.timestamps[i] = fromNs(+cols[0].longValues![i]);
Dfrontend.ts101 for (let i = 0; i < data.timestamps.length; i++) {
109 const px = Math.floor(timeScale.timeToPx(data.timestamps[i]));
/external/perfetto/ui/src/controller/
Dlogs_controller.ts79 timestamps: [],
86 const timestamps = rowsResult.columns[0].longValues! as number[]; constant
93 timestamps,
/external/opencensus-java/impl_core/src/test/java/io/opencensus/implcore/stats/
DMutableAggregationTest.java168 List<Timestamp> timestamps = in testAdd_DistributionWithExemplarAttachments() local
176 mutableDistribution.add(values.get(i), attachmentsList.get(i), timestamps.get(i)); in testAdd_DistributionWithExemplarAttachments()
177 mutableDistributionNoHistogram.add(values.get(i), attachmentsList.get(i), timestamps.get(i)); in testAdd_DistributionWithExemplarAttachments()
185 Exemplar.create(values.get(2), timestamps.get(2), attachmentsList.get(2)), in testAdd_DistributionWithExemplarAttachments()
186 Exemplar.create(values.get(4), timestamps.get(4), attachmentsList.get(4)), in testAdd_DistributionWithExemplarAttachments()
187 Exemplar.create(values.get(3), timestamps.get(3), attachmentsList.get(3))); in testAdd_DistributionWithExemplarAttachments()
/external/autotest/client/site_tests/platform_TraceClockMonotonic/
Dcontrol13 Ensure the the kernel properly supports monotonic timestamps for
18 or the timestamps aren't in the proper order
/external/iputils/doc/
Dclockdiff.sgml65 Some nodes (Cisco) use non-standard timestamps, which is allowed
66 by RFC, but makes timestamps mostly useless.
69 Some nodes generate messed timestamps (Solaris&gt;2.4), when
72 randomly making timestamps mostly useless. Good news is that you can
/external/walt/android/WALT/app/src/main/jni/
DREADME.md22 message (denote it as `t_local`) and have the remote reply with his timestamps
36 only after that get the remote timestamps for all of them. This helps deal with
43 then the timestamps according to his clock of when they were sent. We record the
44 local timestamps when we receive them.
/external/skqp/src/compute/hs/vk/bench/
Dmain.c1009 uint64_t timestamps[2]; in main() local
1012 0,ARRAY_LENGTH_MACRO(timestamps), in main()
1013 sizeof(timestamps), in main()
1014 timestamps, in main()
1015 sizeof(timestamps[0]), in main()
1019 uint64_t const t = timestamps[1] - timestamps[0]; in main()
/external/skia/src/compute/hs/vk/bench/
Dmain.c1009 uint64_t timestamps[2]; in main() local
1012 0,ARRAY_LENGTH_MACRO(timestamps), in main()
1013 sizeof(timestamps), in main()
1014 timestamps, in main()
1015 sizeof(timestamps[0]), in main()
1019 uint64_t const t = timestamps[1] - timestamps[0]; in main()
/external/webrtc/talk/app/webrtc/androidtests/src/org/webrtc/
DVideoCapturerAndroidTestFixtures.java111 private List<Long> timestamps = new ArrayList<Long>(); field in VideoCapturerAndroidTestFixtures.FakeCapturerObserver
129 timestamps.add(timeStamp); in onByteBufferFrameCaptured()
142 timestamps.add(timeStamp); in onTextureFrameCaptured()
184 ArrayList<Long> list = new ArrayList<Long>(timestamps); in getCopyAndResetListOftimeStamps()
185 timestamps.clear(); in getCopyAndResetListOftimeStamps()
/external/ltp/testcases/kernel/fs/ext4-new-features/
DREADME14 field on disk, journal checksumming, nanosec timestamps, online defrag, persist
89 ext4-nsec-timestamps
91 Directory containing the shell script which is used to test nanosec timestamps

123456789