HomeSort by relevance Sort by last modified time
    Searched full:idle (Results 576 - 600 of 2399) sorted by null

<<21222324252627282930>>

  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/http/
HttpConnection.java 64 private static final int STATE_IDLE = 0; // Idle connections are ready to write request headers.
110 // If we're already idle, go to the pool immediately.
112 onIdle = ON_IDLE_HOLD; // Set the on idle policy back to the default.
124 // If we're already idle, close immediately.
376 onIdle = ON_IDLE_HOLD; // Set the on idle policy back to the default.
  /frameworks/base/docs/html/reference/android/support/test/espresso/
IdlingPolicy.html 321 <p>The amount of time the policy allows a resource to be non-idle.
375 <p>Invoked when the idle idleTimeout has been exceeded.
717 <p>The amount of time the policy allows a resource to be non-idle.
776 <p>Invoked when the idle idleTimeout has been exceeded.</p>
783 the resources that are not idle.</td>
  /frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/
CallManagerTest.java 102 /* Mock Phone and Call, initially all calls are idle */
110 doReturn(Call.State.IDLE).when(mBgCall).getState();
111 doReturn(Call.State.IDLE).when(mFgCall).getState();
112 doReturn(Call.State.IDLE).when(mRingingCall).getState();
285 /* try dial with non-idle foreground call and background call */
  /frameworks/base/core/java/android/app/
UiAutomation.java 622 * Waits for the accessibility event stream to become idle, which is not to
624 * The total time spent to wait for an idle accessibility event stream is bounded
628 * to consider the device idle.
630 * which to wait for an idle state.
632 * @throws TimeoutException If no idle state was detected within
647 // Did we get idle state within the global timeout?
652 throw new TimeoutException("No idle state with idle timeout: "
656 // Did we get an idle state within the idle timeout
    [all...]
  /system/bt/stack/include/
l2c_api.h 621 ** Description Higher layers call this function to set the idle timeout for
622 ** a connection, or for all future connections. The "idle timeout"
639 ** Description Higher layers call this function to set the idle timeout for
640 ** a connection. The "idle timeout" is the amount of time that
646 ** then the idle timeouts for all active l2cap links will be
    [all...]
  /external/libnfc-nci/halimpl/bcm2079x/hal/hal/
nfc_hal_dm.c     [all...]
  /frameworks/base/docs/html/training/monitoring-device-state/
doze-standby.jd 234 App Standby allows the system to determine that an app is idle when the user
256 execute any pending jobs and syncs. If the device is idle for long periods of
257 time, the system allows idle apps network access around once a day.
260 <h2 id="using_gcm">Using GCM to Interact with Your App While the Device is Idle</h2>
276 GCM is optimized to work with Doze and App Standby idle modes by means of
282 to idle state.
389 the device state changes to idle.</p>
  /frameworks/base/media/jni/soundpool/
SoundPool.cpp 295 if (sampleID == (*iter)->getPrevSampleID() && (*iter)->state() == SoundChannel::IDLE) {
442 // return to idle state
720 // if not idle, this voice is being stolen
721 if (mState != IDLE) {
891 if (mState == IDLE) {
941 if (mState != IDLE) {
947 mState = IDLE;
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/sip/
SipPhone.java 203 if (mForegroundCall.getState() != SipCall.State.IDLE) {
412 case SipSession.State.READY_TO_CALL: return Call.State.IDLE;
458 setState(Call.State.IDLE);
644 that.setState(Call.State.IDLE);
748 private Call.State mState = Call.State.IDLE;
    [all...]
  /cts/hostsidetests/atrace/src/android/atrace/cts/
AtraceHostTest.java 55 // <idle>-0 0 [001] d... 1.23: sched_switch
62 // <idle>-0 [001] d... 1.23: sched_switch
69 // <idle>-0 [001] 1.23: sched_switch
  /docs/source.android.com/src/security/authentication/
fingerprint-hal.jd 50 <p>The fingerprint sensor of a device generally is idle. But in response to a call
156 the HAL state machine is returned to the idle state.
164 is returned to the idle state.
  /external/antlr/antlr-3.4/antlr3-maven-plugin/
pom.xml 6 Maven Plugin - Copyright (c) 2009 Jim Idle
125 Jim Idle - March 2009
163 <name>Jim Idle</name>
  /external/apache-http/src/org/apache/http/impl/conn/tsccm/
AbstractConnPool.java 82 /** The handler for idle connections. */
238 * Closes idle connections.
240 * @param idletime the time the connections should have been idle
  /external/autotest/client/cros/
sys_power.py 179 will idle-suspend in time for this to happen. Returns the wake alarm time
188 # tell powerd something happened, or it will immediately idle-suspend again
191 logging.debug('Simulating user activity after idle suspend...')
  /external/autotest/client/site_tests/network_3GModemControl/
network_3GModemControl.py 231 check_idle: if True, then ensure that the service is idle
249 lambda: self.CompareServiceState(service, ['idle']),
250 error.TestFail('Service failed to enter idle state.'),
  /external/autotest/client/site_tests/video_HangoutHardwarePerf/
video_HangoutHardwarePerf.py 39 # Time in seconds to wait for cpu idle until giveup.
42 # Maximum percent of cpu usage considered as idle.
81 raise error.TestError('Could not get idle CPU.')
  /external/autotest/client/site_tests/video_PlaybackPerf/
video_PlaybackPerf.py 36 # Time in seconds to wait for cpu idle until giveup.
38 # Maximum percent of cpu usage considered as idle.
169 raise error.TestError('Could not get idle CPU.')
  /external/autotest/client/site_tests/video_WebRtcPerf/
video_WebRtcPerf.py 44 # Time in seconds to wait for cpu idle until giving up.
46 # Maximum percent of cpu usage considered as idle.
229 raise error.TestError('Could not get idle CPU.')
  /external/chromium-trace/catapult/tracing/tracing/ui/extras/side_panel/
time_summary_side_panel.html 154 'Show CPU idle time');
359 // If needed, add in the idle time.
369 label: 'CPU Idle',
  /external/libnfc-nci/src/hal/include/
nfc_hal_target.h 44 /* NFCC snooze mode idle timeout before deassert NFC_WAKE in ms */
54 /* Idle Threshold Host in 100ms unit */
59 /* Idle Threshold HC in 100ms unit */
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/
ConnectionPool.java 42 * <li>{@code http.maxConnections} maximum number of idle connections to
74 /** The maximum number of idle connections for each address. */
289 // If the pool has too many idle connections, gather more! Oldest to newest.
  /external/replicaisland/src/com/replica/replicaisland/
AnimationComponent.java 31 IDLE,
218 mSprite.playAnimation(PlayerAnimations.IDLE.ordinal());
250 mSprite.playAnimation(PlayerAnimations.IDLE.ordinal());
  /external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/shadows/
HandlerTest.java 55 shadowOf(looper).idle();
68 shadowOf(Looper.myLooper()).idle();
87 shadowOf(looper2).idle();
  /frameworks/base/core/java/android/app/job/
JobService.java 241 * idle maintenance window. You are solely responsible for the behaviour of your application
262 * idle mode will not be backed-off. Instead what will happen is the job will be re-added
263 * to the queue and re-executed within a future idle maintenance window.
  /frameworks/base/core/java/android/test/
InstrumentationTestCase.java 245 * Sends a series of key events through instrumentation and waits for idle. The sequence
300 * Sends a series of key events through instrumentation and waits for idle. For instance:
323 * Sends a series of key events through instrumentation and waits for idle. Each key code

Completed in 2032 milliseconds

<<21222324252627282930>>