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

1 2 3 4 5 6 7 8 9

  /external/chromium_org/chrome/browser/chromeos/file_system_provider/operations/
operation.cc 5 #include "chrome/browser/chromeos/file_system_provider/operations/operation.h"
16 // tests by Operation::SetDispatchEventImplForTest().
29 Operation::Operation(extensions::EventRouter* event_router,
37 Operation::~Operation() {
40 void Operation::SetDispatchEventImplForTesting(
45 bool Operation::SendEvent(int request_id,
operation.h 29 // Base class for operation bridges between fileapi and providing extensions.
30 class Operation : public RequestManager::HandlerInterface {
35 Operation(extensions::EventRouter* event_router,
37 virtual ~Operation();
63 DISALLOW_COPY_AND_ASSIGN(Operation);
  /external/chromium_org/chrome/browser/extensions/api/image_writer_private/
operation_nonchromeos.cc 9 #include "chrome/browser/extensions/api/image_writer_private/operation.h"
18 void Operation::Write(const base::Closure& continuation) {
39 base::Bind(&Operation::WriteImageProgress, this, file_size),
40 base::Bind(&Operation::CompleteAndContinue, this, continuation),
41 base::Bind(&Operation::Error, this),
46 void Operation::VerifyWrite(const base::Closure& continuation) {
68 base::Bind(&Operation::WriteImageProgress, this, file_size),
69 base::Bind(&Operation::CompleteAndContinue, this, continuation),
70 base::Bind(&Operation::Error, this),
operation_chromeos.cc 6 #include "chrome/browser/extensions/api/image_writer_private/operation.h"
36 void Operation::Write(const base::Closure& continuation) {
46 base::Bind(&Operation::UnmountVolumes, this, continuation));
49 void Operation::VerifyWrite(const base::Closure& continuation) {
56 void Operation::UnmountVolumes(const base::Closure& continuation) {
60 base::Bind(&Operation::UnmountVolumesCallback, this, continuation));
63 void Operation::UnmountVolumesCallback(const base::Closure& continuation,
87 void Operation::StartWriteOnUIThread(const std::string& target_path,
96 base::Bind(&Operation::OnBurnFinished, this, continuation),
97 base::Bind(&Operation::OnBurnProgress, this))
    [all...]
operation.cc 5 #include "chrome/browser/extensions/api/image_writer_private/operation.h"
33 Operation::Operation(base::WeakPtr<OperationManager> manager,
47 Operation::~Operation() {}
49 void Operation::Cancel() {
57 void Operation::Abort() {
61 int Operation::GetProgress() {
65 image_writer_api::Stage Operation::GetStage() {
71 void Operation::SetUtilityClientForTesting
    [all...]
destroy_partitions_operation.h 9 #include "chrome/browser/extensions/api/image_writer_private/operation.h"
16 // Encapsulates an operation for destroying partitions. This is achieved by
18 class DestroyPartitionsOperation : public Operation {
operation_manager.h 17 #include "chrome/browser/extensions/api/image_writer_private/operation.h"
38 class Operation;
54 // Starts a WriteFromUrl operation.
59 const Operation::StartWriteCallback& callback);
61 // Starts a WriteFromFile operation.
65 const Operation::StartWriteCallback& callback);
67 // Cancels the extensions current operation if any.
69 const Operation::CancelWriteCallback& callback);
74 const Operation::StartWriteCallback& callback);
110 Operation* GetOperation(const ExtensionId& extension_id)
    [all...]
write_from_file_operation.h 8 #include "chrome/browser/extensions/api/image_writer_private/operation.h"
14 class WriteFromFileOperation : public Operation {
operation_manager.cc 9 #include "chrome/browser/extensions/api/image_writer_private/operation.h"
56 base::Bind(&Operation::Abort,
66 const Operation::StartWriteCallback& callback) {
68 // Chrome OS can only support a single operation at a time.
78 scoped_refptr<Operation> operation(
85 operations_[extension_id] = operation;
88 base::Bind(&Operation::Start, operation));
96 const Operation::StartWriteCallback& callback)
    [all...]
  /external/chromium_org/mojo/services/public/cpp/network/
web_socket_read_queue.h 28 struct Operation;
36 ScopedVector<Operation> queue_;
web_socket_write_queue.h 30 struct Operation;
38 ScopedVector<Operation> queue_;
web_socket_read_queue.cc 11 struct WebSocketReadQueue::Operation {
25 Operation* op = new Operation;
35 Operation* op = queue_[0];
47 scoped_ptr<Operation> op_deleter(op);
web_socket_write_queue.cc 11 struct WebSocketWriteQueue::Operation {
31 Operation* op = new Operation;
51 Operation* op = queue_[0];
61 scoped_ptr<Operation> op_deleter(op);
  /external/chromium_org/ui/views/examples/
examples_window.h 22 enum Operation {
31 Operation operation,
examples_window_with_content.h 21 Operation operation,
examples_window_with_content.cc 13 void ShowExamplesWindowWithContent(Operation operation,
19 ShowExamplesWindow(operation, window_context, extra_examples.Pass());
  /external/chromium_org/chrome/browser/extensions/api/copresence/
copresence_translations.h 24 struct Operation;
37 const std::vector<linked_ptr<api::copresence::Operation>>& operations,
copresence_api_unittest.cc 32 using api::copresence::Operation;
121 bool ExecuteOperation(scoped_ptr<Operation> operation) {
123 operation_list->Append(operation->ToValue().release());
152 scoped_ptr<Operation> operation(new Operation);
153 operation->publish = publish.Pass();
156 EXPECT_TRUE(ExecuteOperation(operation.Pass()));
179 scoped_ptr<Operation> operation(new Operation)
    [all...]
  /external/chromium_org/chrome/installer/mini_installer/
configuration.h 14 enum Operation {
25 // Returns the desired operation dictated by the command line options.
26 Operation operation() const { return operation_; } function in class:mini_installer::Configuration
71 Operation operation_;
  /external/llvm/include/llvm/MC/
MCWin64EH.h 31 OpType Operation;
37 : Operation(Op), Label(L), Offset(0), Register(Reg) {
41 : Operation(Size>128 ? Win64EH::UOP_AllocLarge : Win64EH::UOP_AllocSmall),
44 : Operation(Op), Label(L), Offset(Off), Register(Reg) {
52 : Operation(Op), Label(L), Offset(Code ? 1 : 0) {
55 OpType getOperation() const { return Operation; }
MCDwarf.h 327 OpType Operation;
337 : Operation(Op), Label(L), Register(R), Offset(O),
343 : Operation(Op), Label(L), Register(R1), Register2(R2) {
437 OpType getOperation() const { return Operation; }
441 assert(Operation == OpDefCfa || Operation == OpOffset ||
442 Operation == OpRestore || Operation == OpUndefined ||
443 Operation == OpSameValue || Operation == OpDefCfaRegister |
    [all...]
  /art/test/004-ThreadStress/src/
Main.java 31 enum Operation {
43 Operation(int frequency) {
54 // Lock used to notify threads performing Operation.WAIT
59 // the Operation.frequency values. We fill out an Operation[]
61 // Operation[] is shuffled so that there is more random
64 // The simple-minded filling in of Operation[] based on
65 // Operation.frequency below won't have even have close to a
66 // reasonable distribution if the count of Operation
71 for (Operation op : Operation.values())
192 Operation operation = operations[nextOperation]; local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/modules/filesystem/
FileWriter.h 92 enum Operation {
105 void doOperation(Operation);
115 Operation m_operationInProgress;
116 Operation m_queuedOperation;
  /external/chromium_org/content/browser/indexed_db/
indexed_db_transaction.h 31 typedef base::Callback<void(IndexedDBTransaction*)> Operation;
59 void ScheduleTask(Operation task) {
62 void ScheduleTask(blink::WebIDBTaskType, Operation task);
63 void ScheduleAbortTask(Operation abort_task);
130 void push(Operation task) { queue_.push(task); }
131 Operation pop();
135 std::queue<Operation> queue_;
145 void push(Operation task) { stack_.push(task); }
146 Operation pop();
150 std::stack<Operation> stack_
    [all...]
  /external/deqp/framework/common/
tcuThreadUtil.hpp 76 // Used by class Operation only
129 class Operation
132 Operation (const char* name);
133 virtual ~Operation (void);
141 virtual void exec (Thread& thread) = 0; //!< Overwritten by inherited class to perform actual operation
149 Operation (const Operation&);
150 Operation& operator= (const Operation&);
168 virtual void init (void) {} //!< Called first before any Operation
    [all...]

Completed in 572 milliseconds

1 2 3 4 5 6 7 8 9