Lines Matching refs:entry_

37   if (entry_->GetIsDir() == folder)
40 entry_->PutIsDir(folder);
50 entry_->GetSpecifics().has_encrypted();
67 entry_->GetSpecifics().has_encrypted()) {
74 current_legal_title = entry_->GetNonUniqueName();
79 entry_->GetNonUniqueName() != kEncryptedString);
101 entry_->PutNonUniqueName(kEncryptedString);
103 entry_->PutNonUniqueName(new_legal_title);
222 const sync_pb::EntitySpecifics& old_specifics = entry_->GetSpecifics();
231 entry_)) {
234 if (entry_->GetSpecifics().has_encrypted()) {
266 entry_->PutLocalExternalId(id);
270 : entry_(NULL), transaction_(transaction) {
275 delete entry_;
281 DCHECK(!entry_) << "Init called twice";
283 entry_ = new syncable::MutableEntry(transaction_->GetWrappedWriteTrans(),
285 if (!entry_->good())
287 if (entry_->GetIsDel())
298 DCHECK(!entry_) << "Init called twice";
304 entry_ = new syncable::MutableEntry(transaction_->GetWrappedWriteTrans(),
306 if (!entry_->good())
308 if (entry_->GetIsDel())
314 DCHECK(!entry_) << "Init called twice";
317 entry_ = new syncable::MutableEntry(transaction_->GetWrappedWriteTrans(),
319 if (!entry_->good())
321 if (entry_->GetIsDel())
332 DCHECK(!entry_) << "Init called twice";
345 entry_ = new syncable::MutableEntry(transaction_->GetWrappedWriteTrans(),
349 if (!entry_->good())
353 entry_->PutIsDir(true);
370 DCHECK(!entry_);
425 entry_ = existing_entry.release();
430 entry_ = new syncable::MutableEntry(transaction_->GetWrappedWriteTrans(),
433 if (!entry_->good())
437 entry_->PutUniqueClientTag(hash);
441 entry_->PutIsDir(false);
462 if (new_parent_id == entry_->GetParentId()) {
463 const syncable::Id& old = entry_->GetPredecessorId();
470 entry_->PutParentId(new_parent_id);
478 entry_->PutAttachmentMetadata(attachment_metadata);
482 return entry_;
490 return entry_;
498 entry_->PutIsDel(true);
502 if (entry_->GetId().ServerKnows()) {
503 entry_->PutIsDel(true);
510 if (!entry_->PutPredecessor(predecessor_id))
519 syncable::MarkForSyncing(entry_);