HomeSort by relevance Sort by last modified time
    Searched refs:mPartialWakeLock (Results 1 - 5 of 5) sorted by null

  /frameworks/base/tests/BatteryWaster/src/com/android/batterywaster/
BatteryWaster.java 42 PowerManager.WakeLock mPartialWakeLock;
68 mPartialWakeLock = pm.newWakeLock(PowerManager.PARTIAL_WAKE_LOCK, "BatteryWaster");
69 mPartialWakeLock.setReferenceCounted(false);
88 if (mPartialWakeLock.isHeld()) {
89 mPartialWakeLock.release();
150 if (!mPartialWakeLock.isHeld()) {
151 mPartialWakeLock.acquire();
154 if (mPartialWakeLock.isHeld()) {
155 mPartialWakeLock.release();
  /frameworks/base/telephony/java/com/android/internal/telephony/gsm/
GsmConnection.java 80 private PowerManager.WakeLock mPartialWakeLock;
592 if (mPartialWakeLock.isHeld()) {
593 Log.e(LOG_TAG, "[GSMConn] UNEXPECTED; mPartialWakeLock is held when finalizing.");
709 mPartialWakeLock = pm.newWakeLock(PowerManager.PARTIAL_WAKE_LOCK, LOG_TAG);
715 mPartialWakeLock.acquire();
720 synchronized(mPartialWakeLock) {
721 if (mPartialWakeLock.isHeld()) {
723 mPartialWakeLock.release();
  /frameworks/base/telephony/java/com/android/internal/telephony/cdma/
CdmaConnection.java 85 private PowerManager.WakeLock mPartialWakeLock;
683 if (mPartialWakeLock.isHeld()) {
684 Log.e(LOG_TAG, "[CdmaConn] UNEXPECTED; mPartialWakeLock is held when finalizing.");
788 synchronized (mPartialWakeLock) {
789 if (mPartialWakeLock.isHeld()) {
806 mPartialWakeLock = pm.newWakeLock(PowerManager.PARTIAL_WAKE_LOCK, LOG_TAG);
811 mPartialWakeLock.acquire();
815 synchronized (mPartialWakeLock) {
816 if (mPartialWakeLock.isHeld()) {
818 mPartialWakeLock.release()
    [all...]
  /packages/apps/Bluetooth/src/com/android/bluetooth/opp/
BluetoothOppObexServerSession.java 96 private WakeLock mPartialWakeLock;
106 mPartialWakeLock = pm.newWakeLock(PowerManager.PARTIAL_WAKE_LOCK, TAG);
293 mPartialWakeLock.acquire();
545 if (mPartialWakeLock.isHeld()) {
546 mPartialWakeLock.release();
  /packages/apps/Phone/src/com/android/phone/
PhoneApp.java 194 private PowerManager.WakeLock mPartialWakeLock;
447 mPartialWakeLock = pm.newWakeLock(PowerManager.PARTIAL_WAKE_LOCK
    [all...]

Completed in 52 milliseconds