OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:PendingOperation
(Results
1 - 6
of
6
) sorted by null
/external/chromium_org/chrome/browser/extensions/
install_verifier.h
103
struct
PendingOperation
{
109
explicit
PendingOperation
(OperationType type);
110
~
PendingOperation
();
165
std::queue<linked_ptr<
PendingOperation
> > operation_queue_;
install_verifier.cc
279
InstallVerifier::
PendingOperation
* operation =
280
new InstallVerifier::
PendingOperation
(type);
283
operation_queue_.push(linked_ptr<
PendingOperation
>(operation));
316
InstallVerifier::
PendingOperation
* operation =
317
new InstallVerifier::
PendingOperation
(InstallVerifier::REMOVE);
320
operation_queue_.push(linked_ptr<
PendingOperation
>(operation));
424
InstallVerifier::
PendingOperation
::
PendingOperation
(OperationType type)
427
InstallVerifier::
PendingOperation
::~
PendingOperation
() {
[
all
...]
/external/chromium_org/content/browser/media/
webrtc_identity_store_backend.cc
144
struct
PendingOperation
{
145
PendingOperation
(OperationType type,
159
typedef ScopedVector<
PendingOperation
> PendingOperationList;
512
scoped_ptr<
PendingOperation
> operation(
513
new
PendingOperation
(type, origin, identity_name, identity));
/external/chromium_org/net/extras/sqlite/
sqlite_channel_id_store.cc
108
class
PendingOperation
{
112
PendingOperation
(OperationType op,
128
void BatchOperation(
PendingOperation
::OperationType op,
145
typedef std::list<
PendingOperation
*> PendingOperationsList;
430
BatchOperation(
PendingOperation
::CHANNEL_ID_ADD, channel_id);
435
BatchOperation(
PendingOperation
::CHANNEL_ID_DELETE, channel_id);
450
PendingOperation
::OperationType op,
458
scoped_ptr<
PendingOperation
> po(new
PendingOperation
(op, channel_id));
513
scoped_ptr<
PendingOperation
> po(*it)
[
all
...]
/external/chromium_org/content/browser/net/
sqlite_persistent_cookie_store.cc
132
class
PendingOperation
{
140
PendingOperation
(OperationType op, const net::CanonicalCookie& cc)
197
void BatchOperation(
PendingOperation
::OperationType op,
220
typedef std::list<
PendingOperation
*> PendingOperationsList;
910
BatchOperation(
PendingOperation
::COOKIE_ADD, cc);
915
BatchOperation(
PendingOperation
::COOKIE_UPDATEACCESS, cc);
920
BatchOperation(
PendingOperation
::COOKIE_DELETE, cc);
[
all
...]
/frameworks/base/services/core/java/com/android/server/content/
SyncStorageEngine.java
161
public static class
PendingOperation
{
173
PendingOperation
(AuthorityInfo authority, int reason, int source,
183
PendingOperation
(
PendingOperation
other) {
196
* @param other
PendingOperation
to compare.
199
public boolean equals(
PendingOperation
other) {
413
private final ArrayList<
PendingOperation
> mPendingOperations =
414
new ArrayList<
PendingOperation
>();
[
all
...]
Completed in 1279 milliseconds