Home
last modified time | relevance | path

Searched refs:idle (Results 1 – 25 of 110) sorted by relevance

12345

/external/ppp/pppd/plugins/
Dminconn.c49 static int my_get_idle(struct ppp_idle *idle) in my_get_idle() argument
53 if (idle == NULL) in my_get_idle()
55 t = idle->xmit_idle; in my_get_idle()
56 if (idle->recv_idle < t) in my_get_idle()
57 t = idle->recv_idle; in my_get_idle()
/external/netperf/
Dnetcpu_kstat10.c45 uint64_t idle; member
61 "\t idle %llu\n",counters[instance].idle); in print_cpu_time_counters()
144 counters[cpu_num].idle = knp->value.ui64; in get_cpu_counters()
383 delta_cpu_counters[i].idle = ending_cpu_counters[i].idle - in calc_cpu_util_internal()
384 starting_cpu_counters[i].idle; in calc_cpu_util_internal()
398 delta_cpu_counters[i].idle + in calc_cpu_util_internal()
419 "\t delta[%d].idle %llu\n",i,delta_cpu_counters[i].idle); in calc_cpu_util_internal()
436 (delta_cpu_counters[i].idle * CALC_ACCURACY) / total_cpu_nsec; in calc_cpu_util_internal()
470 corrected_cpu_counters[i].idle = delta_cpu_counters[i].idle - in calc_cpu_util_internal()
495 corrected_cpu_counters[i].idle + in calc_cpu_util_internal()
[all …]
Dnetcpu_pstatnew.c42 uint64_t idle; member
104 res[i].idle = (((uint64_t)psp[i].psp_idlecycles.psc_hi << 32) + in get_cpu_counters()
110 res[i].idle); in get_cpu_counters()
161 "\t idle %llu\n",counters[instance].idle); in print_cpu_time_counters()
254 delta_cpu_counters[i].idle = ending_cpu_counters[i].idle - in calc_cpu_util_internal()
255 starting_cpu_counters[i].idle; in calc_cpu_util_internal()
270 delta_cpu_counters[i].idle + in calc_cpu_util_internal()
292 fraction_idle = (double)delta_cpu_counters[i].idle / in calc_cpu_util_internal()
337 (delta_cpu_counters[i].idle * CALC_ACCURACY) / sanity_cpu_cycles; in calc_cpu_util_internal()
Dnetcpu_perfstat.c107 res[i] = per_cpu_pointer->idle; in get_cpu_idle()
189 firstcnt[j] = per_cpu_pointer->idle; in calibrate_idle_rate()
231 secondcnt[j] = per_cpu_pointer->idle; in calibrate_idle_rate()
/external/replicaisland/src/com/replica/replicaisland/
DGameObjectFactory.java728 SpriteAnimation idle = new SpriteAnimation(PlayerAnimations.IDLE.ordinal(), 1);
729idle.addFrame(new AnimationFrame(textureLibrary.allocateTexture(R.drawable.andou_stand),
853 staticData.add(idle);
1192 SpriteAnimation idle = new SpriteAnimation(EnemyAnimations.IDLE.ordinal(), 4);
1193 idle.addFrame(new AnimationFrame(
1196 idle.addFrame(new AnimationFrame(
1199 idle.addFrame(new AnimationFrame(
1202 idle.addFrame(new AnimationFrame(
1206 idle.setLoop(true);
1223 staticData.add(idle);
[all …]
/external/qemu/
Dasync.c122 int idle; member
147 if (!bh->idle) in qemu_bh_poll()
149 bh->idle = 0; in qemu_bh_poll()
173 bh->idle = 1; in qemu_bh_schedule_idle()
181 bh->idle = 0; in qemu_bh_schedule()
203 if (bh->idle) { in qemu_bh_update_timeout()
/external/iputils/Modules/
Dpg3.c195 u32 idle_start, idle; in nanospin() local
201 idle = get_cycles() - idle_start; in nanospin()
202 if (idle*1000 >= pg_ipg*pg_cpu_speed) in nanospin()
205 idle_acc_lo += idle; in nanospin()
206 if (idle_acc_lo < idle) in nanospin()
347 u32 total, idle; in pg_inject() local
389 u32 idle_start, idle; in pg_inject() local
397 idle = get_cycles() - idle_start; in pg_inject()
398 idle_acc_lo += idle; in pg_inject()
399 if (idle_acc_lo < idle) in pg_inject()
[all …]
/external/oprofile/events/ppc64/power7/
Devents23 …. The run latch is typically cleared in the OS idle loop. Gating by the run latch filters out th…
27 …. The run latch is typically cleared in the OS idle loop. Gating by the run latch filters out th…
35 …. The run latch is typically cleared in the OS idle loop. Gating by the run latch filters out th…
43 …. The run latch is typically cleared in the OS idle loop. Gating by the run latch filters out th…
51 …. The run latch is typically cleared in the OS idle loop. Gating by the run latch filters out th…
59 …. The run latch is typically cleared in the OS idle loop. Gating by the run latch filters out th…
67 …. The run latch is typically cleared in the OS idle loop. Gating by the run latch filters out th…
75 …. The run latch is typically cleared in the OS idle loop. Gating by the run latch filters out th…
83 …. The run latch is typically cleared in the OS idle loop. Gating by the run latch filters out th…
91 …. The run latch is typically cleared in the OS idle loop. Gating by the run latch filters out th…
[all …]
/external/webrtc/src/system_wrappers/source/
Dcpu_linux.cc67 long long idle = 0; in CpuUsageMultiCore() local
68 if (GetData(busy, idle, m_busyArray, m_idleArray) != 0) in CpuUsageMultiCore()
72 long long deltaIdle = idle - m_oldIdleTime; in CpuUsageMultiCore()
74 m_oldIdleTime = idle; in CpuUsageMultiCore()
110 int CpuLinux::GetData(long long& busy, long long& idle, long long*& busyArray, in GetData() argument
148 idle = lidle; in GetData()
Dcpu_linux.h34 int GetData(long long& busy, long long& idle, long long*& busyArray,
/external/chromium_org/content/browser/loader/
Dresource_scheduler_unittest.cc378 scoped_ptr<TestRequest> idle(NewRequest("http://host/idle", net::IDLE)); in TEST_F() local
380 EXPECT_FALSE(idle->started()); in TEST_F()
384 EXPECT_FALSE(idle->started()); in TEST_F()
395 EXPECT_FALSE(idle->started()); in TEST_F()
404 scoped_ptr<TestRequest> idle(NewRequest("http://host/idle", net::IDLE)); in TEST_F() local
406 EXPECT_FALSE(idle->started()); in TEST_F()
410 EXPECT_FALSE(idle->started()); in TEST_F()
424 EXPECT_TRUE(idle->started()); in TEST_F()
433 scoped_ptr<TestRequest> idle(NewRequest("http://host/idle", net::IDLE)); in TEST_F() local
435 EXPECT_FALSE(idle->started()); in TEST_F()
[all …]
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
DShadowLooper.java100 shadowOf(Looper.getMainLooper()).idle(interval);
107 public void idle() {
117 public void idle(long intervalMillis) {
/external/libppp/src/
Dbundle.c239 != bundle->phys_type.open && bundle->idle.timer.state == TIMER_STOPPED) in bundle_LinkAdded()
828 bundle.cfg.idle.timeout = NCP_IDLE_TIMEOUT; in bundle_Create()
829 bundle.cfg.idle.min_timeout = 0; in bundle_Create()
884 memset(&bundle.idle.timer, '\0', sizeof bundle.idle.timer); in bundle_Create()
885 bundle.idle.done = 0; in bundle_Create()
917 timer_Stop(&bundle->idle.timer); in bundle_Destroy()
1106 if (arg->bundle->cfg.idle.timeout) { in bundle_ShowStatus()
1107 prompt_Printf(arg->prompt, "%us", arg->bundle->cfg.idle.timeout); in bundle_ShowStatus()
1108 if (arg->bundle->cfg.idle.min_timeout) in bundle_ShowStatus()
1110 arg->bundle->cfg.idle.min_timeout); in bundle_ShowStatus()
[all …]
Dbundle.h108 } idle; member
134 } idle; member
/external/chromium_org/chrome/browser/extensions/api/idle/
Didle_manager.cc22 namespace idle = extensions::api::idle;
56 scoped_ptr<Event> event(new Event(idle::OnStateChanged::kEventName, in OnStateChanged()
66 observer, idle::OnStateChanged::kEventName); in RegisterObserver()
/external/chromium_org/chrome/common/extensions/docs/examples/extensions/benchmark/
DREADME.txt8 Between each page load you can optionally clear idle http connections and
14 the benchmark can clear idle connections and the cache.
/external/chromium/chrome/common/extensions/docs/examples/extensions/benchmark/
DREADME.txt8 Between each page load you can optionally clear idle http connections and
14 the benchmark can clear idle connections and the cache.
/external/qemu/slirp/
Dtcp_output.c76 int idle, sendalot; local
87 idle = (tp->snd_max == tp->snd_una);
88 if (idle && tp->t_idle >= tp->t_rxtcur)
179 if ((1 || idle || tp->t_flags & TF_NODELAY) &&
/external/qemu/slirp-android/
Dtcp_output.c76 int idle, sendalot; local
87 idle = (tp->snd_max == tp->snd_una);
88 if (idle && tp->t_idle >= tp->t_rxtcur)
179 if ((1 || idle || tp->t_flags & TF_NODELAY) &&
/external/chromium_org/chrome/common/extensions/docs/examples/api/idle/idle_simple/
Dbackground.js10 chrome.idle.onStateChanged.addListener(function(newstate) {
/external/chromium_org/chrome/browser/
Didle_query_x11.cc44 return (idle_data_->mit_info->idle) / 1000; in IdleTime()
/external/kernel-headers/original/asm-mips/
Dsmp-ops.h24 void (*boot_secondary)(int cpu, struct task_struct *idle);
/external/chromium/chrome/browser/sync/engine/
Didle_query_linux.cc44 return (idle_data_->mit_info->idle) / 1000; in IdleTime()
/external/chromium_org/third_party/libjingle/source/talk/base/
Dcpumonitor.cc274 unsigned long long idle; in GetSystemLoad() local
277 &system, &idle) != 4) { in GetSystemLoad()
282 const uint64 total_times = cpu_times + idle; in GetSystemLoad()
/external/kernel-headers/original/linux/
Dkernel_stat.h23 cputime64_t idle; member

12345