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

  /external/chromium/chrome/browser/sync/engine/
get_commit_ids_command.cc 98 syncable::Id prev_id = item->Get(syncable::PREV_ID);
99 while (!prev_id.IsRoot()) {
100 syncable::Entry prev(trans, syncable::GET_BY_ID, prev_id);
106 prev_id = prev.Get(syncable::PREV_ID);
build_commit_command.cc 176 const Id& prev_id = meta_entry.Get(syncable::PREV_ID); local
178 prev_id.IsRoot() ? string() : prev_id.GetServerId();
syncer_util.cc 47 using syncable::PREV_ID;
98 // and PREV_ID fields (which Put(PARENT_ID) would normally do to
99 // maintain linked-list invariants). In this case, NEXT_ID and PREV_ID
109 if (entry->Get(PREV_ID) == entry->Get(NEXT_ID) &&
110 entry->Get(PREV_ID) == old_id) {
114 entry->Put(PREV_ID, new_id);
116 entry->PutPredecessor(entry->Get(PREV_ID));
466 syncable::Id local_up_to_date_predecessor = entry->Get(PREV_ID);
473 local_up_to_date_predecessor = local_prev.Get(PREV_ID);
613 Id prev_id = item->Get(PREV_ID)
    [all...]
syncer_unittest.cc 79 using syncable::PREV_ID;
4996 Id prev_id; local
    [all...]
  /external/chromium/net/tools/testserver/
chromiumsync.py 355 def _WritePosition(self, entry, parent_id, prev_id=None):
368 prev_id: The ID of the entry intended as the new predecessor. If this
388 if prev_id == entry.id_string:
389 prev_id = ''
393 elif not prev_id:
399 if item.id_string != prev_id:
411 # Insert at end. Includes the case where prev_id is None.
    [all...]
chromiumsync_test.py 74 def AssertPositionResult(my_id, parent_id, prev_id, expected_position):
77 self.model._WritePosition(entry, parent_id, prev_id)
  /external/wpa_supplicant_6/wpa_supplicant/src/eap_peer/
eap_aka.c 57 int prev_id; member in struct:eap_aka_data
109 data->prev_id = -1;
641 if (data->prev_id != id) {
644 data->prev_id = id;
    [all...]
  /external/wpa_supplicant_8/src/eap_peer/
eap_aka.c 49 int prev_id; member in struct:eap_aka_data
102 data->prev_id = -1;
668 if (data->prev_id != id) {
671 data->prev_id = id;
    [all...]

Completed in 172 milliseconds