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

  /device/moto/stingray/whisper/
Whisper_AccyMain.c 590 struct sigaction shutdownAction;
612 shutdownAction.sa_handler = accySigHandler;
613 sigemptyset(&shutdownAction.sa_mask);
614 shutdownAction.sa_flags = 0;
617 sigaction(SIGINT, &shutdownAction, NULL);
618 sigaction(SIGKILL, &shutdownAction, NULL);
619 sigaction(SIGTERM, &shutdownAction, NULL);
  /frameworks/base/services/java/com/android/server/
SystemServer.java 96 final String shutdownAction = SystemProperties.get(
98 if (shutdownAction != null && shutdownAction.length() > 0) {
99 boolean reboot = (shutdownAction.charAt(0) == '1');
102 if (shutdownAction.length() > 1) {
103 reason = shutdownAction.substring(1, shutdownAction.length());
    [all...]

Completed in 49 milliseconds