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

12

/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/autotest/client/cros/
H A Dmainloop.py48 def idle(self): member in class:ExceptionForwardingMainLoop
49 raise Exception('idle must be overridden')
63 gobject.idle_add(self.idle)
82 def idle(self): member in class:GenericTesterMainLoop
/external/syslinux/com32/include/syslinux/
H A Dpmapi.h68 void (*idle)(void); member in struct:com32_pmapi
/external/drm_hwcomposer/
H A Dqueue_worker.h45 bool idle() const { function in class:android::QueueWorker
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowLooper.java13 * that are scheduled to run immediately can be triggered by calling {@link #idle()}
100 shadowOf(Looper.getMainLooper()).idle(interval);
107 public void idle() { method in class:ShadowLooper
117 public void idle(long intervalMillis) { method in class:ShadowLooper
/external/autotest/client/site_tests/network_3GDormancyDance/
H A Dnetwork_3GDormancyDance.py141 def idle(self): member in class:DormancyTester
/external/libvncserver/test/
H A Dencodingstest.c205 static void idle(rfbScreenInfo* server) function
305 idle(server);
/external/netperf/src/
H A Dnetcpu_kstat10.c45 uint64_t idle; member in struct:cpu_time_counters
61 "\t idle %llu\n"
66 counters[instance].idle,
177 counters[cpu_num].idle = knp->value.ui64;
335 counters is not going to use a comparison to an idle rate. so, the
393 spent in user, idle and kernel. We also have nanoseconds spent
397 idle will also include time spent in interrupt. for netperf's
399 but we certainly do care for idle. the $64B question becomes -
402 we could just subtract interrupt time from idle. that has the
407 time from each of user, kernel and idle i
[all...]
H A Dnetcpu_procstat.c40 idle. The rate at which this increments during a test is compared
52 uint64_t idle; member in struct:cpu_states
185 (unsigned long long *)&res[i].idle,
199 (unsigned long long)res[i].idle,
284 diff.idle =
285 tick_subtract(lib_start_count[i].idle, lib_end_count[i].idle);
298 total_ticks = diff.user + diff.nice + diff.sys + diff.idle + diff.iowait
302 /* calculate idle time as a percentage of all CPU states */
310 /* utilization = 100% - %idle */
[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
106 /* get the idle sycle counter for each processor. now while on a
137 res[i].idle = (((uint64_t)psp[j].psp_idlecycles.psc_hi << 32) +
143 res[i].idle);
196 "\t idle %llu\n"
201 counters[instance].idle,
264 thing in measuring user, kernel, interrupt and idle all together
268 properly accounted. The sum of user, kernel, interrupt and idle
274 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/toybox/toys/other/
H A Dvmstat.c22 of CPU time spent running user code, system code, idle, and awaiting I/O.
33 uint64_t user, nice, sys, idle, wait, irq, sirq, intr, ctxt, running, blocked; member in struct:vmstat_proc
128 // add up user, sys, idle, and wait time used since last time
134 // cache, swap_in, swap_out, io_in, io_out, sirq, ctxt, user, sys, idle,wait
/external/iputils/Modules/
H A Dpg3.c195 u32 idle_start, idle; local
201 idle = get_cycles() - idle_start;
202 if (idle*1000 >= pg_ipg*pg_cpu_speed)
205 idle_acc_lo += idle;
206 if (idle_acc_lo < idle)
347 u32 total, idle; local
389 u32 idle_start, idle; local
397 idle = get_cycles() - idle_start;
398 idle_acc_lo += idle;
399 if (idle_acc_lo < idle)
406 u32 idle_start, idle; local
[all...]
/external/kernel-headers/original/uapi/linux/
H A Dax25.h93 unsigned int idle, idletimer; member in struct:ax25_info_struct_deprecated
103 unsigned int idle, idletimer; member in struct:ax25_info_struct
/external/syslinux/core/lwip/src/netif/ppp/
H A Dauth.c138 /* Hook to enable a plugin to control the idle time limit */
744 * check_idle - check whether the link has been idle for long
750 struct ppp_idle idle; local
754 if (!get_idle_time(0, &idle)) {
757 itime = LWIP_MIN(idle.xmit_idle, idle.recv_idle);
759 /* link is idle: shut it down. */
/external/ltp/tools/top-LTP/proc/
H A Dsysinfo.c72 double up = 0, idle = 0; local
78 if (sscanf(buf, "%lf %lf", &up, &idle) < 2) {
85 SET_IF_DESIRED(idle_secs, idle);
247 * The /proc filesystem calculates idle=jiffies-(user+nice+sys) and we
249 * (as of pre-2.4 era) can report idle time going backwards, perhaps due
/external/kernel-headers/original/uapi/drm/
H A Dr128_drm.h255 int idle; member in struct:drm_r128_cce_stop
H A Dradeon_drm.h595 int idle; member in struct:drm_radeon_cp_stop
/external/libdrm/include/drm/
H A Dr128_drm.h249 int idle; member in struct:drm_r128_cce_stop
H A Dradeon_drm.h589 int idle; member in struct:drm_radeon_cp_stop
/external/ppp/pppd/
H A Dauth.c163 /* Hook to enable a plugin to control the idle time limit */
1175 * check_idle - check whether the link has been idle for long
1182 struct ppp_idle idle; local
1186 if (!get_idle_time(0, &idle))
1189 tlim = idle_time_hook(&idle);
1191 itime = MIN(idle.xmit_idle, idle.recv_idle);
1195 /* link is idle: shut it down. */
/external/libdrm/intel/
H A Dintel_bufmgr_gem.c255 bool idle; member in struct:_drm_intel_bo_gem
657 if (bo_gem->reusable && bo_gem->idle)
665 bo_gem->idle = !busy.busy;
2323 bo_gem->idle = false;
2420 bo_gem->idle = false;
/external/syslinux/gpxe/src/drivers/net/
H A Dns83820.c372 long idle; member in struct:ns83820_private
495 ns->idle = 1;
/external/wpa_supplicant_8/wpa_supplicant/
H A Dp2p_supplicant.c927 wpa_printf(MSG_DEBUG, "P2P: Cancelled P2P group idle timeout");
6321 static void wpas_p2p_idle_update(void *ctx, int idle) argument
6326 wpa_printf(MSG_DEBUG, "P2P: GO - group %sidle", idle ? "" : "not ");
6327 if (idle) {
6409 * something goes wrong in this step before the P2P group idle
7089 wpa_printf(MSG_DEBUG, "P2P: Ignore group idle timeout - "
7094 wpa_printf(MSG_DEBUG, "P2P: Group idle timeout reached - terminate "
7105 wpa_printf(MSG_DEBUG, "P2P: Cancelled P2P group idle timeout");
7129 * early due to group idle timeout.
7131 wpa_printf(MSG_DEBUG, "P2P: Do not use P2P group idle timeou
[all...]
/external/toybox/generated/
H A Dglobals.h167 long idle; // -W Wait # seconds for more data member in struct:netcat_data

Completed in 2410 milliseconds

12