Home | History | Annotate | Download | only in testserver

Lines Matching refs:_entries

538     self._entries = {}
566 base_entry = self._entries.get(entry.id_string)
571 self._entries[entry.id_string] = copy.deepcopy(entry)
662 return id_string in self._entries
736 change_log = sorted(self._entries.values(),
766 if entry.id_string in self._entries:
767 if self._entries[entry.id_string].HasField(
770 self._entries[entry.id_string].server_defined_unique_tag)
785 if entry.id_string in self._entries:
787 return (self._entries[entry.id_string].version == entry.version or
788 self._entries[entry.id_string].deleted)
806 if entry.parent_id_string not in self._entries:
812 if self._entries[entry.parent_id_string].deleted:
815 if not self._entries[entry.parent_id_string].folder:
950 if child_id not in self._entries:
952 if self._entries[child_id].parent_id_string == entry.id_string:
954 return IsChild(self._entries[child_id].parent_id_string)
957 child_ids = [child.id_string for child in self._entries.itervalues()
980 base_entry = self._entries.get(entry.id_string)
1008 all_entries = self._entries.values()
1009 self._entries.clear()
1016 self._entries[entry.id_string] = entry
1026 nigori_original = self._entries.get(self._ServerTagToId(nigori_tag))
1057 keystore_entry = self._entries.get(keystore_encryption_id)
1088 self._SaveEntry(self._entries.get(self._ServerTagToId(nigori_tag)))
1098 managed_users = [copy.deepcopy(entry) for entry in self._entries.values()
1111 entry = self._entries.get(pre_commit_gu_avoidance_id)