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

1 2 3 4

  /external/chromium-trace/catapult/third_party/mapreduce/mapreduce/operation/
__init__.py 19 Operation is callable that takes context.Context as a parameter.
29 from base import Operation
31 __all__ = ['db', 'counters', 'Operation']
base.py 17 """Base operation class."""
21 __all__ = ['Operation']
24 class Operation(object):
28 called upon operation yield.
  /system/keymaster/
operation.h 33 class Operation;
54 virtual Operation* CreateOperation(const Key& key, const AuthorizationSet& begin_params,
88 class Operation {
90 Operation(keymaster_purpose_t purpose) : purpose_(purpose) {}
91 virtual ~Operation() {}
  /external/deqp/framework/common/
tcuThreadUtil.cpp 113 Operation::Operation (const char* name)
119 Operation::~Operation (void)
123 void Operation::execute (Thread& thread)
134 // Try execute operation
190 void Thread::addOperation (Operation* operation)
192 m_operations.push_back(operation);
200 // Reserve at least two messages for each operation
    [all...]
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...]
  /external/protobuf/src/google/protobuf/
wire_format.h 225 enum Operation {
233 static void VerifyUTF8String(const char* data, int size, Operation op);
238 Operation op,
246 Operation op,
314 WireFormat::Operation op) {
324 const char* data, int size, WireFormat::Operation op,
  /frameworks/base/obex/javax/obex/
Operation.java 42 * The <code>Operation</code> interface provides ways to manipulate a single
43 * OBEX PUT or GET operation. The implementation of this interface sends OBEX
44 * packets as they are built. If during the operation the peer in the operation
45 * ends the operation, an <code>IOException</code> is thrown on the next read
62 * operation, the new headers will be sent during the next packet exchange.
71 * Operation op = conn.put(head);
87 * Operation op = conn.get(head);
102 * <H3>Client PUT Operation Flow</H3> For PUT operations, a call to
110 * <H3>Client GET Operation Flow</H3> For GET operation, a call t
    [all...]
  /frameworks/base/services/core/java/com/android/server/location/
GnssStatusListenerHelper.java 46 Operation operation; local
48 operation = new Operation() {
55 operation = new Operation() {
62 foreach(operation);
66 Operation operation = new Operation() { local
81 Operation operation = new Operation() { local
96 Operation operation = new Operation() { local
    [all...]
  /prebuilts/misc/darwin-x86_64/protobuf2.5/include/google/protobuf/
wire_format.h 225 enum Operation {
231 static void VerifyUTF8String(const char* data, int size, Operation op);
238 Operation op);
294 WireFormat::Operation op) {
  /prebuilts/misc/linux-x86_64/protobuf2.5/include/google/protobuf/
wire_format.h 225 enum Operation {
231 static void VerifyUTF8String(const char* data, int size, Operation op);
238 Operation op);
294 WireFormat::Operation op) {
  /prebuilts/misc/windows/protobuf2.5/include/google/protobuf/
wire_format.h 225 enum Operation {
231 static void VerifyUTF8String(const char* data, int size, Operation op);
238 Operation op);
294 WireFormat::Operation op) {
  /prebuilts/tools/darwin-x86_64/protoc/include/google/protobuf/
wire_format.h 233 enum Operation {
241 static void VerifyUTF8String(const char* data, int size, Operation op);
246 Operation op,
313 WireFormat::Operation op) {
316 data, size, static_cast<WireFormatLite::Operation>(op), NULL);
324 const char* data, int size, WireFormat::Operation op,
328 data, size, static_cast<WireFormatLite::Operation>(op), field_name);
  /prebuilts/tools/linux-x86_64/protoc/include/google/protobuf/
wire_format.h 225 enum Operation {
231 static void VerifyUTF8String(const char* data, int size, Operation op);
238 Operation op);
294 WireFormat::Operation op) {
  /system/security/keystore/
operation.h 43 * that operation at a later time by applications. It also does LRU tracking
44 * for operation pruning and keeps a mapping of clients to operations to allow
70 struct Operation {
71 Operation();
72 Operation(keymaster_operation_handle_t handle, uint64_t keyid, keymaster_purpose_t purpose,
83 std::map<sp<IBinder>, struct Operation> mMap;
operation.cpp 18 #include "operation.h"
32 mMap[token] = Operation(handle, keyid, purpose, dev, characteristics, appToken);
147 OperationMap::Operation::Operation(keymaster_operation_handle_t handle_, uint64_t keyid_,
154 OperationMap::Operation::Operation() : handle(0), device(NULL), characteristics(), appToken(NULL) {}
  /external/llvm/include/llvm/MC/
MCWinEH.h 27 const unsigned Operation;
30 : Label(L), Offset(Off), Register(Reg), Operation(Op) {}
  /external/llvm/tools/llvm-cov/
CoverageFilters.h 57 enum Operation { LessThan, GreaterThan };
60 Operation Op;
63 StatisticThresholdFilter(Operation Op, T Threshold)
84 RegionCoverageFilter(Operation Op, double Threshold)
95 LineCoverageFilter(Operation Op, double Threshold)
  /frameworks/base/tools/preload/
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...]
  /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/v8/tools/
profile.js 60 Profile.Operation = {
80 * Called whenever the specified operation has failed finding a function
82 * See the Profile.Operation enum for the list of
85 * @param {number} operation Operation.
92 operation, addr, opt_stackPos) {
190 this.handleUnknownCode(Profile.Operation.MOVE, from);
204 this.handleUnknownCode(Profile.Operation.DELETE, start);
270 this.handleUnknownCode(Profile.Operation.TICK, stack[i], i);
  /external/apache-xml/src/main/java/org/apache/xpath/operations/
Operation.java 19 * $Id: Operation.java 468655 2006-10-28 07:12:06Z minchau $
30 * The baseclass for a binary operation.
32 public class Operation extends Expression implements ExpressionOwner
80 * Set the left and right operand expressions for this operation.
95 * Execute a binary operation by calling execute on each of the operands,
101 * @return The XObject result of the operation.
119 * Apply the operation to two operands, and return the result.
125 * @return non-null reference to the XObject that represents the result of the operation.
135 /** @return the left operand of binary operation, as an Expression.
141 /** @return the right operand of binary operation, as an Expression
    [all...]
  /external/guava/guava-tests/test/com/google/common/collect/
ConcurrentHashMultisetBasherTest.java 116 Operation[] operations = Operation.values();
120 Operation op = operations[random.nextInt(operations.length)];
160 private enum Operation {
  /external/libnfc-nxp/src/
phFriNfc_OvrHal.h 58 * This component encapsulates the HAL functions, suited for the NFC-FRI overlapped way of operation. The HAL itself
60 * the HAL, from the overlapped I/O operation mode the FRI is using.
73 * response of the overlapped operation.
80 * be issued. No HAL operation must be pending.
139 * This is required by the Overlapped HAL in order abort a pending Overlapped HAL operation. This funtion will be
182 * Immediate Operation result (not the result of the HAL operation). Usually this is
203 /** Currently active operation of the component. If no operation is pending, the content of this member is
207 uint8_t Operation;
    [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...]
  /art/test/004-ThreadStress/src/
Main.java 51 private static abstract class Operation {
53 * Perform the action represented by this operation. Returns true if the thread should
59 private final static class OOM extends Operation {
75 private final static class SigQuit extends Operation {
119 private final static class Alloc extends Operation {
136 private final static class LargeAlloc extends Operation {
154 private final static class StackTrace extends Operation {
162 private final static class Exit extends Operation {
169 private final static class Sleep extends Operation {
182 private final static class TimedWait extends Operation {
    [all...]

Completed in 558 milliseconds

1 2 3 4