HomeSort by relevance Sort by last modified time
    Searched defs:ts (Results 601 - 625 of 1050) sorted by null

<<21222324252627282930>>

  /external/valgrind/coregrind/m_gdbserver/
target.c 67 ThreadState *ts; local
78 ti, tid, VG_(name_of_ThreadStatus) (ts->status), \
79 image_ptid (ptid), ts->os_state.lwpid
82 ts = VG_(get_ThreadState) (tid);
83 ptid = ts->os_state.lwpid;
90 if (ts->status != VgTs_Init) {
92 add_thread (ptid, ts, ptid);
  /external/valgrind/coregrind/
m_libcfile.c 622 struct vki_timespec ts; local
628 ts.tv_sec = timeout / 1000;
629 ts.tv_nsec = (timeout % 1000) * 1000000;
630 tsp = &ts;
    [all...]
  /external/wpa_supplicant_8/src/utils/
eloop.c 1070 struct timespec ts; local
1117 ts.tv_sec = tv.sec;
1118 ts.tv_nsec = tv.usec * 1000L;
1151 timeout ? &ts : NULL);
    [all...]
os_unix.c 82 struct timespec ts; local
89 res = clock_gettime(clock_id, &ts);
91 t->sec = ts.tv_sec;
92 t->usec = ts.tv_nsec / 1000;
  /frameworks/av/media/libaudioclient/
AudioTrackShared.cpp 236 const struct timespec *ts; local
242 ts = NULL;
247 ts = requested;
267 ts = &remaining;
271 ts = NULL;
282 mClientInServer ? FUTEX_WAIT_PRIVATE : FUTEX_WAIT, old & ~CBLK_FUTEX_WAKE, ts);
493 const struct timespec *ts; local
499 ts = NULL;
504 ts = requested;
524 ts = &remaining
    [all...]
  /frameworks/av/media/libnblog/include/media/nblog/
NBLog.h 245 int64_t ts; member in struct:android::NBLog::HistTsEntry
250 int64_t ts; member in struct:android::NBLog::HistTsEntryWithAuthor
338 virtual void logTimestamp(const int64_t ts);
392 virtual void logTimestamp(const int64_t ts);
604 timespec ts; local
605 if (clock_gettime(CLOCK_MONOTONIC, &ts) == 0) {
606 return (uint64_t) ts.tv_sec * 1000 * 1000 * 1000 + ts.tv_nsec;
  /frameworks/base/core/tests/bandwidthtests/src/com/android/bandwidthtest/
BandwidthTest.java 113 String ts = Long.toString(System.currentTimeMillis()); local
116 mTestServer, FILE_SIZE, mDeviceId, ts);
130 results.putString("timestamp", ts);
165 String ts = Long.toString(System.currentTimeMillis()); local
167 mTestServer, FILE_SIZE, mDeviceId, ts);
171 ts = Long.toString(System.currentTimeMillis());
174 assertTrue(BandwidthTestUtil.postFileToServer(mTestServer, mDeviceId, ts, tmpSaveFile));
184 results.putString("timestamp", ts);
227 String ts = Long.toString(System.currentTimeMillis()); local
229 mTestServer, FILE_SIZE, mDeviceId, ts);
    [all...]
  /frameworks/base/services/tests/servicestests/src/com/android/server/job/
JobStoreTest.java 121 final JobStatus ts = JobStatus.createFromJobInfo(task, SOME_UID, null, -1, null); local
122 ts.addInternalFlags(JobStatus.INTERNAL_FLAG_HAS_FOREGROUND_EXEMPTION);
123 mTaskStoreUnderTest.add(ts);
133 assertTrue("JobStore#contains invalid.", mTaskStoreUnderTest.containsJob(ts));
138 ts.getEarliestRunTime(), loadedTaskStatus.getEarliestRunTime());
140 ts.getLatestRunTimeElapsed(), loadedTaskStatus.getLatestRunTimeElapsed());
  /frameworks/base/tests/JankBench/app/src/main/java/com/android/benchmark/synthetic/
TestInterface.java 164 final String ts = s; local
168 tv.setText(ts);
  /frameworks/native/services/surfaceflinger/tests/fakehwc/
FakeComposerClient.cpp 509 struct timespec ts; local
510 clock_gettime(CLOCK_MONOTONIC, &ts);
511 timestamp = ts.tv_sec * 1000 * 1000 * 1000 + ts.tv_nsec;
  /hardware/qcom/audio/hal/audio_extn/
spkr_protection.c 129 struct timespec ts; local
305 struct timespec ts; local
406 clock_gettime(CLOCK_REALTIME, &ts);
407 ts.tv_sec += (SLEEP_AFTER_CALIB_START/1000);
408 ts.tv_nsec = 0;
413 &handle.mutex_spkr_prot, &ts);
    [all...]
  /packages/apps/Bluetooth/src/com/android/bluetooth/opp/
BluetoothOppManager.java 457 Long ts = System.currentTimeMillis(); local
474 values.put(BluetoothShare.TIMESTAMP, ts);
  /packages/apps/TV/tuner/src/com/android/tv/tuner/ts/
TsParser.java 17 package com.android.tv.tuner.ts;
30 import com.android.tv.tuner.ts.SectionParser.OutputListener;
39 /** Parses MPEG-2 TS packets. */
444 * Creates MPEG-2 TS parser.
465 if (DEBUG) Log.d(TAG, "Data should include a single TS packet.");
469 if (DEBUG) Log.d(TAG, "Invalid ts packet.");
473 if (DEBUG) Log.d(TAG, "Erroneous ts packet.");
477 // For details for the structure of TS packet, see H.222.0 Table 2-2.
491 if (DEBUG) Log.d(TAG, "Payload should be included in a single TS packet.");
502 * Feeds MPEG-2 TS data to parse
    [all...]
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/src/experimental/filesystem/
operations.cpp 537 auto ts = detail::extract_mtime(st); local
538 if (!FSTime::is_representable(ts)) {
543 return FSTime::convert_timespec(ts);
  /system/bt/osi/src/
alarm.cc 393 struct timespec ts; local
394 if (clock_gettime(CLOCK_ID, &ts) == -1) {
400 return (ts.tv_sec * 1000LL) + (ts.tv_nsec / 1000000LL);
  /system/core/liblog/tests/
liblog_benchmark.cpp 200 struct timespec ts; local
201 clock_gettime(android_log_clockid(), &ts); local
212 header.realtime.tv_sec = ts.tv_sec;
213 header.realtime.tv_nsec = ts.tv_nsec;
276 struct timespec ts; local
277 clock_gettime(android_log_clockid(), &ts); local
299 buffer->header.realtime.tv_sec = ts.tv_sec;
300 buffer->header.realtime.tv_nsec = ts.tv_nsec;
351 struct timespec ts; local
352 clock_gettime(android_log_clockid(), &ts); local
426 struct timespec ts; local
427 clock_gettime(android_log_clockid(), &ts); local
499 struct timespec ts; local
500 clock_gettime(android_log_clockid(), &ts); local
696 log_time ts; local
    [all...]
  /system/core/logd/
LogTags.cpp 552 struct timespec ts; local
553 clock_gettime(android_log_clockid(), &ts); local
558 .realtime.tv_sec = (uint32_t)ts.tv_sec,
559 .realtime.tv_nsec = (uint32_t)ts.tv_nsec,
  /art/runtime/base/
mutex.cc 745 timespec ts; local
746 InitTimeSpec(true, CLOCK_REALTIME, ms, ns, &ts);
747 int result = pthread_rwlock_timedwrlock(&rwlock_, &ts);
1029 timespec ts; local
    [all...]
  /art/test/004-ThreadStress/src-art/
Main.java 651 final Main ts = threadStresses[r]; local
653 final Main threadStress = ts;
664 Thread thread = new Thread(ts, "Worker thread " + id);
    [all...]
  /bionic/libc/bionic/
pthread_mutex.cpp 939 timespec ts; local
    [all...]
  /cts/tools/cts-api-coverage/src/com/android/cts/apicoverage/
TestCaseReport.java 487 static void printTestSuite(TestSuite ts, List<String> knownFailures) {
491 for (TestSuite.Package pkg : ts.getPackagesList()) {
517 static void printTestSuiteSummary(TestSuite ts, String fName, List<String> knownFailures)
526 for (TestSuite.Package pkg : ts.getPackagesList()) {
586 TestSuite ts = listTestCases(tsContent, tsPath, tradFedJarPath).build(); local
591 ts.writeTo(output);
  /device/google/marlin/camera/QCamera2/stack/common/
mm_camera_interface.h 131 struct timespec ts; member in struct:mm_camera_buf_def
    [all...]
  /device/google/marlin/camera/QCamera2/stack/mm-camera-interface/src/
mm_camera.c 1806 struct timespec ts; local
    [all...]
mm_camera_stream.c 1181 struct timespec ts; local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Lua/src/
lapi.c 502 TString *ts; local
505 ts = luaS_newlstr(L, s, len);
506 setsvalue2s(L, L->top, ts);
509 return getstr(ts);
519 TString *ts; local
522 ts = luaS_new(L, s);
523 setsvalue2s(L, L->top, ts);
526 return getstr(ts);

Completed in 1142 milliseconds

<<21222324252627282930>>