Example #1
0
void
EnableBatteryNotifications()
{
  Hal()->SendEnableBatteryNotifications();
}
Example #2
0
void
GetWakeLockInfo(const nsAString &aTopic, WakeLockInformation *aWakeLockInfo)
{
  Hal()->SendGetWakeLockInfo(nsString(aTopic), aWakeLockInfo);
}
Example #3
0
void
DisableSwitchNotifications(SwitchDevice aDevice)
{
  Hal()->SendDisableSwitchNotifications(aDevice);
}
Example #4
0
void
EnableWakeLockNotifications()
{
  Hal()->SendEnableWakeLockNotifications();
}
Example #5
0
void
DisableWakeLockNotifications()
{
  Hal()->SendDisableWakeLockNotifications();
}
Example #6
0
void
EnableNetworkNotifications()
{
  Hal()->SendEnableNetworkNotifications();
}
Example #7
0
void
PowerOff()
{
  Hal()->SendPowerOff();
}
Example #8
0
void
GetCurrentNetworkInformation(NetworkInformation* aNetworkInfo)
{
  Hal()->SendGetCurrentNetworkInformation(aNetworkInfo);
}
Example #9
0
void
DisableScreenConfigurationNotifications()
{
  Hal()->SendDisableScreenConfigurationNotifications();
}
Example #10
0
void
SetScreenEnabled(bool enabled)
{
  Hal()->SendSetScreenEnabled(enabled);
}
Example #11
0
void
SetScreenBrightness(double brightness)
{
  Hal()->SendSetScreenBrightness(brightness);
}
Example #12
0
void
DisableSystemTimezoneChangeNotifications()
{
  Hal()->SendDisableSystemTimezoneChangeNotifications();
}
Example #13
0
void
DisableSystemClockChangeNotifications()
{
  Hal()->SendDisableSystemClockChangeNotifications();
}
Example #14
0
void
AdjustSystemClock(int64_t aDeltaMilliseconds)
{
  Hal()->SendAdjustSystemClock(aDeltaMilliseconds);
}
Example #15
0
void
DisableBatteryNotifications()
{
  Hal()->SendDisableBatteryNotifications();
}
Example #16
0
void
UnlockScreenOrientation()
{
  Hal()->SendUnlockScreenOrientation();
}
Example #17
0
void
GetCurrentBatteryInformation(BatteryInformation* aBatteryInfo)
{
  Hal()->SendGetCurrentBatteryInformation(aBatteryInfo);
}
Example #18
0
void
DisableSensorNotifications(SensorType aSensor) {
  Hal()->SendDisableSensorNotifications(aSensor);
}
Example #19
0
void
DisableNetworkNotifications()
{
  Hal()->SendDisableNetworkNotifications();
}
Example #20
0
void
Reboot()
{
  Hal()->SendReboot();
}