/frameworks/base/include/private/media/ |
AudioTrackShared.h | 30 #define MAX_STARTUP_TIMEOUT_MS 3000 // Longer timeout period at startup to cope with A2DP init time 33 #define RESTORE_TIMEOUT_MS 5000 // Maximum waiting time for a track to be restored 87 uint16_t waitTimeMs; // Cumulated wait time
|
/frameworks/base/libs/utils/ |
SystemClock.cpp | 29 #include <sys/time.h> 44 * Set the current time. This only works when running as root. 67 LOGD("Setting time of day to sec=%d\n", (int) tv.tv_sec);
|
Timers.cpp | 26 #include <sys/time.h> 27 #include <time.h> 112 // Add the specified amount of time to the timeval.
|
/frameworks/base/media/libeffects/lvm/lib/Common/src/ |
LVM_Mixer_TimeConstant.c | 34 /* rate of Update times a second. tc is the required time constant in */ 52 /* tc - the time constant in 100us steps, i.e. 10 = 1ms */ 123 /* Calculate the product of the time constant and the sample rate */
|
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/ |
MediaFrameworkUnitTestRunner.java | 58 // Running all unit tests checking the state machine may be time-consuming. 63 // Running all unit tests checking the state machine may be time-consuming. 75 // Running all unit tests checking the state machine may be time-consuming.
|
/frameworks/base/media/tests/omxjpegdecoder/ |
jpeg_decoder_bench.cpp | 18 #include <sys/time.h> 64 printf("Decoding Time in BoundsMode %.1f msec.\n", delay / 1000.0f); 80 printf("Decoding Time in PixelsMode %.1f msec.\n", delay / 1000.0f);
|
/frameworks/base/opengl/tests/swapinterval/ |
swapinterval.cpp | 102 int time = 10; local 103 printf("screen should flash red/green quickly for %d s...\n", time); 117 } while (int(ns2s(t))<=time);
|
/frameworks/base/telephony/java/android/telephony/ |
SmsCbMessage.java | 19 import android.text.format.Time; 432 Time time = new Time(Time.TIMEZONE_UTC); local 435 time.year = year >= 90 ? year + 1900 : year + 2000; 436 time.month = month - 1; 437 time.monthDay = day; 438 time.hour = hour; 439 time.minute = minute [all...] |
/frameworks/base/test-runner/src/android/test/ |
TestPrinter.java | 68 TestRunner.IntermediateTime time = intermediates.get(i); local 69 Log.i(mTag, " intermediate: " + time.name + " = " 70 + time.timeInNS + "ns");
|
/frameworks/base/tests/GridLayoutTest/src/com/android/test/layout/ |
AlignmentTest.java | 108 float time = (float) (System.currentTimeMillis() - start) / N * 1000; local 109 System.out.println("Time: " + time + "mics");
|
/frameworks/base/tools/aapt/ |
CrunchCache.h | 6 // at build time. 75 * returns true if and only if source file's modification time 76 * is greater than the cached file's mod-time. Otherwise returns false.
|
/frameworks/base/tools/preload/ |
Root.java | 85 loadedClass, record.time); 93 process.startOperation(record.tid, loadedClass, record.time, 98 process.startOperation(record.tid, loadedClass, record.time,
|
/frameworks/compile/linkloader/android/ |
test-librsloader.c | 23 #include <time.h> 46 DEF("time", time)
|
/frameworks/media/libvideoeditor/vss/inc/ |
M4xVSS_Internal.h | 96 M4OSA_Int32 previousClipTime; /**< Previous clip time, used by framing 98 M4OSA_Int32 previewOffsetClipTime; /**< Previous clip time, used by framing 100 M4OSA_Int32 previewClipTime; /**< Current clip time, used by framing 155 M4OSA_Int32 effectStartTime; /**<Effect start time*/ 156 M4OSA_UInt32 clipTime; /**<current output clip time for the 158 M4OSA_UInt32 last_clipTime; /**<previous output clip time for the 160 M4OSA_UInt32 lastStepDuration; /**<Time interval between the previous 167 M4OSA_UInt32 current_gif_time; /**< Current time os the GIF in output 168 file time */ 226 M4OSA_Int32 previousClipTime; /**< Previous clip time, used by framing filte [all...] |
/hardware/ril/mock-ril/src/cpp/ |
worker.h | 108 int64_t time; member in struct:WorkerQueue::Record 116 return lhs->time > rhs->time;
|
/libcore/luni/src/main/java/java/util/concurrent/locks/ |
Lock.java | 19 * shared resource: only one thread at a time can acquire the lock and 205 * Acquires the lock only if it is free at the time of invocation. 234 * Acquires the lock if it is free within the given waiting time and the 246 * <li>The specified waiting time elapses 260 * <p>If the specified waiting time elapses then the value {@code false} 262 * If the time is 282 * @param time the maximum time to wait for the lock 283 * @param unit the time unit of the {@code time} argumen [all...] |
LockSupport.java | 32 * {@code park} method may also return at any other time, for "no 35 * optimization of a "busy wait" that does not waste as much time 163 * the specified waiting time, unless the permit is available. 177 * <li>The specified waiting time elapses; or 185 * for example, the interrupt status of the thread, or the elapsed time 226 * for example, the interrupt status of the thread, or the current time 231 * @param deadline the absolute time, in milliseconds from the Epoch, 287 * the specified waiting time, unless the permit is available. 301 * <li>The specified waiting time elapses; or 309 * for example, the interrupt status of the thread, or the elapsed time [all...] |
/libcore/luni/src/main/java/libcore/io/ |
StructStat.java | 55 /** Time of last access. */ 58 /** Time of last data modification. */ 61 /** Time of last status change. */
|
/ndk/sources/cxx-stl/stlport/stlport/stl/ |
_threads.c | 36 # include <time.h> 44 # include <sys/time.h> 135 // Thus it makes sense to spin longer the next time.
|
/packages/apps/Calendar/src/com/android/calendar/event/ |
EditEventActivity.java | 28 import android.text.format.Time; 114 info.endTime = new Time(); 118 info.startTime = new Time();
|
/packages/apps/Calendar/src/com/android/calendar/widget/ |
CalendarAppWidgetModel.java | 27 import android.text.format.Time; 253 Time time = new Time(timeZone); local 254 time.setToNow(); // This is needed for gmtoff to be set 255 mTodayJulianDay = Time.getJulianDay(mNow, time.gmtoff); 264 final Time recycle = new Time(timeZone); 271 mShowTZ = !TextUtils.equals(timeZone, Time.getCurrentTimezone()) [all...] |
/packages/apps/DeskClock/src/com/android/deskclock/ |
DigitalClock.java | 35 * Displays the time 128 /* monitor time ticks, time changed, timezone */
|
/packages/apps/VideoEditor/src/com/android/videoeditor/service/ |
MovieEffect.java | 98 * Set start time of the effect. If a preview or export is in progress, then
101 * @param startTimeMs The start time of the effect relative to the beginning
109 * @return The start time in milliseconds
|
/prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/parallel/ |
types.h | 41 /// Run-time equivalents for the compile-time tags. 63 /// Strategies for run-time algorithm selection:
|
/prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/bits/ |
shm.h | 54 __time_t shm_atime; /* time of last shmat() */ 58 __time_t shm_dtime; /* time of last shmdt() */ 62 __time_t shm_ctime; /* time of last change by shmctl() */
|