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

  /external/chromium_org/chrome/browser/chromeos/settings/
device_settings_service.cc 134 DCHECK(pending_operations_.empty());
154 STLDeleteContainerPointers(pending_operations_.begin(),
155 pending_operations_.end());
156 pending_operations_.clear();
252 if (pending_operations_.empty())
307 pending_operations_.push_back(operation);
308 if (pending_operations_.front() == operation)
325 if (!pending_operations_.empty()) {
326 pending_operations_.front()->set_username(username_);
327 pending_operations_.front()->set_owner_settings_service
    [all...]
device_settings_service.h 236 std::deque<SessionManagerOperation*> pending_operations_; member in class:chromeos::DeviceSettingsService
  /external/chromium_org/chrome/browser/chromeos/ownership/
owner_settings_service_chromeos.cc 203 pending_operations_.push_back(operation);
204 if (pending_operations_.front() == operation)
288 if (!pending_operations_.empty() && service &&
290 pending_operations_.front()->Start(
299 DCHECK_EQ(operation, pending_operations_.front());
321 pending_operations_.pop_front();
owner_settings_service_chromeos.h 110 std::deque<SessionManagerOperation*> pending_operations_; member in class:chromeos::OwnerSettingsServiceChromeOS
  /external/chromium_org/net/disk_cache/simple/
simple_entry_impl.cc 240 pending_operations_.push(SimpleEntryOperation::OpenOperation(
256 state_ == STATE_UNINITIALIZED && pending_operations_.size() == 0) {
260 pending_operations_.push(SimpleEntryOperation::CreateOperation(
264 pending_operations_.push(SimpleEntryOperation::CreateOperation(
289 pending_operations_.push(SimpleEntryOperation::DoomOperation(this, callback));
316 pending_operations_.push(SimpleEntryOperation::CloseOperation(this));
366 if (pending_operations_.empty() && (offset >= GetDataSize(stream_index) ||
382 pending_operations_.size() == 0 && state_ == STATE_READY;
383 pending_operations_.push(SimpleEntryOperation::ReadOperation(
428 pending_operations_.size() == 0
    [all...]
simple_entry_impl.h 359 std::queue<SimpleEntryOperation> pending_operations_; member in class:disk_cache::SimpleEntryImpl
  /external/chromium_org/content/browser/media/
webrtc_identity_store_backend.cc 175 PendingOperationList pending_operations_; member in class:content::WebRTCIdentityStoreBackend::SqlLiteStorage
515 pending_operations_.push_back(operation.release());
517 if (pending_operations_.size() == 1) {
523 } else if (pending_operations_.size() >= kCommitAfterBatchSize) {
534 if (!db_.get() || pending_operations_.empty())
558 // Swaps |pending_operations_| into a temporary list to make sure
559 // |pending_operations_| is always cleared in case of DB errors.
561 pending_operations_.swap(pending_operations_copy);

Completed in 118 milliseconds