/external/tlsdate/ |
D | events.dot | 11 sleep -> wake; 12 wake -> sync; 15 wake -> terminate; 24 periodic_local_clock_check -> wake; 25 periodic_network_sync -> wake; 26 random_sigterm -> wake; 27 random_route_change -> wake; 32 dbus-> cros_shill_manager_change -> wake; 33 dbus-> cros_shill_service_change -> wake;
|
/external/libgdx/extensions/gdx-box2d/gdx-box2d/src/com/badlogic/gdx/physics/box2d/ |
D | Body.java | 297 public void applyForce (Vector2 force, Vector2 point, boolean wake) { in applyForce() argument 298 jniApplyForce(addr, force.x, force.y, point.x, point.y, wake); in applyForce() 308 public void applyForce (float forceX, float forceY, float pointX, float pointY, boolean wake) { in applyForce() argument 309 jniApplyForce(addr, forceX, forceY, pointX, pointY, wake); in applyForce() 312 …jniApplyForce (long addr, float forceX, float forceY, float pointX, float pointY, boolean wake); /* in jniApplyForce() argument 319 public void applyForceToCenter (Vector2 force, boolean wake) { in applyForceToCenter() argument 320 jniApplyForceToCenter(addr, force.x, force.y, wake); in applyForceToCenter() 326 public void applyForceToCenter (float forceX, float forceY, boolean wake) { in applyForceToCenter() argument 327 jniApplyForceToCenter(addr, forceX, forceY, wake); in applyForceToCenter() 330 private native void jniApplyForceToCenter (long addr, float forceX, float forceY, boolean wake); /* in jniApplyForceToCenter() argument [all …]
|
/external/libgdx/extensions/gdx-box2d/gdx-box2d/jni/Box2D/Dynamics/ |
D | b2Body.h | 203 void ApplyForce(const b2Vec2& force, const b2Vec2& point, bool wake); 208 void ApplyForceToCenter(const b2Vec2& force, bool wake); 215 void ApplyTorque(float32 torque, bool wake); 223 void ApplyLinearImpulse(const b2Vec2& impulse, const b2Vec2& point, bool wake); 228 void ApplyAngularImpulse(float32 impulse, bool wake); 737 inline void b2Body::ApplyForce(const b2Vec2& force, const b2Vec2& point, bool wake) in ApplyForce() argument 744 if (wake && (m_flags & e_awakeFlag) == 0) in ApplyForce() 757 inline void b2Body::ApplyForceToCenter(const b2Vec2& force, bool wake) in ApplyForceToCenter() argument 764 if (wake && (m_flags & e_awakeFlag) == 0) in ApplyForceToCenter() 776 inline void b2Body::ApplyTorque(float32 torque, bool wake) in ApplyTorque() argument [all …]
|
/external/autotest/server/site_tests/firmware_ECPowerButton/ |
D | control | 21 - Short press wake system from G3 (shutdown for more than 10 sec) 22 - Short press wake system from S5 (shutdown for less than 10 sec) 23 - Long press wake system from G3 (shutdown for more than 10 sec) 24 - Long press wake system from S5 (shutdown for less than 10 sec)
|
/external/libgdx/extensions/gdx-box2d/gdx-box2d-gwt/src/com/badlogic/gdx/physics/box2d/gwt/emu/com/badlogic/gdx/physics/box2d/ |
D | Body.java | 154 public void applyForce (float forceX, float forceY, float pointX, float pointY, boolean wake) { in applyForce() argument 162 public void applyForceToCenter (Vector2 force, boolean wake) { in applyForceToCenter() argument 170 public void applyForceToCenter (float forceX, float forceY, boolean wake) { in applyForceToCenter() argument 178 public void applyTorque (float torque, boolean wake) { in applyTorque() argument 186 public void applyLinearImpulse (Vector2 impulse, Vector2 point, boolean wake) { in applyLinearImpulse() argument 189 body.applyLinearImpulse(tmp, tmp2, wake); in applyLinearImpulse() 198 …oid applyLinearImpulse (float impulseX, float impulseY, float pointX, float pointY, boolean wake) { in applyLinearImpulse() argument 201 body.applyLinearImpulse(tmp, tmp2, wake); in applyLinearImpulse() 206 public void applyAngularImpulse (float impulse, boolean wake) { in applyAngularImpulse() argument
|
/external/libgdx/extensions/gdx-box2d/gdx-box2d/jni/ |
D | com.badlogic.gdx.physics.box2d.Body.cpp | 173 …ct object, jlong addr, jfloat forceX, jfloat forceY, jfloat pointX, jfloat pointY, jboolean wake) { in Java_com_badlogic_gdx_physics_box2d_Body_jniApplyForce() argument 179 body->ApplyForce(b2Vec2(forceX, forceY), b2Vec2(pointX, pointY), wake); in Java_com_badlogic_gdx_physics_box2d_Body_jniApplyForce() 184 …rceToCenter(JNIEnv* env, jobject object, jlong addr, jfloat forceX, jfloat forceY, jboolean wake) { in Java_com_badlogic_gdx_physics_box2d_Body_jniApplyForceToCenter() argument 190 body->ApplyForceToCenter(b2Vec2(forceX, forceY), wake); in Java_com_badlogic_gdx_physics_box2d_Body_jniApplyForceToCenter() 195 …_box2d_Body_jniApplyTorque(JNIEnv* env, jobject object, jlong addr, jfloat torque, jboolean wake) { in Java_com_badlogic_gdx_physics_box2d_Body_jniApplyTorque() argument 201 body->ApplyTorque(torque, wake); in Java_com_badlogic_gdx_physics_box2d_Body_jniApplyTorque() 206 …bject, jlong addr, jfloat impulseX, jfloat impulseY, jfloat pointX, jfloat pointY, jboolean wake) { in Java_com_badlogic_gdx_physics_box2d_Body_jniApplyLinearImpulse() argument 212 body->ApplyLinearImpulse( b2Vec2( impulseX, impulseY ), b2Vec2( pointX, pointY ), wake); in Java_com_badlogic_gdx_physics_box2d_Body_jniApplyLinearImpulse() 217 …dy_jniApplyAngularImpulse(JNIEnv* env, jobject object, jlong addr, jfloat impulse, jboolean wake) { in Java_com_badlogic_gdx_physics_box2d_Body_jniApplyAngularImpulse() argument 223 body->ApplyAngularImpulse(impulse, wake); in Java_com_badlogic_gdx_physics_box2d_Body_jniApplyAngularImpulse()
|
/external/libgdx/backends/gdx-backends-gwt/src/com/badlogic/gdx/backends/gwt/emu/com/badlogic/gdx/utils/ |
D | Timer.java | 71 wake(); in scheduleTask() 88 wake(); in start() 140 static void wake () { in wake() method in Timer 243 wake(); in pause()
|
/external/libgdx/extensions/gdx-box2d/gdx-box2d/jni/Box2D/ |
D | CHANGES | 8 - Body#applyForce has a new parameter, wake, exposed in jni wrapper, added to GWT wrapper, but igno… 9 - Body#applyForceToCenter has a new parameter, wake, exposed in jni wrapper, added to GWT wrapper, … 10 - Body#applyTorque has a new parameter, wake, exposed in jni wrapper, added to GWT wrapper, but ign… 11 - Body#applyLinearImpulse has a new parameter, wake, exposed in jni wrapper, added to GWT wrapper, … 12 - Body#applyAngularImpulse has a new parameter, wake, exposed in jni wrapper, added to GWT wrapper,…
|
/external/libgdx/gdx/src/com/badlogic/gdx/utils/ |
D | Timer.java | 75 wake(); in scheduleTask() 93 wake(); in start() 154 static void wake () { in wake() method in Timer 282 wake(); in pause()
|
/external/autotest/server/site_tests/network_WiFi_DarkResumeActiveScans/ |
D | control | 16 When wake on WiFi is supported and enabled, our system could wake up from 34 triggering these wake events and analyzing packet captures to ensure that the
|
/external/autotest/server/site_tests/firmware_ECWakeSource/ |
D | control | 9 PURPOSE = "Servo based EC wake source test" 10 CRITERIA = "This test will fail if EC wake source misbehalved."
|
/external/autotest/client/site_tests/power_Standby/ |
D | control | 16 Test uses RTC wake to transistion from S3 to S0 every sample_hours for a total 19 2. Guarantee that S3 was maintained (no external/false wake)
|
/external/blktrace/ |
D | blkiomon.c | 272 struct timespec wake, r; in blkiomon_interval() local 276 clock_gettime(CLOCK_REALTIME, &wake); in blkiomon_interval() 279 wake.tv_sec += interval; in blkiomon_interval() 280 if (clock_nanosleep(CLOCK_REALTIME, TIMER_ABSTIME, &wake, &r)) { in blkiomon_interval() 296 tail = blkiomon_output(head, &wake); in blkiomon_interval()
|
/external/autotest/client/profilers/powertop/src/ |
D | README | 7 periods of time, rather than having to wake up every millisecond for 25 A typical Linux distribution has many components that wake the
|
D | Changelog | 70 These only show if these actually wake up the cpu 'a lot'; so if
|
/external/autotest/client/site_tests/touch_WakeupSource/ |
D | control.touchscreen | 22 listed as a wake source or not.
|
D | control.touchpad | 22 listed as a wake source or not.
|
/external/autotest/server/site_tests/network_WiFi_WakeOnWiFiThrottling/ |
D | control | 15 This test verifies that shill disables wake on WiFi when the DUT wakes up in
|
/external/skia/platform_tools/android/skp_gen/ |
D | android_skp_capture.py | 151 device.wake()
|
/external/valgrind/coregrind/m_gdbserver/ |
D | README_DEVELOPERS | 147 The relay process also takes into account the wake up of the valgrind 172 This wake up is *not* done using signals as this would imply to 273 To have a proper wake up of a Valgrind process with all threads 326 * Currently, at least on recent linux kernel, vgdb can properly wake
|
/external/libgdx/extensions/gdx-box2d/gdx-box2d-gwt/src/com/badlogic/gdx/physics/box2d/gwt/emu/org/jbox2d/dynamics/ |
D | Body.java | 524 public final void applyLinearImpulse(Vec2 impulse, Vec2 point, boolean wake) { in applyLinearImpulse() argument 530 if (wake) { in applyLinearImpulse()
|
/external/autotest/client/profilers/powertop/src/po/ |
D | nl.po | 275 "Older versions of gnome-power-manager wake up far more often than \n" 353 "Without HPET support the kernel needs to wake up every 20 milliseconds for \n"
|
D | fi.po | 198 "Poista Ethernet-verkkokortin verkkoherätteisyys (wake-on-lan) seuraavalla " 294 "Older versions of gnome-power-manager wake up far more often than \n" 403 "Without HPET support the kernel needs to wake up every 20 milliseconds for \n"
|
D | ru.po | 298 "Older versions of gnome-power-manager wake up far more often than \n" 406 "Without HPET support the kernel needs to wake up every 20 milliseconds for \n"
|
D | ja.po | 286 "Older versions of gnome-power-manager wake up far more often than \n" 394 "Without HPET support the kernel needs to wake up every 20 milliseconds for \n"
|