Home
last modified time | relevance | path

Searched refs:statusIntent (Results 1 – 1 of 1) sorted by relevance

/frameworks/base/services/core/java/com/android/server/
DBatteryService.java609 final Intent statusIntent = new Intent(Intent.ACTION_POWER_CONNECTED); in processValuesLocked() local
610 statusIntent.setFlags(Intent.FLAG_RECEIVER_REGISTERED_ONLY_BEFORE_BOOT); in processValuesLocked()
611 statusIntent.putExtra(BatteryManager.EXTRA_SEQUENCE, mSequence); in processValuesLocked()
615 mContext.sendBroadcastAsUser(statusIntent, UserHandle.ALL); in processValuesLocked()
620 final Intent statusIntent = new Intent(Intent.ACTION_POWER_DISCONNECTED); in processValuesLocked() local
621 statusIntent.setFlags(Intent.FLAG_RECEIVER_REGISTERED_ONLY_BEFORE_BOOT); in processValuesLocked()
622 statusIntent.putExtra(BatteryManager.EXTRA_SEQUENCE, mSequence); in processValuesLocked()
626 mContext.sendBroadcastAsUser(statusIntent, UserHandle.ALL); in processValuesLocked()
633 final Intent statusIntent = new Intent(Intent.ACTION_BATTERY_LOW); in processValuesLocked() local
634 statusIntent.setFlags(Intent.FLAG_RECEIVER_REGISTERED_ONLY_BEFORE_BOOT); in processValuesLocked()
[all …]