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

  /frameworks/base/services/core/java/com/android/server/
BatteryService.java 460 final Intent statusIntent = new Intent(Intent.ACTION_POWER_CONNECTED);
461 statusIntent.setFlags(Intent.FLAG_RECEIVER_REGISTERED_ONLY_BEFORE_BOOT);
462 statusIntent.putExtra(BatteryManager.EXTRA_SEQUENCE, mSequence);
466 mContext.sendBroadcastAsUser(statusIntent, UserHandle.ALL);
471 final Intent statusIntent = new Intent(Intent.ACTION_POWER_DISCONNECTED);
472 statusIntent.setFlags(Intent.FLAG_RECEIVER_REGISTERED_ONLY_BEFORE_BOOT);
473 statusIntent.putExtra(BatteryManager.EXTRA_SEQUENCE, mSequence);
477 mContext.sendBroadcastAsUser(statusIntent, UserHandle.ALL);
484 final Intent statusIntent = new Intent(Intent.ACTION_BATTERY_LOW);
485 statusIntent.setFlags(Intent.FLAG_RECEIVER_REGISTERED_ONLY_BEFORE_BOOT)
    [all...]
  /hardware/intel/common/utils/ituxd/src/com/intel/thermal/
ThermalService.java 468 Intent statusIntent = new Intent();
469 statusIntent.setAction(ThermalManager.ACTION_THERMAL_ZONE_STATE_CHANGED);
471 statusIntent.putExtra(ThermalManager.EXTRA_NAME, event.mZoneName);
472 statusIntent.putExtra(ThermalManager.EXTRA_PROFILE, event.mProfName);
473 statusIntent.putExtra(ThermalManager.EXTRA_ZONE, event.mZoneId);
474 statusIntent.putExtra(ThermalManager.EXTRA_EVENT, event.mEventType);
475 statusIntent.putExtra(ThermalManager.EXTRA_STATE, event.mThermalLevel);
476 statusIntent.putExtra(ThermalManager.EXTRA_TEMP, event.mZoneTemp);
479 mContext.sendBroadcastAsUser(statusIntent, UserHandle.ALL);

Completed in 169 milliseconds