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

  /frameworks/base/core/java/com/android/server/
BootReceiver.java 50 private static final File TOMBSTONE_DIR = new File("/data/tombstones");
158 File[] tombstoneFiles = TOMBSTONE_DIR.listFiles();
168 sTombstoneObserver = new FileObserver(TOMBSTONE_DIR.getPath(), FileObserver.CLOSE_WRITE) {
172 File file = new File(TOMBSTONE_DIR, path);
  /system/core/debuggerd/
tombstone.cpp 55 #define TOMBSTONE_DIR "/data/tombstones"
56 #define TOMBSTONE_TEMPLATE (TOMBSTONE_DIR"/tombstone_%02d")
746 if ((mkdir(TOMBSTONE_DIR, 0755) == -1) && (errno != EEXIST)) {
747 _LOG(&log, logtype::ERROR, "failed to create %s: %s\n", TOMBSTONE_DIR, strerror(errno));
750 if (chown(TOMBSTONE_DIR, AID_SYSTEM, AID_SYSTEM) == -1) {
751 _LOG(&log, logtype::ERROR, "failed to change ownership of %s: %s\n", TOMBSTONE_DIR, strerror(errno));
756 if (selinux_android_restorecon(TOMBSTONE_DIR, 0) == 0) {
  /frameworks/native/cmds/dumpstate/
dumpstate.c 49 #define TOMBSTONE_DIR "/data/tombstones"
50 #define TOMBSTONE_FILE_PREFIX TOMBSTONE_DIR "/tombstone_"
222 printf("*** NO TOMBSTONES to dump in %s\n\n", TOMBSTONE_DIR);

Completed in 853 milliseconds