Searched refs:chargingIntentFilter (Results 1 – 1 of 1) sorted by relevance
295 IntentFilter chargingIntentFilter = new IntentFilter(); in onBootPhase() local297 chargingIntentFilter.addAction(Intent.ACTION_BATTERY_CHANGED); in onBootPhase()298 chargingIntentFilter.setPriority(IntentFilter.SYSTEM_HIGH_PRIORITY); in onBootPhase()300 chargingIntentFilter.addAction(BatteryManager.ACTION_CHARGING); in onBootPhase()301 chargingIntentFilter.addAction(BatteryManager.ACTION_DISCHARGING); in onBootPhase()303 mContext.registerReceiver(mChargingReceiver, chargingIntentFilter); in onBootPhase()