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

  /external/chromium_org/chrome/browser/extensions/
install_verifier.h 92 struct PendingOperation {
100 explicit PendingOperation();
101 ~PendingOperation();
139 std::queue<linked_ptr<PendingOperation> > operation_queue_;
install_verifier.cc 210 InstallVerifier::PendingOperation* operation =
211 new InstallVerifier::PendingOperation();
216 operation_queue_.push(linked_ptr<PendingOperation>(operation));
248 InstallVerifier::PendingOperation* operation =
249 new InstallVerifier::PendingOperation();
253 operation_queue_.push(linked_ptr<PendingOperation>(operation));
344 InstallVerifier::PendingOperation::PendingOperation() {
348 InstallVerifier::PendingOperation::~PendingOperation() {
    [all...]
  /external/chromium/chrome/browser/net/
sqlite_persistent_cookie_store.cc 105 class PendingOperation {
113 PendingOperation(OperationType op,
127 void BatchOperation(PendingOperation::OperationType op,
142 typedef std::list<PendingOperation*> PendingOperationsList;
361 BatchOperation(PendingOperation::COOKIE_ADD, cc);
366 BatchOperation(PendingOperation::COOKIE_UPDATEACCESS, cc);
371 BatchOperation(PendingOperation::COOKIE_DELETE, cc);
375 PendingOperation::OperationType op,
386 scoped_ptr<PendingOperation> po(new PendingOperation(op, cc))
    [all...]
  /external/chromium_org/chrome/browser/net/
sqlite_server_bound_cert_store.cc 79 class PendingOperation {
86 PendingOperation(
104 PendingOperation::OperationType op,
120 typedef std::list<PendingOperation*> PendingOperationsList;
436 BatchOperation(PendingOperation::CERT_ADD, cert);
441 BatchOperation(PendingOperation::CERT_DELETE, cert);
445 PendingOperation::OperationType op,
453 scoped_ptr<PendingOperation> po(new PendingOperation(op, cert));
507 scoped_ptr<PendingOperation> po(*it)
    [all...]
  /external/chromium_org/content/browser/media/
webrtc_identity_store_backend.cc 141 struct PendingOperation {
142 PendingOperation(OperationType type,
156 typedef std::vector<PendingOperation*> PendingOperationList;
503 scoped_ptr<PendingOperation> operation(
504 new PendingOperation(type, origin, identity_name, identity));
552 scoped_ptr<PendingOperation> po(*it);
  /external/chromium_org/content/browser/net/
sqlite_persistent_cookie_store.cc 130 class PendingOperation {
138 PendingOperation(OperationType op, const net::CanonicalCookie& cc)
195 void BatchOperation(PendingOperation::OperationType op,
218 typedef std::list<PendingOperation*> PendingOperationsList;
906 BatchOperation(PendingOperation::COOKIE_ADD, cc);
911 BatchOperation(PendingOperation::COOKIE_UPDATEACCESS, cc);
916 BatchOperation(PendingOperation::COOKIE_DELETE, cc);
920 PendingOperation::OperationType op,
    [all...]
  /frameworks/base/services/java/com/android/server/content/
SyncStorageEngine.java 158 public static class PendingOperation {
171 PendingOperation(Account account, int userId, int reason, int source,
184 PendingOperation(PendingOperation other) {
344 private final ArrayList<PendingOperation> mPendingOperations =
345 new ArrayList<PendingOperation>();
    [all...]

Completed in 525 milliseconds