Searched refs:startTime (Results 1 - 25 of 85) sorted by relevance

1234

/frameworks/base/core/java/android/content/
H A DSyncInfo.java46 public final long startTime; field in class:SyncInfo
50 long startTime) {
54 this.startTime = startTime;
67 parcel.writeLong(startTime);
75 startTime = parcel.readLong();
49 SyncInfo(int authorityId, Account account, String authority, long startTime) argument
/frameworks/compile/libbcc/runtime/test/timing/
H A Dtiming.h5 double intervalInCycles( uint64_t startTime, uint64_t endTime ) argument
7 uint64_t rawTime = endTime - startTime;
H A Dashldi3.c34 uint64_t startTime = mach_absolute_time(); local
39 double thisTime = intervalInCycles(startTime, endTime);
H A Dashrdi3.c34 uint64_t startTime = mach_absolute_time(); local
39 double thisTime = intervalInCycles(startTime, endTime);
H A Dfloatdidf.c32 uint64_t startTime = mach_absolute_time(); local
37 double thisTime = intervalInCycles(startTime, endTime);
H A Dfloatdisf.c32 uint64_t startTime = mach_absolute_time(); local
37 double thisTime = intervalInCycles(startTime, endTime);
H A Dfloatdixf.c32 uint64_t startTime = mach_absolute_time(); local
37 double thisTime = intervalInCycles(startTime, endTime);
H A Dfloatundidf.c29 uint64_t startTime = mach_absolute_time(); local
34 double thisTime = intervalInCycles(startTime, endTime);
H A Dfloatundisf.c32 uint64_t startTime = mach_absolute_time(); local
37 double thisTime = intervalInCycles(startTime, endTime);
H A Dfloatundixf.c32 uint64_t startTime = mach_absolute_time(); local
37 double thisTime = intervalInCycles(startTime, endTime);
H A Dlshrdi3.c34 uint64_t startTime = mach_absolute_time(); local
39 double thisTime = intervalInCycles(startTime, endTime);
H A Dnegdi2.c35 uint64_t startTime = mach_absolute_time(); local
40 double thisTime = intervalInCycles(startTime, endTime);
H A Ddivdi3.c37 uint64_t startTime = mach_absolute_time(); local
42 double thisTime = intervalInCycles(startTime, endTime);
H A Dmoddi3.c37 uint64_t startTime = mach_absolute_time(); local
42 double thisTime = intervalInCycles(startTime, endTime);
H A Dmuldi3.c37 uint64_t startTime = mach_absolute_time(); local
42 double thisTime = intervalInCycles(startTime, endTime);
H A Dudivdi3.c37 uint64_t startTime = mach_absolute_time(); local
42 double thisTime = intervalInCycles(startTime, endTime);
H A Dumoddi3.c37 uint64_t startTime = mach_absolute_time(); local
42 double thisTime = intervalInCycles(startTime, endTime);
/frameworks/base/media/tests/omxjpegdecoder/
H A Djpeg_decoder_bench.cpp54 int64_t startTime = getNowUs(); local
62 int64_t delay = getNowUs() - startTime;
71 int64_t startTime = getNowUs(); local
79 int64_t delay = getNowUs() - startTime;
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/
H A DVideoEditorHelper.java204 long startTime, long duration, int effectType, int colorType) {
206 effectonMVI = new EffectColor(mediaItem, effectId, startTime,
315 int export_height, int startTime, long endTime, int vCodec, int aCodec) {
333 if (startTime == 0) {
335 Log.i(TAG, "TimeLine Expected = " + (startTime + endTime) +
338 "<expected> " + (startTime + endTime) + "\t<actual> " +
339 mvi.getTimelineDuration(), checkRange((startTime +
343 Log.i(TAG, "TimeLine Expected = " + (endTime - startTime) +
346 "<expected> " + (endTime - startTime) + "\t<actual> " +
348 startTime), (in
203 createEffectItem(MediaItem mediaItem, String effectId, long startTime, long duration, int effectType, int colorType) argument
314 validateExport(VideoEditor videoEditor, String fileName, int export_height, int startTime, long endTime, int vCodec, int aCodec) argument
362 validateExport(VideoEditor videoEditor, String fileName, int export_height, int startTime, int endTime, int vCodec, int aCodec) argument
[all...]
/frameworks/base/core/java/com/android/internal/net/
H A DVpnConfig.java69 public long startTime = -1; field in class:VpnConfig
88 out.writeLong(startTime);
106 config.startTime = in.readLong();
/frameworks/native/libs/binder/
H A DIServiceManager.cpp74 int64_t startTime = 0; local
80 if (startTime != 0) {
82 (int)((uptimeMillis()-startTime)/1000),
107 if (startTime == 0) {
108 startTime = uptimeMillis();
/frameworks/base/core/tests/ConnectivityManagerTest/src/com/android/connectivitymanagertest/
H A DConnectivityManagerTestActivity.java370 long startTime = System.currentTimeMillis();
372 if ((System.currentTimeMillis() - startTime) > timeout) {
406 long startTime = System.currentTimeMillis();
408 if ((System.currentTimeMillis() - startTime) > timeout) {
434 long startTime = System.currentTimeMillis();
436 if ((System.currentTimeMillis() - startTime) > timeout) {
466 long startTime = System.currentTimeMillis();
468 if ((System.currentTimeMillis() - startTime) > timeout) {
528 long startTime = System.currentTimeMillis();
529 while ((System.currentTimeMillis() - startTime) < PING_TIME
[all...]
/frameworks/base/test-runner/src/android/test/
H A DInstrumentationCoreTestRunner.java102 private long startTime;
113 startTime = System.currentTimeMillis();
126 long timeTaken = System.currentTimeMillis() - startTime;
/frameworks/base/core/tests/coretests/src/android/database/
H A DDatabaseLockTest.java125 long startTime = System.currentTimeMillis();
128 long elapsedTime = endTime - startTime;
/frameworks/base/libs/androidfw/
H A DVirtualKeyMap.cpp62 nsecs_t startTime = systemTime(SYSTEM_TIME_MONOTONIC); local
67 nsecs_t elapsedTime = systemTime(SYSTEM_TIME_MONOTONIC) - startTime;

Completed in 212 milliseconds

1234