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

1 2 3 4 5 6 7 8 9

  /external/chromium_org/chrome/browser/extensions/api/image_writer_private/
operation_mac.cc 6 #include "chrome/browser/extensions/api/image_writer_private/operation.h"
11 void Operation::WriteStart() {
15 void Operation::VerifyWriteStart() {
operation_win.cc 6 #include "chrome/browser/extensions/api/image_writer_private/operation.h"
11 void Operation::WriteStart() {
15 void Operation::VerifyWriteStart() {
operation_chromeos.cc 6 #include "chrome/browser/extensions/api/image_writer_private/operation.h"
34 void Operation::WriteStart() {
40 base::Bind(&Operation::StartWriteOnUIThread, this));
45 void Operation::StartWriteOnUIThread() {
53 base::Bind(&Operation::OnBurnFinished, this),
54 base::Bind(&Operation::OnBurnProgress, this));
58 base::Bind(&Operation::OnBurnError, this));
61 void Operation::OnBurnFinished(const std::string& target_path,
74 void Operation::OnBurnProgress(const std::string& target_path,
81 void Operation::OnBurnError()
    [all...]
operation_unittest.cc 6 #include "chrome/browser/extensions/api/image_writer_private/operation.h"
15 class DummyOperation : public Operation {
20 : Operation(manager, extension_id, storage_unit_id) {};
28 scoped_refptr<Operation> op(new DummyOperation(manager.AsWeakPtr(),
operation.cc 9 #include "chrome/browser/extensions/api/image_writer_private/operation.h"
29 Operation::Operation(base::WeakPtr<OperationManager> manager,
39 Operation::~Operation() {
42 void Operation::Cancel() {
45 DVLOG(1) << "Cancelling image writing operation for ext: " << extension_id_;
52 void Operation::Abort() {
56 int Operation::GetProgress() {
60 image_writer_api::Stage Operation::GetStage()
    [all...]
operation_linux.cc 9 #include "chrome/browser/extensions/api/image_writer_private/operation.h"
21 void Operation::WriteStart() {
59 base::Bind(&Operation::WriteChunk,
66 void Operation::WriteChunk(
91 base::Bind(&Operation::WriteChunk,
106 base::Bind(&Operation::WriteComplete,
119 bool Operation::WriteCleanUp(
136 void Operation::WriteComplete() {
144 base::Bind(&Operation::VerifyWriteStart,
148 void Operation::VerifyWriteStart()
    [all...]
operation_manager.h 16 #include "chrome/browser/extensions/api/image_writer_private/operation.h"
29 class Operation;
45 // Starts a WriteFromUrl operation.
52 const Operation::StartWriteCallback& callback);
54 // Starts a WriteFromFile operation.
58 const Operation::StartWriteCallback& callback);
60 // Cancels the extensions current operation if any.
62 const Operation::CancelWriteCallback& callback);
95 Operation* GetOperation(const ExtensionId& extension_id);
99 typedef std::map<ExtensionId, scoped_refptr<Operation> > OperationMap
    [all...]
write_from_file_operation.h 8 #include "chrome/browser/extensions/api/image_writer_private/operation.h"
14 class WriteFromFileOperation : public Operation {
  /external/chromium_org/ui/views/examples/
examples_window.h 13 enum Operation {
19 VIEWS_EXAMPLES_EXPORT void ShowExamplesWindow(Operation operation);
examples_window_with_content.h 18 enum Operation {
25 Operation operation,
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/mpl/
inserter.hpp 22 , typename Operation
27 typedef Operation operation; typedef in struct:boost::mpl::inserter
  /packages/apps/UnifiedEmail/src/com/android/mail/ui/
FolderOperations.java 43 private final Map<String, Operation> mOperations;
61 * Adds an operation to the list of folder operations to be applied. The last
62 * operation for a folder will be retained in the list of operations.
67 Operation operation = new Operation(folder, add); local
69 mOperations.put(folder.name, operation);
73 * Returns true if there is an operation for the specified folder
75 * @return Returns true if there is a add or remove operation for
83 * Returns true if there is an operation for the specified folde
108 Operation operation = mOperations.get(canonicalName); local
130 Operation operation = mOperations.get(canonicalName); local
    [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
66 Operation operation_;
  /frameworks/base/tools/preload/
Proc.java 46 /** Maps thread ID to operation stack. */
47 transient final Map<Integer, LinkedList<Operation>> stacks
48 = new HashMap<Integer, LinkedList<Operation>>();
54 final List<Operation> operations = new ArrayList<Operation>();
84 * Starts an operation.
86 * @param threadId thread the operation started in
87 * @param loadedClass class operation happened to
88 * @param time the operation started
91 Operation.Type type)
    [all...]
LoadedClass.java 31 final List<Operation> loads = new ArrayList<Operation>();
34 final List<Operation> initializations = new ArrayList<Operation>();
84 private static int calculateMedian(List<Operation> operations) {
114 private void addProcessNames(List<Operation> ops, Set<String> names) {
115 for (Operation operation : ops) {
116 if (operation.process.fromZygote()) {
117 names.add(operation.process.name)
    [all...]
Operation.java 22 * An operation with a duration. Could represent a class load or initialization.
24 class Operation implements Serializable {
29 * Type of operation.
35 /** Process this operation occurred in. */
38 /** Start time for this operation. */
41 /** Index of this operation relative to its process. */
44 /** Type of operation. */
47 /** End time for this operation. */
50 /** The class that this operation loaded or initialized. */
54 final List<Operation> subops = new ArrayList<Operation>()
    [all...]
  /external/chromium_org/content/browser/indexed_db/
indexed_db_transaction.h 29 typedef base::Callback<void(IndexedDBTransaction*)> Operation;
49 void ScheduleTask(Operation task) {
52 void ScheduleTask(Operation task, Operation abort_task);
53 void ScheduleTask(IndexedDBDatabase::TaskType, Operation task);
115 void push(Operation task) { queue_.push(task); }
116 Operation pop();
120 std::queue<Operation> queue_;
128 void push(Operation task) { stack_.push(task); }
129 Operation pop()
    [all...]
  /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 284 OpType Operation;
294 Operation(Op), Label(L), Register(R), Offset(O),
300 Operation(Op), Label(L), Register(R1), Register2(R2) {
363 OpType getOperation() const { return Operation; }
367 assert(Operation == OpDefCfa || Operation == OpOffset ||
368 Operation == OpRestore || Operation == OpUndefined ||
369 Operation == OpSameValue || Operation == OpDefCfaRegister |
    [all...]
  /art/test/ThreadStress/
ThreadStress.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...]
  /packages/apps/Calendar/src/com/android/calendar/
AsyncQueryService.java 57 * Data class which holds into info of the queued operation
59 public static class Operation {
72 * One of the EVENT_ARG_ constants in the class describing the operation
83 case Operation.EVENT_ARG_QUERY:
85 case Operation.EVENT_ARG_INSERT:
87 case Operation.EVENT_ARG_UPDATE:
89 case Operation.EVENT_ARG_DELETE:
91 case Operation.EVENT_ARG_BATCH:
101 builder.append("Operation [op=");
124 * Gets the last delayed operation. It is typically used for canceling
    [all...]
  /external/chromium_org/sandbox/linux/seccomp-bpf/
errorcode.h 78 enum Operation {
139 Operation op() const { return op_; }
163 Operation op,
183 Operation op_; // Comparison operation.
  /external/chromium_org/third_party/WebKit/Source/modules/filesystem/
FileWriter.h 88 enum Operation {
101 void doOperation(Operation);
111 Operation m_operationInProgress;
112 Operation m_queuedOperation;
  /packages/apps/Exchange/src/com/android/exchange/adapter/
AbstractSyncAdapter.java 115 * Operation is our binder-safe ContentProviderOperation (CPO) construct; an Operation can
127 protected static class Operation {
132 // Is this Operation a separator? (a good place to break up a large transaction)
138 Operation(ContentProviderOperation.Builder builder, String columnName, int offset) {
145 Operation(ContentProviderOperation.Builder builder) {
152 Operation(ContentProviderOperation op) {
193 * Convert an Operation to a CPO; if the Operation has a back reference, apply it with the
197 static ContentProviderOperation operationToContentProviderOperation(Operation op, int offset)
    [all...]
  /external/stlport/test/eh/
LeakCheck.h 18 be written so that each operation that could cause an exception causes
58 EFFECTS: Given a value and an operation, repeatedly applies the operation to a
62 value type whether the operation succeeds or fails.
64 template <class Value, class Operation>
65 void WeakCheck(const Value& v, const Operation& op, long max_iters = 2000000) {
99 their arguments. The operation is performed on the value itself, and no
102 template <class Value, class Operation>
103 void ConstCheck(const Value& v, const Operation& op, long max_iters = 2000000) {
135 the "strong guarantee": if the operation fails due to an exception, th
    [all...]

Completed in 1132 milliseconds

1 2 3 4 5 6 7 8 9