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

1 2 3 4 5 6 7 8 91011>>

  /external/parameter-framework/asio-1.10.6/include/asio/detail/
op_queue.hpp 22 template <typename Operation>
28 template <typename Operation>
29 static Operation* next(Operation* o)
31 return static_cast<Operation*>(o->next_);
40 template <typename Operation>
41 static void destroy(Operation* o)
46 template <typename Operation>
47 static Operation*& front(op_queue<Operation>& q
    [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
82 Operation operation = new Operation() { local
98 Operation operation = new Operation() { local
    [all...]
  /system/keymaster/
operation_table.h 26 class Operation;
35 operation = NULL;
39 Operation* operation; member in struct:keymaster::OperationTable::Entry
42 keymaster_error_t Add(Operation* operation, keymaster_operation_handle_t* op_handle);
43 Operation* Find(keymaster_operation_handle_t op_handle);
ecdsa_operation.h 25 #include "operation.h"
29 class EcdsaOperation : public Operation {
32 : Operation(purpose), digest_(digest), ecdsa_key_(key) {
81 Operation* CreateOperation(const Key& key, const AuthorizationSet& begin_params,
86 virtual Operation* InstantiateOperation(keymaster_digest_t digest, EVP_PKEY* key) = 0;
92 Operation* InstantiateOperation(keymaster_digest_t digest, EVP_PKEY* key) {
100 Operation* InstantiateOperation(keymaster_digest_t digest, EVP_PKEY* key) {
  /frameworks/base/media/java/android/media/
VolumeShaper.aidl 20 parcelable VolumeShaper.Operation;
IPlayer.aidl 32 in VolumeShaper.Operation operation);
  /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...]
  /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...]
  /device/linaro/bootloader/edk2/OvmfPkg/Library/XenHypercallLib/
XenHypercall.c 47 IN UINTN Operation,
52 Operation, (INTN) Arguments);
57 IN INTN Operation,
62 Operation, (INTN) Arguments);
  /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)
  /device/linaro/bootloader/edk2/ArmPkg/Library/ArmDmaLib/
ArmDmaLib.c 33 DMA_MAP_OPERATION Operation;
45 Operation is relative to the DMA bus master.
47 @param Operation Indicates if the bus master is going to read or write to system memory.
65 IN DMA_MAP_OPERATION Operation,
81 if (Operation >= MapOperationMaximum) {
118 if ((Operation == MapOperationBusMasterRead) || (Operation == MapOperationBusMasterCommonBuffer)) {
132 if ((Operation == MapOperationBusMasterRead) || (Operation == MapOperationBusMasterCommonBuffer)) {
142 Map->Operation = Operation;
    [all...]
  /external/swiftshader/third_party/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; }
  /art/test/149-suspend-all-stress/
suspend_all.cc 27 enum Operation {
38 switch (static_cast<Operation>(iterations % kOPNumber)) {
  /device/linaro/bootloader/edk2/OvmfPkg/Include/Library/
XenHypercallLib.h 66 Hypercall to do different operation on the memory.
68 @param Operation The operation number, e.g. XENMEM_add_to_physmap.
69 @param Arguments The arguments associated to the operation.
76 IN UINTN Operation,
81 Do an operation on the event channels.
83 @param Operation The operation number, e.g. EVTCHNOP_send.
84 @param Arguments The argument associated to the operation.
91 IN INTN 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...]
  /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...]
  /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 {
118 private final static class Alloc extends Operation {
135 private final static class LargeAlloc extends Operation {
153 private final static class StackTrace extends Operation {
164 private final static class Exit extends Operation {
171 private final static class Sleep extends Operation {
184 private final static class TimedWait extends Operation {
579 Operation operation = operations[nextOperation]; local
617 Operation operation = operations[i]; local
    [all...]
  /external/llvm/tools/llvm-ar/
llvm-ar.cpp 112 "\nMODIFIERS (operation specific):\n"
138 // Modifiers to follow operation to vary behavior
203 // Parse the command line options as presented and return the operation
205 // modifier/operation pairs have not been violated.
223 // Keep track of which operation was requested
224 ArchiveOperation Operation;
230 case 'd': ++NumOperations; Operation = Delete; break;
231 case 'm': ++NumOperations; Operation = Move ; break;
232 case 'p': ++NumOperations; Operation = Print; break;
233 case 'q': ++NumOperations; Operation = QuickAppend; break
    [all...]
  /external/deqp/external/vulkancts/modules/vulkan/synchronization/
vktSynchronizationOperation.hpp 23 * \brief Synchronization operation abstraction
108 //! Similar to Context, but allows test instance to decide which resources are used by the operation.
109 //! E.g. this is needed when we want operation to work on a particular queue instead of the universal queue.
159 //! read - the layout image must be in before being passed to the read operation
160 //! write - the layout image will be in after the write operation has finished
174 //! Abstract operation on a resource
176 //! read - data actually read by the operation
177 //! write - expected data that operation was supposed to write
179 class Operation
182 Operation (void) {
    [all...]
  /frameworks/base/obex/javax/obex/
ServerRequestHandler.java 54 * an OBEX operation and a Connection ID was specified, no Connection ID will be
63 * <code>InputStream</code> from the <code>Operation</code> object passed to the
215 * @param operation contains the headers sent by the client and allows new
223 public int onPut(Operation operation) {
236 * @param operation contains the headers sent by the client and allows new
244 public int onGet(Operation operation) {
  /device/linaro/bootloader/edk2/QuarkSocPkg/QuarkNorthCluster/QNCInit/Dxe/
QNCSmbus.h 30 Executes an SMBus operation to an SMBus controller. Returns when either the command has been
31 executed or an error is encountered in doing the operation.
33 The internal worker function provides a standard way to execute an operation as defined in the
43 @param Operation Signifies which particular SMBus hardware protocol instance that
48 operation.
49 @param Length Signifies the number of bytes that this operation will do. The
50 maximum number of bytes can be revision specific and operation
52 are executed for this operation. Not all operations require this
61 @retval EFI_TIMEOUT Timeout expired before the operation was completed. Timeout is
68 @retval EFI_INVALID_PARAMETER Operation is not defined in EFI_SMBUS_OPERATION.
    [all...]
  /external/apache-xml/src/main/java/org/apache/xpath/operations/
Gt.java 27 * The '>' operation expression executer.
29 public class Gt extends Operation
34 * Apply the operation to two operands, and return the result.
40 * @return non-null reference to the XObject that represents the result of the operation.
Gte.java 27 * The '>=' operation expression executer.
29 public class Gte extends Operation
34 * Apply the operation to two operands, and return the result.
40 * @return non-null reference to the XObject that represents the result of the operation.

Completed in 2115 milliseconds

1 2 3 4 5 6 7 8 91011>>