/external/chromium_org/build/android/ |
tombstones.py | 7 # Find the most recent tombstone file(s) on all connected devices 10 # Assumes tombstone file was created with current symbols. 24 """List the tombstone files on the device. 30 Tuples of (tombstone filename, date time of file on device). 34 if 'tombstone' in line and not 'No such file or directory' in line: 56 """Retrieve the tombstone data from the device 59 tombstone_file: the tombstone to retrieve 68 """Deletes a tombstone from the device. 71 tombstone_file: the tombstone to delete. 77 """Run the stack tool for given tombstone input [all...] |
/system/core/include/cutils/ |
debugger.h | 31 // dump a tombstone file 43 /* Dumps a process backtrace, registers, and stack to a tombstone file (requires root). 44 * Stores the tombstone path in the provided buffer.
|
/system/core/debuggerd/ |
tombstone.h | 26 /* Creates a tombstone file and writes the crash dump to it. 27 * Returns the path of the tombstone, which must be freed using free(). */
|
utility.h | 25 /* tombstone file descriptor */ 33 /* Log information onto the tombstone. scopeFlags is a bitmask of the flags defined
|
Android.mk | 12 tombstone.c \
|
tombstone.c | 44 #include "tombstone.h" 323 // Only log the first 3 frames, put the rest in the tombstone. 485 * that don't match the specified pid, and writes them to the tombstone file. 536 * the tombstone file. 618 * Dumps the logs generated by the specified pid to the tombstone, from both 663 * Dumps all information about the specified pid to the tombstone. 668 /* don't copy log messages to tombstone unless this is a dev device */ 726 * find_and_open_tombstone - find an available tombstone slot, if any, of the 730 * Returns the path of the tombstone file, allocated using malloc(). Caller must free() it. 774 LOG("failed to open tombstone file '%s': %s\n", path, strerror(errno)) [all...] |
debuggerd.c | 49 #include "tombstone.h" 318 XLOG("stopped -- dumping to tombstone\n"); 499 fputs("Error dumping tombstone.\n", stderr); 502 fprintf(stderr, "Tombstone written to: %s\n", tombstone_path); 509 " -b dump backtrace to console, otherwise dump full tombstone file\n"
|
backtrace.c | 32 #include "tombstone.h"
|
/libcore/luni/src/main/java/java/lang/ |
ThreadLocal.java | 154 private static final Object TOMBSTONE = new Object(); 209 if (k == null || k == TOMBSTONE) { 226 table[i] = TOMBSTONE; 228 fromParent.table[i] = TOMBSTONE; 273 if (k == TOMBSTONE || k == null) { 283 table[index] = TOMBSTONE; 338 if (k == null || k == TOMBSTONE) { 383 // Keep track of first tombstone. That's where we want to go back 405 // Go back and replace first tombstone. 413 // Remember first tombstone [all...] |
/external/llvm/lib/Support/ |
SmallPtrSet.cpp | 94 // Set this as a tombstone. 106 const void *const *Tombstone = 0; 113 // Return a tombstone if we've seen one so far, or the empty bucket if 116 return Tombstone ? Tombstone : Array+Bucket; 118 // If this is a tombstone, remember it. If Ptr ends up not in the set, we 120 if (Array[Bucket] == getTombstoneMarker() && !Tombstone) 121 Tombstone = Array+Bucket; // Remember the first tombstone found. 123 // It's a hash collision or a tombstone. Reprobe [all...] |
StringMap.cpp | 74 // If we found a tombstone, we want to reuse the tombstone instead of an
|
/external/pixman/pixman/ |
pixman-glyph.c | 37 #define TOMBSTONE ((glyph_t *)0x1) 105 if (g != TOMBSTONE && 131 } while (*loc && *loc != TOMBSTONE); 133 if (*loc == TOMBSTONE) 150 cache->glyphs[idx & HASH_MASK] = TOMBSTONE; 157 while (cache->glyphs[idx & HASH_MASK] == TOMBSTONE) 175 if (glyph && glyph != TOMBSTONE)
|
/bootable/recovery/minzip/ |
Hash.h | 45 * Attempting to add a NULL or tombstone value is an error. 64 int numDeadEntries; /* current #of tombstone entries */
|
Hash.c | 6 * about tombstone removal. 113 * Count up the number of tombstone entries in the hash table.
|
/dalvik/vm/ |
Hash.h | 57 * Attempting to add a NULL or tombstone value is an error. 76 int numDeadEntries; /* current #of tombstone entries */
|
Hash.cpp | 19 * about tombstone removal. 108 * Count up the number of tombstone entries in the hash table.
|
/external/llvm/include/llvm/ADT/ |
SparseMultiSet.h | 99 /// Whether this node is a tombstone node, and thus is in our freelist. 104 /// Since the list is circular in Prev, all non-tombstone nodes have a valid 117 /// We have a built-in recycler for reusing tombstone slots. This recycler 118 /// puts a singly-linked free list into tombstone slots, allowing us quick 162 assert(Dense[Idx].isTombstone() && "Non-tombstone free?"); 170 /// Make the current index a new tombstone. Pushes it onto the freelist. 472 "erasing invalid/end/tombstone iterator"); 478 // Put in a tombstone.
|
DenseMap.h | 450 // If we are writing over a tombstone, remember this. 460 /// true, otherwise it returns a bucket with an empty marker or tombstone and 473 // FoundTombstone - Keep track of whether we find a tombstone while probing. 479 "Empty/Tombstone value shouldn't be inserted into map!"); 494 // If we've already seen a tombstone while probing, fill it in instead 500 // If this is a tombstone, remember it. If Val ends up not in the map, we 503 FoundTombstone = ThisBucket; // Remember the first tombstone found. 505 // Otherwise, it's a hash collision or a tombstone, continue quadratic 1040 const KeyT Tombstone = KeyInfoT::getTombstoneKey(); 1044 KeyInfoT::isEqual(Ptr->first, Tombstone))) [all...] |
/dalvik/vm/test/ |
TestHash.cpp | 179 /* force a table realloc to exercise tombstone removal */
|
/external/chromium/net/tools/testserver/ |
chromiumsync.py | 623 # tombstone. A sync server must track deleted IDs forever, since it does 627 """Make a tombstone entry that will replace the entry being deleted. 634 # Only the ID, version and deletion state are preserved on a tombstone. 638 tombstone = sync_pb2.SyncEntity() 639 tombstone.id_string = id_string 640 tombstone.deleted = True 641 tombstone.name = '' 642 return tombstone [all...] |
/external/chromium_org/chrome/browser/sync/glue/ |
tab_node_pool.cc | 135 tab_node.Tombstone(); 179 tab_node.Tombstone();
|
/frameworks/base/services/java/com/android/server/ |
BootReceiver.java | 142 // Start watching for new tombstone files; will record them as they occur. 151 Slog.e(TAG, "Can't log tombstone", e);
|
/frameworks/compile/mclinker/include/mcld/ADT/ |
HashBase.tcc | 47 static entry_type* tombstone = reinterpret_cast<entry_type*>(0x1); 48 return tombstone;
|
/external/llvm/include/llvm/Support/ |
DebugLoc.h | 30 /// not equal to the tombstone key or DebugLoc().
|
/frameworks/base/services/tests/servicestests/src/com/android/server/ |
DropBoxTest.java | 196 // Tombstone in the far future 383 assertEquals(-1, getEntrySize(e2)); // Tombstone 392 assertEquals(-1, getEntrySize(e7)); // Tombstone 407 // Specifying a tag name skips tombstone records.
|