HomeSort by relevance Sort by last modified time
    Searched refs:EntryKernel (Results 1 - 25 of 35) sorted by null

1 2

  /external/chromium_org/sync/syncable/
parent_child_index.h 17 struct EntryKernel;
23 bool operator() (const EntryKernel* a, const EntryKernel* b) const;
27 typedef std::set<EntryKernel*, ChildComparator> OrderedChildSet;
38 static bool ShouldInclude(const EntryKernel* e);
41 bool Insert(EntryKernel* e);
44 void Remove(EntryKernel* e);
47 bool Contains(EntryKernel* e) const;
scoped_parent_child_index_updater.h 16 struct EntryKernel;
23 EntryKernel* entry,
28 EntryKernel* entry_;
syncable-inl.h 16 inline bool operator() (const syncable::EntryKernel* a,
17 const syncable::EntryKernel* b) const {
parent_child_index_unittest.cc 45 EntryKernel* MakeRoot() {
47 EntryKernel* root = new EntryKernel();
60 EntryKernel* MakeBookmarkRoot() {
62 EntryKernel* folder = new EntryKernel;
76 EntryKernel* MakeBookmark(int n, int pos, bool is_dir) {
78 EntryKernel* bm = new EntryKernel();
100 EntryKernel* MakeUniqueClientItem(int n)
    [all...]
directory.h 77 typedef base::hash_map<int64, EntryKernel*> MetahandlesMap;
78 typedef base::hash_map<std::string, EntryKernel*> IdsMap;
79 typedef base::hash_map<std::string, EntryKernel*> TagsMap;
258 int GetTotalNodeCount(BaseTransaction*, EntryKernel* kernel_) const;
262 int GetPositionIndex(BaseTransaction*, EntryKernel* kernel_) const;
271 Id GetFirstChildId(BaseTransaction* trans, const EntryKernel* parent);
279 syncable::Id GetPredecessorId(EntryKernel*);
280 syncable::Id GetSuccessorId(EntryKernel*);
291 void PutPredecessor(EntryKernel* e, EntryKernel* predecessor)
    [all...]
syncable_delete_journal.h 20 struct EntryKernel;
22 typedef std::set<const EntryKernel*, LessField<IdField, ID> > JournalIndex;
45 const EntryKernel& entry);
scoped_parent_child_index_updater.cc 14 EntryKernel* entry,
parent_child_index.cc 16 const syncable::EntryKernel* a,
17 const syncable::EntryKernel* b) const {
50 bool ParentChildIndex::ShouldInclude(const EntryKernel* entry) {
56 bool ParentChildIndex::Insert(EntryKernel* entry) {
74 // given EntryKernel but does not delete it.
75 void ParentChildIndex::Remove(EntryKernel* e) {
91 bool ParentChildIndex::Contains(EntryKernel *e) const {
entry_kernel.cc 15 EntryKernel::EntryKernel() : dirty_(false) {
22 EntryKernel::~EntryKernel() {}
24 ModelType EntryKernel::GetModelType() const {
38 ModelType EntryKernel::GetServerModelType() const {
52 bool EntryKernel::ShouldMaintainPosition() const {
66 void SetFieldValues(const EntryKernel& kernel,
81 const EntryKernel& kernel,
134 base::DictionaryValue* EntryKernel::ToValue
    [all...]
directory_backing_store.h 105 const EntryKernel& entry);
106 bool SaveNewEntryToDB(const EntryKernel& entry);
107 bool UpdateEntryToDB(const EntryKernel& entry);
syncable_id.h 29 struct EntryKernel;
116 friend scoped_ptr<EntryKernel> UnpackEntry(sql::Statement* statement);
117 friend void BindFields(const EntryKernel& entry,
syncable_write_transaction.h 33 void SaveOriginal(const EntryKernel* entry);
syncable_delete_journal.cc 28 BaseTransaction* trans, bool was_deleted, const EntryKernel& entry) {
44 EntryKernel* t = new EntryKernel(entry);
121 EntryKernel needle;
126 delete_journals_.insert(new EntryKernel(**i));
entry_kernel.h 28 // - EntryKernel struct in this file
31 // - EntryKernel::EntryKernel(), EntryKernel::ToValue() in entry_kernel.cc
178 struct SYNC_EXPORT_PRIVATE EntryKernel {
190 EntryKernel();
191 ~EntryKernel();
330 inline bool operator()(const EntryKernel* a,
331 const EntryKernel* b) const {
336 typedef std::set<const EntryKernel*, EntryKernelLessByMetaHandle
    [all...]
directory.cc 126 EntryKernel* entry = it->second;
207 EntryKernel* Directory::GetEntryById(const Id& id) {
212 EntryKernel* Directory::GetEntryById(const Id& id,
223 EntryKernel* Directory::GetEntryByClientTag(const string& tag) {
234 EntryKernel* Directory::GetEntryByServerTag(const string& tag) {
244 EntryKernel* Directory::GetEntryByHandle(int64 metahandle) {
249 EntryKernel* Directory::GetEntryByHandle(int64 metahandle,
284 EntryKernel* kernel = GetEntryByHandle(handle, &lock);
294 EntryKernel* kernel) const {
318 EntryKernel* kernel
    [all...]
entry.h 137 const EntryKernel GetKernelCopy() const {
155 EntryKernel* kernel_;
syncable_write_transaction.cc 35 void WriteTransaction::SaveOriginal(const EntryKernel* entry) {
51 EntryKernel* kernel = directory()->GetEntryByHandle(it->first);
directory_backing_store.cc 42 void BindFields(const EntryKernel& entry,
75 // The caller owns the returned EntryKernel*. Assumes the statement currently
78 scoped_ptr<EntryKernel> UnpackEntry(sql::Statement* statement) {
79 scoped_ptr<EntryKernel> kernel(new EntryKernel());
111 return scoped_ptr<EntryKernel>();
507 scoped_ptr<EntryKernel> kernel = UnpackEntry(&s);
529 scoped_ptr<EntryKernel> kernel = UnpackEntry(&s);
593 const EntryKernel& entry) {
    [all...]
  /external/chromium/chrome/browser/sync/syncable/
syncable_mock.h 16 using syncable::EntryKernel;
23 MOCK_METHOD1(GetEntryByHandle, syncable::EntryKernel*(int64));
28 syncable::EntryKernel*(const std::string&));
syncable-inl.h 14 inline bool operator() (const syncable::EntryKernel* a,
15 const syncable::EntryKernel* b) const {
syncable_id.h 19 struct EntryKernel;
42 syncable::EntryKernel** kernel);
43 friend int BindFields(const EntryKernel& entry, SQLStatement* statement);
syncable.h 222 // The EntryKernel class contains the actual data for an entry.
223 struct EntryKernel {
233 EntryKernel();
234 ~EntryKernel();
423 const EntryKernel GetKernelCopy() const {
449 EntryKernel* kernel_;
546 inline bool operator()(const syncable::EntryKernel& a,
547 const syncable::EntryKernel& b) const {
551 typedef std::set<EntryKernel, LessEntryMetaHandles> OriginalEntries;
576 inline static bool ShouldInclude(const EntryKernel* a)
    [all...]
directory_backing_store.h 120 bool SaveEntryToDB(const EntryKernel& entry);
121 bool SaveNewEntryToDB(const EntryKernel& entry);
122 bool UpdateEntryToDB(const EntryKernel& entry);
syncable.cc 109 EntryKernel* entry,
127 EntryKernel* entry_;
134 void InitializeIndexEntry(EntryKernel* entry,
147 bool ClientTagIndexer::ShouldInclude(const EntryKernel* a) {
152 const syncable::EntryKernel* a,
153 const syncable::EntryKernel* b) const {
168 bool ParentIdAndHandleIndexer::ShouldInclude(const EntryKernel* a) {
175 // EntryKernel
177 EntryKernel::EntryKernel() : dirty_(false)
    [all...]
  /external/chromium/chrome/browser/sync/glue/
autofill_profile_model_associator_unittest.cc 114 EntryKernel kernel;
146 .WillOnce(Return(reinterpret_cast<EntryKernel*>(NULL)));
189 EntryKernel kernel;

Completed in 583 milliseconds

1 2