HomeSort by relevance Sort by last modified time
    Searched refs:deadline (Results 101 - 125 of 247) sorted by null

1 2 3 45 6 7 8 910

  /external/libvpx/libvpx/examples/
twopass_encoder.c 31 // example, except the deadline is set to VPX_DL_BEST_QUALITY to get the
74 unsigned int deadline,
79 deadline);
99 unsigned int deadline,
104 deadline);
  /external/libvpx/libvpx/vpx/
svc_context.h 89 int64_t duration, int deadline);
vpx_decoder.h 216 * \param[in] deadline Soft deadline the decoder should attempt to meet,
228 long deadline);
  /external/okhttp/okio/src/test/java/okio/
GzipSourceTest.java 225 @Override public Source deadline(Deadline deadline) { method in class:GzipSourceTest.ExhaustableSource
226 source.deadline(deadline);
  /frameworks/base/tests/JobSchedulerTestApp/src/com/android/demo/jobSchedulerApp/
MainActivity.java 139 String deadline = mDeadlineEditText.getText().toString(); local
140 if (deadline != null && !TextUtils.isEmpty(deadline)) {
141 builder.setOverrideDeadline(Long.valueOf(deadline) * 1000);
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/examples/
twopass_encoder.c 31 // example, except the deadline is set to VPX_DL_BEST_QUALITY to get the
74 unsigned int deadline,
79 deadline);
99 unsigned int deadline,
104 deadline);
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vpx/
svc_context.h 89 int64_t duration, int deadline);
vpx_decoder.h 216 * \param[in] deadline Soft deadline the decoder should attempt to meet,
228 long deadline);
  /frameworks/base/packages/Keyguard/src/com/android/keyguard/
KeyguardPatternView.java 176 long deadline = mLockPatternUtils.getLockoutAttemptDeadline(); local
177 if (deadline != 0) {
178 handleAttemptLockout(deadline);
234 long deadline = mLockPatternUtils.setLockoutAttemptDeadline(); local
235 handleAttemptLockout(deadline);
  /packages/apps/Settings/src/com/android/settings/
ConfirmLockPassword.java 181 long deadline = mLockPatternUtils.getLockoutAttemptDeadline(); local
182 if (deadline != 0) {
183 handleAttemptLockout(deadline);
209 long deadline = mLockPatternUtils.setLockoutAttemptDeadline(); local
210 handleAttemptLockout(deadline);
  /external/chromium_org/mojo/android/system/src/org/chromium/mojo/system/impl/
CoreImpl.java 81 public WaitManyResult waitMany(List<Pair<Handle, HandleSignals>> handles, long deadline) {
92 int code = nativeWaitMany(buffer, deadline);
105 public int wait(Handle handle, HandleSignals signals, long deadline) {
107 signals.getFlags(), deadline));
193 public Cancellable asyncWait(Handle handle, HandleSignals signals, long deadline,
195 return nativeAsyncWait(getMojoHandle(handle), signals.getFlags(), deadline, callback);
624 private native int nativeWaitMany(ByteBuffer buffer, long deadline);
635 private native int nativeWait(int mojoHandle, int signals, long deadline);
668 long deadline, AsyncWaiter.Callback callback);
  /external/chromium_org/mojo/android/system/
core_impl.cc 59 jlong deadline) {
72 return MojoWaitMany(handle_start, signals_start, nb_handles, deadline);
143 jlong deadline) {
144 return MojoWait(mojo_handle, signals, deadline);
336 jlong deadline,
343 mojo_handle, signals, deadline, AsyncWaitCallback, callback_data);
  /external/chromium_org/chrome/test/chromedriver/net/
sync_websocket_impl.cc 79 base::TimeTicks deadline = base::TimeTicks::Now() + timeout; local
85 next_wait = deadline - base::TimeTicks::Now();
  /external/chromium_org/mojo/public/python/src/
python_system_helper.cc 150 MojoDeadline deadline,
157 handle, signals, deadline, &AsyncCallbackForwarder, callback.get());
  /external/chromium_org/third_party/libvpx/source/libvpx/vpx/internal/
vpx_codec_internal.h 200 long deadline);
257 unsigned long deadline);
  /external/qemu/android/
iolooper-select.c 232 iolooper_wait_absolute(IoLooper* iol, int64_t deadline)
234 int64_t timeout = deadline - iolooper_now();
236 /* If the deadline has passed, set the timeout to 0, this allows us
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/spdy/
SpdyStream.java 26 import okio.Deadline;
465 @Override public Source deadline(Deadline deadline) { method in class:SpdyStream.SpdyDataSource
552 @Override public Sink deadline(Deadline deadline) { method in class:SpdyStream.SpdyDataSink
  /external/chromium_org/mojo/public/js/bindings/
core.js 124 * satisfied or until |deadline| is passed. See MojoWait for more information.
128 * @param {MojoDeadline} deadline Stops waiting if this is reached.
131 function wait(handle, signals, deadline) { [native code] }
136 * |flags[handles.length-1]|, respectively, or until |deadline| has passed.
142 * @param {MojoDeadline} deadline Stops waiting if this is reached.
145 function waitMany(handles, signals, deadline) { [native code] }
  /libcore/jsr166-tests/src/test/java/jsr166/
LockSupportTest.java 39 LockSupport.parkUntil(deadline(millis)); method
57 LockSupport.parkUntil(theBlocker(), deadline(millis)); method
70 /** Returns a deadline to use with parkUntil. */
71 long deadline(long millis) { method in class:LockSupportTest.ParkMethod
  /external/apache-http/src/org/apache/http/impl/conn/tsccm/
ConnPoolByRoute.java 273 Date deadline = null;
275 deadline = new Date
344 success = waitingThread.await(deadline);
356 if (!success && (deadline != null) &&
357 (deadline.getTime() <= System.currentTimeMillis())) {
  /libcore/luni/src/main/java/java/util/concurrent/locks/
AbstractQueuedLongSynchronizer.java 664 final long deadline = System.nanoTime() + nanosTimeout; local
676 nanosTimeout = deadline - System.nanoTime();
764 final long deadline = System.nanoTime() + nanosTimeout; local
779 nanosTimeout = deadline - System.nanoTime();
1819 final long deadline = System.nanoTime() + nanosTimeout; local
1903 final long deadline = System.nanoTime() + nanosTimeout; local
    [all...]
AbstractQueuedSynchronizer.java 894 final long deadline = System.nanoTime() + nanosTimeout; local
994 final long deadline = System.nanoTime() + nanosTimeout; local
2047 final long deadline = System.nanoTime() + nanosTimeout; local
2131 final long deadline = System.nanoTime() + nanosTimeout; local
    [all...]
  /external/chromium_org/mojo/system/
core.cc 125 MojoDeadline deadline,
132 deadline,
143 MojoDeadline deadline,
160 deadline,
171 deadline,
552 MojoDeadline deadline,
588 rv = waiter.Wait(deadline, result_index);
  /external/chromium_org/third_party/libvpx/source/libvpx/vp9/
vp9_dx_iface.c 273 void *user_priv, int64_t deadline) {
278 (void)deadline;
330 void *user_priv, long deadline) {
369 deadline);
376 res = decode_one(ctx, &data_start, data_sz, user_priv, deadline);
402 deadline);
412 user_priv, deadline);
  /external/chromium_org/remoting/host/linux/
linux_me2me_host.py 866 def waitpid_with_timeout(pid, deadline):
868 or the deadline elapses.
872 deadline: Waiting stops when time.time() exceeds this value.
881 while time.time() < deadline:
889 def waitpid_handle_exceptions(pid, deadline):
891 either a child process exits or the deadline elapses, and retries if certain
896 deadline: If non-zero, waiting stops when time.time() exceeds this value.
908 this function sleeps until |deadline|. If |deadline| is zero, this is an
913 if deadline == 0
    [all...]

Completed in 844 milliseconds

1 2 3 45 6 7 8 910