Home
last modified time | relevance | path

Searched refs:tombstone (Results 1 – 11 of 11) sorted by relevance

/frameworks/native/cmds/installd/
DCacheItem.cpp42 tombstone = mParent->tombstone; in CacheItem()
47 tombstone = false; in CacheItem()
84 p->fts_number = tombstone; in purge()
121 if (tombstone) { in purge()
DCacheItem.h50 bool tombstone; variable
DCacheTracker.cpp125 item->tombstone |= (getxattr(p->fts_path, kXattrCacheTombstone, nullptr, 0) >= 0); in loadItemsFrom()
/frameworks/libs/binary_translation/tools/
Dsymbolize_trace.py40 def __init__(self, tombstone, trace, symbols_dir): argument
42 self.tombstone = tombstone
91 with open(self.tombstone, "r") as f:
208 parser = TraceParser(args.tombstone, args.trace, get_symbol_dir(args))
/frameworks/base/core/proto/android/os/
Dtombstone.proto24 // The original proto tombstone bytes.
25 // Proto located at: system/core/debuggerd/proto/tombstone.proto
26 optional bytes tombstone = 1; field
/frameworks/base/services/core/java/com/android/server/os/
DNativeTombstoneManager.java216 TombstoneFile tombstone = mTombstones.valueAt(i); in purge() local
217 if (tombstone.matches(userId, appId)) { in purge()
218 tombstone.purge(); in purge()
300 TombstoneFile tombstone = mTombstones.valueAt(i); in collectTombstones() local
301 if (tombstone.matches(Optional.of(userId), Optional.of(appId))) { in collectTombstones()
302 if (pid != 0 && tombstone.mPid != pid) { in collectTombstones()
310 if (tombstone.matches(exitInfo)) { in collectTombstones()
311 exitInfo.setNativeTombstoneRetriever(tombstone.getPfdRetriever()); in collectTombstones()
318 output.add(tombstone.toAppExitInfo()); in collectTombstones()
/frameworks/base/services/core/java/com/android/server/
DBootReceiver.java352 Context ctx, File tombstone, boolean proto, String processName, in addTombstoneToDropBox() argument
369 if (recordFileTimestamp(tombstone, timestamps)) { in addTombstoneToDropBox()
376 addAugmentedProtoToDropbox(tombstone, db, rateLimitResult); in addTombstoneToDropBox()
385 addFileToDropBox(db, timestamps, headers, tombstone.getPath(), LOG_SIZE, in addTombstoneToDropBox()
395 File tombstone, DropBoxManager db, in addAugmentedProtoToDropbox() argument
399 if (tombstone.length() > MAX_TOMBSTONE_SIZE_BYTES) { in addAugmentedProtoToDropbox()
400 Slog.w(TAG, "Tombstone too large to add to DropBox: " + tombstone.toPath()); in addAugmentedProtoToDropbox()
404 final byte[] tombstoneBytes = Files.readAllBytes(tombstone.toPath()); in addAugmentedProtoToDropbox()
407 tombstone.getName(), ".tmp", TOMBSTONE_TMP_DIR); in addAugmentedProtoToDropbox()
/frameworks/compile/mclinker/include/mcld/ADT/
DHashBase.tcc45 static entry_type* tombstone = reinterpret_cast<entry_type*>(0x1); in getTombstone() local
46 return tombstone; in getTombstone()
/frameworks/compile/mclinker/unittests/
DHashTableTest.cpp177 TEST_F(HashTableTest, tombstone) { in TEST_F() argument
/frameworks/base/core/java/android/app/
DNotification.java6858 final boolean tombstone = (action.actionIntent == null); in generateActionButton()
6860 getActionButtonLayoutResource(emphasizedMode, tombstone)); in generateActionButton()
6861 if (!tombstone) { in generateActionButton()
6872 if (tombstone) { in generateActionButton()
6919 if (tombstone) { in generateActionButton()
6961 private int getActionButtonLayoutResource(boolean emphasizedMode, boolean tombstone) { in getActionButtonLayoutResource() argument
6963 return tombstone ? getEmphasizedTombstoneActionLayoutResource() in getActionButtonLayoutResource()
6966 return tombstone ? getActionTombstoneLayoutResource() in getActionButtonLayoutResource()
10259 final boolean tombstone = (action.actionIntent == null); in bindMediaActionButton()
10275 if (!tombstone) { in bindMediaActionButton()
/frameworks/base/core/java/android/os/storage/
DStorageManager.java2715 public void setCacheBehaviorTombstone(File path, boolean tombstone) throws IOException { in setCacheBehaviorTombstone() argument
2716 setCacheBehavior(path, XATTR_CACHE_TOMBSTONE, tombstone); in setCacheBehaviorTombstone()