Home
last modified time | relevance | path

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

/external/chromium_org/build/android/
Dtombstones.py102 def _ResolveTombstone(tombstone): argument
104 lines += [tombstone['file'] + ' created on ' + str(tombstone['time']) +
106 (str(tombstone['device_now'] - tombstone['time']) +
107 ' Device: ' + tombstone['serial'])]
110 lines += _ResolveSymbols(tombstone['data'], tombstone['stack'])
/external/qemu/distrib/mini-glib/src/
Dglib-mini.c498 gint tombstone = -1; in _g_hash_table_lookup_index() local
511 } else if (probe->hash == HASH_TOMBSTONE && tombstone < 0) { in _g_hash_table_lookup_index()
512 tombstone = (int)probe_index; in _g_hash_table_lookup_index()
520 if (tombstone >= 0) in _g_hash_table_lookup_index()
521 return (guint)tombstone; in _g_hash_table_lookup_index()
/external/chromium_org/sync/test/fake_server/
Dfake_server.cc407 FakeServerEntity* tombstone = TombstoneEntity::Create(*it); in DeleteChildren() local
408 if (tombstone == NULL) { in DeleteChildren()
412 SaveEntity(tombstone); in DeleteChildren()
/external/chromium_org/chrome/browser/sync/sessions/
Dsessions_sync_manager.cc537 syncer::SyncChange tombstone(TombstoneTab(specifics)); in InitFromSyncModel() local
538 if (tombstone.IsValid()) in InitFromSyncModel()
539 new_changes->push_back(tombstone); in InitFromSyncModel()
554 syncer::SyncChange tombstone(TombstoneTab(specifics)); in InitFromSyncModel() local
555 if (tombstone.IsValid()) in InitFromSyncModel()
556 new_changes->push_back(tombstone); in InitFromSyncModel()
/external/chromium_org/sync/tools/testserver/
Dchromiumsync.py970 tombstone = sync_pb2.SyncEntity()
971 tombstone.id_string = id_string
972 tombstone.deleted = True
973 tombstone.name = ''
974 tombstone.specifics.CopyFrom(GetDefaultEntitySpecifics(datatype))
975 return tombstone
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/
Dandroid.py997 for tombstone in tombstones:
1002 fields = tombstone.split()
1004 self._log_warning("unexpected line in tombstone output, skipping: '%s'" % tombstone)