Searched defs:idle (Results 1 - 20 of 20) sorted by relevance

/external/ppp/pppd/plugins/
H A Dminconn.c45 "Set minimum connect time before idle timeout applies" },
49 static int my_get_idle(struct ppp_idle *idle) argument
53 if (idle == NULL)
55 t = idle->xmit_idle;
56 if (idle->recv_idle < t)
57 t = idle->recv_idle;
/external/kernel-headers/original/linux/
H A Dkernel_stat.h23 cputime64_t idle; member in struct:cpu_usage_stat
/external/qemu/slirp/
H A Dtcp_output.c76 int idle, sendalot; local
87 idle = (tp->snd_max == tp->snd_una);
88 if (idle && tp->t_idle >= tp->t_rxtcur)
90 * We have been idle for "a while" and no acks are
167 * Sender silly window avoidance. If connection is idle
179 if ((1 || idle || tp->t_flags & TF_NODELAY) &&
234 * idle not doing retransmits or persists
244 * The output side is idle when both timers are zero.
/external/qemu/slirp-android/
H A Dtcp_output.c76 int idle, sendalot; local
87 idle = (tp->snd_max == tp->snd_una);
88 if (idle && tp->t_idle >= tp->t_rxtcur)
90 * We have been idle for "a while" and no acks are
167 * Sender silly window avoidance. If connection is idle
179 if ((1 || idle || tp->t_flags & TF_NODELAY) &&
234 * idle not doing retransmits or persists
244 * The output side is idle when both timers are zero.
/external/qemu/
H A Dasync.c122 int idle; member in struct:QEMUBH
147 if (!bh->idle)
149 bh->idle = 0;
173 bh->idle = 1;
181 bh->idle = 0;
203 if (bh->idle) {
204 /* idle bottom halves will be polled at least
208 /* non-idle bottom halves will be executed
H A Dconsole.h169 int idle; member in struct:DisplayChangeListener
/external/webrtc/src/system_wrappers/source/
H A Dcpu_linux.cc67 long long idle = 0; local
68 if (GetData(busy, idle, m_busyArray, m_idleArray) != 0)
72 long long deltaIdle = idle - m_oldIdleTime;
74 m_oldIdleTime = idle;
110 int CpuLinux::GetData(long long& busy, long long& idle, long long*& busyArray, argument
148 idle = lidle;
/external/bluetooth/glib/gio/
H A Dgunixinputstream.c475 /* Complete immediately, not in idle, since we're already in a mainloop callout */
613 /* Complete immediately, not in idle, since we're already in a mainloop callout */
627 GSource *idle; local
636 idle = g_idle_source_new ();
637 g_source_set_callback (idle, (GSourceFunc)close_async_cb, data, close_async_data_free);
638 g_source_attach (idle, NULL);
639 g_source_unref (idle);
H A Dgunixoutputstream.c462 /* Complete immediately, not in idle, since we're already in a mainloop callout */
569 /* Complete immediately, not in idle, since we're already in a mainloop callout */
583 GSource *idle; local
592 idle = g_idle_source_new ();
593 g_source_set_callback (idle, (GSourceFunc)close_async_cb, data, g_free);
594 g_source_attach (idle, NULL);
595 g_source_unref (idle);
/external/bluetooth/glib/tests/
H A Dthreadpool-test.c67 DEBUG_MSG (("[funcs] Setting max idle time to %d",
71 DEBUG_MSG (("[funcs] Getting max idle time = %d",
75 DEBUG_MSG (("[funcs] Setting max idle time to 0"));
78 DEBUG_MSG (("[funcs] Getting max idle time = %d",
115 DEBUG_MSG (("[unused] ===> pushed %d threads onto the idle pool",
132 DEBUG_MSG (("[unused] stopped idle threads, %d remain, %d threads still exist",
317 DEBUG_MSG (("[idle] ---> entered thread:%2.2d", thread_id));
321 DEBUG_MSG (("[idle] <--- exiting thread:%2.2d", thread_id));
334 DEBUG_MSG (("[idle] ===> pushed new thread with id:%d, number "
366 DEBUG_MSG (("[idle]
444 guint idle; local
[all...]
/external/chromium/chrome/browser/renderer_host/
H A Dweb_cache_manager.cc400 TimeDelta idle = Time::Now() - elmt->second.access; local
401 if (idle >= TimeDelta::FromMinutes(kRendererInactiveThresholdMinutes)) {
/external/netperf/
H A Dnetcpu_kstat10.c45 uint64_t idle; member in struct:cpu_time_counters
61 "\t idle %llu\n",counters[instance].idle);
144 counters[cpu_num].idle = knp->value.ui64;
294 counters is not going to use a comparison to an idle rate. so, the
352 spent in user, idle and kernel. We also have nanoseconds spent
356 idle will also include time spent in interrupt. for netperf's
358 but we certainly do care for idle. the $64B question becomes -
361 we could just subtract interrupt time from idle. that has the
366 time from each of user, kernel and idle i
[all...]
H A Dnetcpu_pstatnew.c42 uint64_t idle; member in struct:cpu_time_counters
55 idle. The rate at which this increments during a test is compared
84 /* get the idle sycle counter for each processor. now while on a
104 res[i].idle = (((uint64_t)psp[i].psp_idlecycles.psc_hi << 32) +
110 res[i].idle);
161 "\t idle %llu\n",counters[instance].idle);
227 thing in measuring user, kernel, interrupt and idle all together
231 properly accounted. The sum of user, kernel, interrupt and idle
237 idle cycle
[all...]
/external/replicaisland/src/com/replica/replicaisland/
H A DNPCAnimationComponent.java48 // to idle when running into a wall
74 idle(parentObject);
190 protected void idle(GameObject parentObject) { method in class:NPCAnimationComponent
/external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/transport/
H A DTransportManager.java654 private boolean idle; field in class:TransportManager
695 idle = false;
725 if (idle)
732 idle = true;
/external/qemu/hw/
H A Dusb-hid.c68 uint8_t idle; member in struct:USBHIDState
794 data[0] = s->idle;
797 s->idle = (uint8_t) (value >> 8);
816 /* TODO: Implement finite idle delays. */
817 if (!(s->changed || s->idle))
/external/ppp/pppd/
H A Dauth.c168 /* Hook to enable a plugin to control the idle time limit */
1144 * check_idle - check whether the link has been idle for long
1151 struct ppp_idle idle; local
1155 if (!get_idle_time(0, &idle))
1158 tlim = idle_time_hook(&idle);
1160 itime = MIN(idle.xmit_idle, idle.recv_idle);
1164 /* link is idle: shut it down. */
/external/quake/quake/src/QW/server/
H A Dserver.h207 double idle; member in struct:__anon10217
/external/wpa_supplicant_8/wpa_supplicant/
H A Dp2p_supplicant.c3406 static void wpas_p2p_idle_update(void *ctx, int idle) argument
3411 wpa_printf(MSG_DEBUG, "P2P: GO - group %sidle", idle ? "" : "not ");
3412 if (idle) {
3413 wpa_printf(MSG_DEBUG,"Calling set group idle time out from idle_update");
3934 wpa_printf(MSG_DEBUG, "P2P: Ignore group idle timeout - "
3939 wpa_printf(MSG_DEBUG, "P2P: Group idle timeout reached - terminate %d"
3962 wpa_printf(MSG_DEBUG, "P2P: Set P2P group idle timeout to %u seconds",
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.mortbay.jetty.util_6.1.23.v201004211559.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...

Completed in 362 milliseconds