HomeSort by relevance Sort by last modified time
    Searched refs:operation (Results 201 - 225 of 1082) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/openssl/crypto/evp/
pmeth_gn.c 76 ctx->operation = EVP_PKEY_OP_PARAMGEN;
81 ctx->operation = EVP_PKEY_OP_UNDEFINED;
95 if (ctx->operation != EVP_PKEY_OP_PARAMGEN)
125 ctx->operation = EVP_PKEY_OP_KEYGEN;
130 ctx->operation = EVP_PKEY_OP_UNDEFINED;
144 if (ctx->operation != EVP_PKEY_OP_KEYGEN)
  /cts/tests/tests/hardware/src/android/hardware/cts/helpers/sensoroperations/
AlarmOperation.java 33 * after a specified period of time and waits for the child operation to complete.
35 * This operation can be used to allow the device to go to sleep and wake it up after a specified
36 * period of time. After the device wakes up, this operation will hold a wake lock until the child
37 * operation finishes. This operation will not force the device into suspend, so if another
38 * operation is holding a wake lock, the device will stay awake. Also, if the child operation
39 * finishes before the specified period, this operation return when the child operation finishes
58 * @param operation the child {@link SensorOperation} to perform after the dela
    [all...]
  /external/chromium_org/chrome/browser/chromeos/ownership/
owner_settings_service_chromeos.cc 197 SignAndStoreSettingsOperation* operation = new SignAndStoreSettingsOperation( local
202 operation->set_owner_settings_service(weak_factory_.GetWeakPtr());
203 pending_operations_.push_back(operation);
204 if (pending_operations_.front() == operation)
297 SessionManagerOperation* operation,
299 DCHECK_EQ(operation, pending_operations_.front());
303 service->set_policy_data(operation->policy_data().Pass());
304 service->set_device_settings(operation->device_settings().Pass());
307 if ((operation->public_key().get() && !public_key_.get()) ||
308 (operation->public_key().get() && public_key_.get() &
    [all...]
  /external/chromium_org/content/browser/download/
base_file.h 55 // indicating the result of the operation.
59 // result of the operation. A return code of NONE indicates that the rename
80 // DownloadInterruptReason indicating the result of the operation.
134 DownloadInterruptReason LogNetError(const char* operation, net::Error error);
138 DownloadInterruptReason LogSystemError(const char* operation,
144 const char* operation, int os_error,
  /external/chromium_org/content/browser/fileapi/
recursive_operation_delegate_unittest.cc 117 // To test the Cancel() during operation, calls Cancel() of |operation|
119 void CallCancelLater(storage::RecursiveOperationDelegate* operation,
124 base::Bind(&CallCancelLater, base::Unretained(operation), counter - 1));
128 operation->Cancel();
191 scoped_ptr<LoggingRecursiveOperation> operation(
195 operation->RunRecursively();
200 operation->log_entries();
216 scoped_ptr<LoggingRecursiveOperation> operation(
220 operation->RunRecursively()
    [all...]
  /external/chromium_org/third_party/boringssl/src/crypto/rsa/
rsa_asn1.c 65 static int rsa_cb(int operation, ASN1_VALUE **pval, const ASN1_ITEM *it,
67 if (operation == ASN1_OP_NEW_PRE) {
73 } else if (operation == ASN1_OP_FREE_PRE) {
  /external/openssl/crypto/rsa/
rsa_asn1.c 67 static int rsa_cb(int operation, ASN1_VALUE **pval, const ASN1_ITEM *it,
70 if(operation == ASN1_OP_NEW_PRE) {
74 } else if(operation == ASN1_OP_FREE_PRE) {
  /frameworks/base/packages/PrintSpooler/src/com/android/printspooler/ui/
PrintPreviewController.java 148 Message operation = mHandler.obtainMessage(MyHandler.MSG_CLOSE); local
149 mHandler.enqueueOperation(operation);
156 Message operation = mHandler.obtainMessage(MyHandler.MSG_OPEN); local
157 mHandler.enqueueOperation(operation);
168 Message operation = mHandler.obtainMessage(MyHandler.MSG_UPDATE, args); local
169 mHandler.enqueueOperation(operation);
173 operation = mHandler.obtainMessage(MyHandler.MSG_START_PRELOAD);
174 mHandler.enqueueOperation(operation);
188 Message operation = mHandler.obtainMessage(MyHandler.MSG_CLOSE);
189 mHandler.enqueueOperation(operation);
254 Message operation = mPendingOperations.remove(0); local
    [all...]
  /frameworks/base/tools/preload/
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...]
  /hardware/ti/omap4-aah/security/tf_sdk/include/
tee_client_api.h 167 TEEC_Operation* operation,
176 TEEC_Operation* operation,
180 TEEC_Operation* operation);
  /hardware/ti/omap4xxx/security/tf_sdk/include/
tee_client_api.h 167 TEEC_Operation* operation,
176 TEEC_Operation* operation,
180 TEEC_Operation* operation);
  /device/asus/fugu/kernel-headers/linux/sound/
intel_sst_ioctl.h 27 __u8 operation; member in struct:snd_ppp_params
  /device/asus/fugu/original-kernel-headers/linux/sound/
intel_sst_ioctl.h 40 __u8 operation; /* 0 = set_algo, 1 = get_algo */ member in struct:snd_ppp_params
  /external/chromium_org/chrome/browser/extensions/api/image_writer_private/
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/third_party/boringssl/src/crypto/dsa/
dsa_asn1.c 65 static int dsa_sig_cb(int operation, ASN1_VALUE **pval, const ASN1_ITEM *it,
67 if (operation != ASN1_OP_NEW_PRE) {
90 static int dsa_cb(int operation, ASN1_VALUE **pval, const ASN1_ITEM *it,
92 switch (operation) {
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/nv50/codegen/
nv50_ir_build_util.h 52 inline Instruction *mkOp(operation, DataType, Value *);
53 Instruction *mkOp1(operation, DataType, Value *, Value *);
54 Instruction *mkOp2(operation, DataType, Value *, Value *, Value *);
55 Instruction *mkOp3(operation, DataType, Value *, Value *, Value *, Value *);
57 LValue *mkOp1v(operation, DataType, Value *, Value *);
58 LValue *mkOp2v(operation, DataType, Value *, Value *, Value *);
59 LValue *mkOp3v(operation, DataType, Value *, Value *, Value *, Value *);
62 Instruction *mkStore(operation, DataType, Symbol *, Value *ptr, Value *val);
72 Instruction *mkCvt(operation, DataType, Value *, DataType, Value *);
73 CmpInstruction *mkCmp(operation, CondCode, DataType
    [all...]
  /external/chromium_org/third_party/mesa/src/src/glsl/
lower_instructions.cpp 46 * there is no subtract operation separate from adding the negation.
57 * reciprocal. By breaking the operation down, constant reciprocals
127 ir->operation = ir_binop_add;
145 ir->operation = ir_binop_mul;
190 ir->operation = ir_unop_f2i;
193 ir->operation = ir_unop_i2u;
206 ir->operation = ir_unop_exp2;
219 ir->operation = ir_unop_exp2;
229 ir->operation = ir_binop_mul;
265 ir->operation = ir_binop_mul
    [all...]
  /external/chromium_org/ui/base/cocoa/
appkit_utils.h 34 NSCompositingOperation operation,
  /external/mesa3d/src/gallium/drivers/nv50/codegen/
nv50_ir_build_util.h 52 inline Instruction *mkOp(operation, DataType, Value *);
53 Instruction *mkOp1(operation, DataType, Value *, Value *);
54 Instruction *mkOp2(operation, DataType, Value *, Value *, Value *);
55 Instruction *mkOp3(operation, DataType, Value *, Value *, Value *, Value *);
57 LValue *mkOp1v(operation, DataType, Value *, Value *);
58 LValue *mkOp2v(operation, DataType, Value *, Value *, Value *);
59 LValue *mkOp3v(operation, DataType, Value *, Value *, Value *, Value *);
62 Instruction *mkStore(operation, DataType, Symbol *, Value *ptr, Value *val);
72 Instruction *mkCvt(operation, DataType, Value *, DataType, Value *);
73 CmpInstruction *mkCmp(operation, CondCode, DataType
    [all...]
  /external/mesa3d/src/glsl/
lower_instructions.cpp 46 * there is no subtract operation separate from adding the negation.
57 * reciprocal. By breaking the operation down, constant reciprocals
127 ir->operation = ir_binop_add;
145 ir->operation = ir_binop_mul;
190 ir->operation = ir_unop_f2i;
193 ir->operation = ir_unop_i2u;
206 ir->operation = ir_unop_exp2;
219 ir->operation = ir_unop_exp2;
229 ir->operation = ir_binop_mul;
265 ir->operation = ir_binop_mul
    [all...]
  /frameworks/base/cmds/appwidget/src/com/android/commands/appwidget/
AppWidget.java 70 String operation = mTokenizer.nextArg(); local
71 if (ARGUMENT_GRANT_BIND.equals(operation)) {
73 } else if (ARGUMENT_REVOKE_BIND.equals(operation)) {
76 throw new IllegalArgumentException("Unsupported operation: " + operation);
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/streams/
rewrite.rb 78 # run the rewrite operation represented by this object and append the output to +buffer+
82 # return the name of this operation as set by its class
88 # return a compact, readable representation of this operation
97 Represents rewrite operation:
120 Represents rewrite operation:
158 Represents rewrite operation:
216 operation = operations.shift
217 location = operation.location
219 case operation
231 conflict!( operation, prior_operation
    [all...]
  /external/chromium_org/chrome/browser/extensions/
install_verifier.cc 279 InstallVerifier::PendingOperation* operation = local
281 operation->ids.insert(ids.begin(), ids.end());
283 operation_queue_.push(linked_ptr<PendingOperation>(operation));
316 InstallVerifier::PendingOperation* operation =
318 operation->ids = ids;
320 operation_queue_.push(linked_ptr<PendingOperation>(operation));
536 // hold (set of ids, list of operation type) pairs.
538 const PendingOperation& operation = *operation_queue_.front(); local
544 if (operation.type == InstallVerifier::REMOVE) {
545 for (ExtensionIdSet::const_iterator i = operation.ids.begin()
604 linked_ptr<PendingOperation> operation = operation_queue_.front(); local
    [all...]
  /hardware/ti/omap3/omx/system/src/openmax_il/perf/reader/
perf_reader.c 68 U32 ulData0, ulData1, ulData2, ulData3, ulData4, ulData5, ulData6, ulData7, operation; local
127 /* get operation */
129 operation = ulData1 & PERF_LOG_Mask;
131 if (operation != PERF_LOG_Location)
155 if (operation & PERF_LOG_Buffer)
157 /* Buffer operation */
158 if (operation & PERF_LOG_Xfering) {
163 sending = operation & PERF_LOG_Sending;
188 else if (operation & PERF_LOG_Command)
193 operation & PERF_LOG_Sending
    [all...]
  /external/chromium_org/content/renderer/pepper/
pepper_graphics_2d_host.cc 429 QueuedOperation operation(QueuedOperation::PAINT);
430 operation.paint_image = image_resource;
434 &operation.paint_src_rect))
441 if (x64 + static_cast<int64>(operation.paint_src_rect.x()) < 0 ||
442 x64 + static_cast<int64>(operation.paint_src_rect.right()) >
445 if (y64 + static_cast<int64>(operation.paint_src_rect.y()) < 0 ||
446 y64 + static_cast<int64>(operation.paint_src_rect.bottom()) >
449 operation.paint_x = top_left.x;
450 operation.paint_y = top_left.y;
452 queued_operations_.push_back(operation);
613 QueuedOperation& operation = queued_operations_[i]; local
    [all...]

Completed in 2577 milliseconds

1 2 3 4 5 6 7 891011>>