/hardware/ti/omap4xxx/security/tee_client_api/ |
tee_client_api_linux_driver.c | 150 * @param pCommand a SChannel command message that must have been filled except for the operation parameters 152 * @param pOperation a TEEC_Operation structure that contains the operation parameters (and types) 168 /* Determine message parameters from operation parameters */ 257 /* Update the operation parameters from the answer message */ 460 TEEC_Operation* operation, /* payload. If operation is NULL then no data buffers are exchanged with the Trusted Application, and the operation cannot be cancelled by the Client Application */ 469 operation, 496 TEEC_Operation* operation, 502 operation, [all...] |
/external/openssl/apps/ |
smime.c | 90 int operation = 0; local 139 operation = SMIME_ENCRYPT; 141 operation = SMIME_DECRYPT; 143 operation = SMIME_SIGN; 145 operation = SMIME_RESIGN; 147 operation = SMIME_VERIFY; 149 operation = SMIME_PK7OUT; 375 if (!(operation & SMIME_SIGNERS) && (skkeys || sksigners)) 381 if (operation & SMIME_SIGNERS) 409 else if (operation == SMIME_DECRYPT [all...] |
/frameworks/base/tools/preload/ |
WritePreloadedClassFile.java | 100 for (Operation operation : proc.operations) { 101 LoadedClass loadedClass = operation.loadedClass; 137 for (Operation operation : proc.operations) { 139 = Policy.isPreloadable(operation.loadedClass); 141 toPreload.add(operation.loadedClass);
|
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...] |
/frameworks/base/core/java/android/database/sqlite/ |
SQLiteConnection.java | 55 * perform a database operation and are then returned to the pool. At any 527 * @param cancellationSignal A signal to cancel the operation in progress, or null if none. 531 * @throws OperationCanceledException if the operation was canceled. 568 * @param cancellationSignal A signal to cancel the operation in progress, or null if none. 574 * @throws OperationCanceledException if the operation was canceled. 611 * @param cancellationSignal A signal to cancel the operation in progress, or null if none. 617 * @throws OperationCanceledException if the operation was canceled. 655 * @param cancellationSignal A signal to cancel the operation in progress, or null if none. 662 * @throws OperationCanceledException if the operation was canceled. 703 * @param cancellationSignal A signal to cancel the operation in progress, or null if none 1293 Operation operation = mOperations[index]; local 1331 final Operation operation = getOperationLocked(cookie); local 1359 final Operation operation = getOperationLocked(cookie); local 1370 final Operation operation = getOperationLocked(cookie); local 1386 final Operation operation = mOperations[index]; local 1392 final Operation operation = mOperations[mIndex]; local 1406 Operation operation = mOperations[index]; local [all...] |
/external/chromium/net/disk_cache/ |
file_posix.cc | 17 // This class represents a single asynchronous IO operation while it is being 21 // Other than the actual parameters for the IO operation (including the 25 // operation. 42 // The actual parameters for the operation are setup in the constructor of 69 // These methods start an asynchronous operation. The arguments have the same 71 // operation never finishes synchronously. 78 // Invokes the users' completion callback at the end of the IO operation. 82 virtual void OnOperationComplete(disk_cache::BackgroundIO* operation, 113 scoped_refptr<FileBackgroundIO> operation( 118 NewRunnableMethod(operation.get(), &FileBackgroundIO::Read), true) [all...] |
/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)
|
/frameworks/base/services/java/com/android/server/ |
AlarmManagerService.java | 160 public void set(int type, long triggerAtTime, PendingIntent operation) { 161 setRepeating(type, triggerAtTime, 0, operation); 165 PendingIntent operation) { 166 if (operation == null) { 175 alarm.operation = operation; 178 removeLocked(operation); 190 PendingIntent operation) { 191 if (operation == null) { 205 setRepeating(type, triggerAtTime, interval, operation); 588 public PendingIntent operation; field in class:AlarmManagerService.Alarm [all...] |
/external/mesa3d/src/glsl/ |
ir_div_to_mul_rcp.cpp | 31 * reciprocal. By breaking the operation down, constant reciprocals 62 if (ir->operation != ir_binop_div) 75 ir->operation = ir_binop_mul; 107 ir->operation = ir_unop_f2i;
|
ir_mod_to_fract.cpp | 60 if (ir->operation != ir_binop_mod) 84 ir->operation = ir_binop_mul;
|
lower_instructions.cpp | 45 * there is no subtract operation separate from adding the negation. 56 * reciprocal. By breaking the operation down, constant reciprocals 121 ir->operation = ir_binop_add; 139 ir->operation = ir_binop_mul; 171 ir->operation = ir_unop_f2i; 184 ir->operation = ir_unop_exp2; 197 ir->operation = ir_unop_exp2; 207 ir->operation = ir_binop_mul; 243 ir->operation = ir_binop_mul; 252 switch (ir->operation) { [all...] |
/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) {
|
/hardware/ti/omap4xxx/security/tf_sdk/include/ |
tee_client_api.h | 167 TEEC_Operation* operation,
176 TEEC_Operation* operation,
180 TEEC_Operation* operation);
|
tee_client_api_ex.h | 91 TEEC_Operation* operation,
98 TEEC_Operation* operation,
|
/external/chromium/chrome/browser/ui/views/tab_contents/ |
native_tab_contents_view.h | 51 virtual void SetDragCursor(WebKit::WebDragOperation operation) = 0;
|
/external/webkit/Source/WebCore/platform/graphics/android/context/ |
GraphicsOperationCollection.h | 46 void append(GraphicsOperation::Operation* operation); 52 Vector<GraphicsOperation::Operation*> m_operations;
|
/external/webkit/Source/WebCore/platform/graphics/filters/ |
FEComposite.h | 47 CompositeOperationType operation() const;
|
/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...] |
/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...] |
/development/samples/VoicemailProviderDemo/src/com/example/android/voicemail/common/utils/ |
DbQueryUtils.java | 56 /** Concatenates any number of clauses using the specified operation. */ 57 public static String concatenateClausesWithOperation(String operation, String... clauses) { 68 builder.append(" ").append(operation).append(" ");
|
/external/antlr/antlr-3.4/runtime/Ruby/test/functional/token-rewrite/ |
basic.rb | 234 error.to_s.should == %q<operation (replace @ 1..2 : "foo") overlaps with previous operation (replace @ 0..3 : "bar")> 245 error.to_s.should == %q<operation (insert-before @ 4 : "y") overlaps with previous operation (replace @ 2..4 : "x")> 256 error.to_s.should == %q<operation (replace @ 3..5 : "foo") overlaps with previous operation (replace @ 2..4 : "xyz")> 267 error.to_s.should == %q<operation (replace @ 1..3 : "foo") overlaps with previous operation (replace @ 2..4 : "xyz")>
|
/external/kernel-headers/original/linux/ |
android_pmem.h | 72 unsigned operation); 89 unsigned operation) { return -ENOSYS; }
|
/external/webkit/LayoutTests/fast/dom/DeviceOrientation/script-tests/ |
basic-operation.js | 1 description('Tests the basic operation of DeviceOrientation using the mock.');
|
/packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/ |
WnnDictionary.java | 67 /** Search operation mode (exact matching). */ 69 /** Search operation mode (prefix matching). */ 71 /** Search operation mode (link search). */ 214 * @param operation The search operation 226 public int searchWord(int operation, int order, String keyString ); 232 * set {@code SEARCH_LINK} mode to {@code operation}. The other arguments are 233 * the same as {@link #searchWord(int operation, int order, String keyString)}. 244 public int searchWord(int operation, int order, String keyString, WnnWord wnnWord );
|
/packages/providers/CalendarProvider/tests/src/com/android/providers/calendar/ |
CalendarProvider2ForTesting.java | 56 public void set(int type, long triggerAtTime, PendingIntent operation) { 60 public void cancel(PendingIntent operation) {
|