HomeSort by relevance Sort by last modified time
    Searched full:idle (Results 126 - 150 of 854) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/webkit/Tools/WebKitTestRunner/InjectedBundle/
InjectedBundle.cpp 52 , m_state(Idle)
144 m_state = Idle;
200 m_state = Idle;
InjectedBundle.h 107 Idle,
  /frameworks/base/include/media/stagefright/
CameraSourceTimeLapse.h 77 // Condition variable to wait on if camera is is not yet idle. Once the
78 // camera gets idle, this variable will be signalled.
86 // True if stop() is waiting for camera to get idle, i.e. for the last
  /frameworks/base/telephony/java/com/android/internal/telephony/
Call.java 30 IDLE, ACTIVE, HOLDING, DIALING, ALERTING, INCOMING, WAITING, DISCONNECTED, DISCONNECTING;
33 return !(this == IDLE || this == DISCONNECTED || this == DISCONNECTING);
48 public State state = State.IDLE;
Connection.java 62 CDMA_INTERCEPT, /* INTERCEPT order received, MS state idle entered */
171 * Returns getCall().getState() or Call.State.IDLE if not
180 return Call.State.IDLE;
  /frameworks/base/telephony/java/com/android/internal/telephony/cdma/
CdmaCall.java 36 /*package*/ State state = State.IDLE;
146 state = State.IDLE;
205 state = State.IDLE;
CdmaDataConnectionTracker.java 193 mPhone.getState() == Phone.State.IDLE) &&
209 mPhone.getState() == Phone.State.IDLE)) {
225 (mState == State.FAILED || mState == State.IDLE));
250 if ((mState == State.IDLE || mState == State.SCANNING) &&
419 if (mPhone.getState() == Phone.State.IDLE) {
544 setState(State.IDLE);
624 if (mState != State.IDLE) {
682 setState(State.IDLE);
    [all...]
  /frameworks/base/core/tests/ConnectivityManagerTest/src/com/android/connectivitymanagertest/stress/
WifiStressTest.java 61 * Wi-Fi idle time for default sleep policy
66 * The delay for Wi-Fi to get into idle, after screen off + WIFI_IDEL_MS + WIFI_IDLE_DELAY
67 * the Wi-Fi should be in idle mode and device should be in cellular mode.
264 sleep(WIFI_IDLE_MS, "Interruped while wait for wifi to be idle");
265 assertTrue("Wait for Wi-Fi to idle timeout",
  /sdk/sdkmanager/libs/sdkuilib/src/com/android/sdkuilib/internal/tasks/
ProgressView.java 44 IDLE,
45 /** A task is currently running. Next state is either STOP_PENDING or IDLE. */
47 /** Stop button has been clicked. Waiting for thread to finish. Next state is IDLE. */
52 private State mState = State.IDLE;
171 changeState(ProgressView.State.IDLE);
  /external/ppp/pppd/plugins/radius/etc/
dictionary.ascend 63 ATTRIBUTE Ascend-TS-Idle-Limit 169 integer
64 ATTRIBUTE Ascend-TS-Idle-Mode 170 integer
93 ATTRIBUTE Ascend-Token-Idle 199 integer
136 ATTRIBUTE Ascend-Idle-Limit 244 integer
146 ATTRIBUTE Ascend-MPP-Idle-Percent 254 integer
190 VALUE Ascend-TS-Idle-Mode TS-Idle-None 0
191 VALUE Ascend-TS-Idle-Mode TS-Idle-Input 1
192 VALUE Ascend-TS-Idle-Mode TS-Idle-Input-Output
    [all...]
  /frameworks/base/telephony/java/com/android/internal/telephony/gsm/
GsmDataConnectionTracker.java 132 apnContext.setState(State.IDLE);
404 case IDLE:
412 if (!isAnyEnabled) { // Nothing enabled. return IDLE.
413 if (DBG) log( "overall state is IDLE");
414 return State.IDLE;
421 if (DBG) log( "overall state is IDLE");
422 return State.IDLE;
465 case IDLE:
487 if (apnContext.getState() != State.IDLE && apnContext.getState() != State.FAILED) {
585 (mPhone.getState() == Phone.State.IDLE ||
    [all...]
  /external/chromium/chrome/common/extensions/docs/static/
whats_new.html 185 <li>The <a href="idle.html">idle API</a> allows you to detect when the
186 machine's idle state changes. </li>
  /external/chromium/net/socket/
client_socket_pool_base.cc 23 // The timeout value, in seconds, used to clean up idle sockets that can't be
26 // Note: It's important to close idle sockets that have received data as soon
180 // Clean up any idle sockets and pending connect jobs. Assert that we have no
376 // Iterate through the idle sockets forwards (oldest to newest)
378 // * If we find a used idle socket, assign to |idle_socket|. At the end,
379 // the |idle_socket_it| will be set to the newest used idle socket.
397 // If we haven't found an idle socket, that means there are no used idle
398 // sockets. Pick the oldest (first) idle socket (FIFO).
693 // Add it to the idle list
    [all...]
  /external/netperf/
netcpu_kstat.c 41 idle. The rate at which this increments during a test is compared
188 /* return the value of the idle tick counter for the specified CPU */
371 does not go south. raj 6/95 and if we run completely out of idle,
netcpu_osx.c 93 /* calibrate_sysctl - perform the idle rate calculation using the
  /bionic/libc/netbsd/isc/
ev_timers.c 485 struct timespec idle; local
490 idle = evSubTime(ctx->lastEventTime, this->lastTouched);
491 if (evCmpTime(idle, this->max_idle) >= 0) {
502 this->timer->inter = evSubTime(this->max_idle, idle);
  /device/samsung/maguro/overlay/frameworks/base/core/res/res/xml/
power_profile.xml 49 <item name="cpu.idle">7</item>
  /external/chromium/base/
message_pump_mac.h 99 // Perform idle-priority work. This is normally called by PreWaitObserver,
101 // actually does perform idle work, it will resignal that source. The
103 // true if idle work was done.
123 // Observer callback responsible for performing idle-priority work, before
  /external/chromium/net/proxy/
proxy_config_service.h 61 // the disadvantage of doing continuous work even during idle periods.