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

1 2 3 4 5 6 7 8 91011>>

  /external/chromium/build/
sanitize-win-build-log.sed 11 /The operation completed successfully./d
  /external/webkit/Source/WebCore/platform/graphics/android/rendering/
QueuedOperation.h 35 virtual bool operator==(const QueuedOperation* operation) = 0;
43 virtual bool check(QueuedOperation* operation) = 0;
TexturesGenerator.cpp 52 void TexturesGenerator::scheduleOperation(QueuedOperation* operation)
57 mRequestedOperations.append(operation);
58 mRequestedOperationsHash.set(operation->uniquePtr(), operation);
60 bool deferrable = operation->priority() >= gDeferPriorityCutoff;
77 QueuedOperation* operation = mRequestedOperations[i]; local
78 if (filter->check(operation)) {
80 mRequestedOperationsHash.remove(operation->uniquePtr());
81 delete operation;
PaintTileOperation.h 44 virtual bool operator==(const QueuedOperation* operation);
66 virtual bool check(QueuedOperation* operation)
68 PaintTileOperation* op = static_cast<PaintTileOperation*>(operation);
80 virtual bool check(QueuedOperation* operation)
82 PaintTileOperation* op = static_cast<PaintTileOperation*>(operation);
  /frameworks/base/core/java/android/app/
IAlarmManager.aidl 27 void set(int type, long triggerAtTime, in PendingIntent operation);
28 void setRepeating(int type, long triggerAtTime, long interval, in PendingIntent operation);
29 void setInexactRepeating(int type, long triggerAtTime, long interval, in PendingIntent operation);
32 void remove(in PendingIntent operation);
AlarmManager.java 120 * @param operation Action to perform when the alarm goes off;
135 public void set(int type, long triggerAtMillis, PendingIntent operation) {
137 mService.set(type, triggerAtMillis, operation);
174 * @param operation Action to perform when the alarm goes off;
190 long intervalMillis, PendingIntent operation) {
192 mService.setRepeating(type, triggerAtMillis, intervalMillis, operation);
235 * @param operation Action to perform when the alarm goes off;
256 long intervalMillis, PendingIntent operation) {
258 mService.setInexactRepeating(type, triggerAtMillis, intervalMillis, operation);
268 * @param operation IntentSender which matches a previously adde
    [all...]
  /external/iptables/include/linux/netfilter/
xt_CHECKSUM.h 17 __u8 operation; /* bitset of operations */ member in struct:xt_CHECKSUM_info
  /libcore/dom/src/test/java/org/w3c/domts/
UserDataNotification.java 22 private final short operation; field in class:UserDataNotification
32 public UserDataNotification(short operation,
37 this.operation = operation;
45 * Get value of operation parameter
47 * @return value of operation parameter
50 return operation;
  /external/chromium/net/disk_cache/
in_flight_io.cc 52 void InFlightIO::OnIOComplete(BackgroundIO* operation) {
62 NewRunnableMethod(operation,
64 operation->io_completed()->Signal();
68 void InFlightIO::InvokeCallback(BackgroundIO* operation, bool cancel_task) {
69 operation->io_completed()->Wait();
72 operation->Cancel();
74 // Make sure that we remove the operation from the list before invoking the
76 DCHECK(io_list_.find(operation) != io_list_.end());
77 io_list_.erase(make_scoped_refptr(operation));
78 OnOperationComplete(operation, cancel_task)
    [all...]
in_flight_backend_io.cc 238 NOTREACHED() << "Invalid Operation";
275 NOTREACHED() << "Invalid Operation";
294 scoped_refptr<BackendIO> operation(new BackendIO(this, backend_, callback));
295 operation->Init();
296 PostOperation(operation);
301 scoped_refptr<BackendIO> operation(new BackendIO(this, backend_, callback));
302 operation->OpenEntry(key, entry);
303 PostOperation(operation);
308 scoped_refptr<BackendIO> operation(new BackendIO(this, backend_, callback));
309 operation->CreateEntry(key, entry)
    [all...]
in_flight_io.h 18 // This class represents a single asynchronous IO operation while it is being
22 // Other than the actual parameters for the IO operation (including the
26 // operation.
29 // This method signals the controller that this operation is finished, in the
36 // operation to finish it doesn't have to wait for the final task to be
38 // Note that this method is not intended to cancel the actual IO operation or
52 int result_; // Final operation result.
57 // Notifies the controller about the end of the operation, from the background
61 // An event to signal when the operation completes.
68 // of this class is meant to be used to start an asynchronous operation (usin
    [all...]
  /external/proguard/src/proguard/evaluation/value/
CompositeDoubleValue.java 24 * This DoubleValue represents the result of a binary operation on two double
39 private final byte operation; field in class:CompositeDoubleValue
45 * and the given operation.
48 byte operation,
52 this.operation = operation;
64 this.operation == ((CompositeDoubleValue)object).operation &&
79 return "("+doubleValue1+((char)operation)+doubleValue2+")";
CompositeFloatValue.java 24 * This FloatValue represents the result of a binary operation on two float
39 private final byte operation; field in class:CompositeFloatValue
45 * and the given operation.
48 byte operation,
52 this.operation = operation;
64 this.operation == ((CompositeFloatValue)object).operation &&
79 return "("+floatValue1+((char)operation)+floatValue2+")";
CompositeIntegerValue.java 24 * This IntegerValue represents the result of a binary operation on two integer
45 private final byte operation; field in class:CompositeIntegerValue
51 * and the given operation.
54 byte operation,
58 this.operation = operation;
70 this.operation == ((CompositeIntegerValue)object).operation &&
85 return "("+integerValue1+((char)operation)+integerValue2+")";
CompositeLongValue.java 24 * This LongValue represents the result of a binary operation on two long
45 private final byte operation; field in class:CompositeLongValue
51 * and the given operation.
54 byte operation,
58 this.operation = operation;
70 this.operation == ((CompositeLongValue)object).operation &&
85 return "("+longValue1+((char)operation)+longValue2+")";
  /hardware/ti/wpan/tools/FM/FmRadioIf/src/java/com/ti/core/
JFmRxCcmVacResourceOwner.java 63 private JFmRxEcalOperation operation; field in class:JFmRxCcmVacResourceOwner
65 public JFmRxCcmVacResourceOwner(JFmRxEcalResource resource, JFmRxEcalOperation operation) {
67 this.operation = operation;
79 return operation;
82 public void setOperation(JFmRxEcalOperation operation) {
83 this.operation = operation;
  /libcore/luni/src/main/java/org/w3c/dom/
UserDataHandler.java 57 * @param operation Specifies the type of operation that is being
66 public void handle(short operation,
  /frameworks/base/core/java/android/content/
SyncQueue.java 71 public boolean add(SyncOperation operation) {
72 return add(operation, null /* this is not coming from the database */);
75 private boolean add(SyncOperation operation,
77 // - if an operation with the same key exists and this one should run earlier,
79 // - if an operation with the same key exists and if this one should run
81 // - if no operation exists then add the new one
82 final String operationKey = operation.key;
87 if (existingOperation.expedited == operation.expedited) {
89 Math.min(existingOperation.earliestRunTime, operation.earliestRunTime);
95 if (operation.expedited)
    [all...]
  /system/core/adb/
backup_service.c 54 char* operation; local
59 operation = "backup";
62 operation = "restore";
66 D("backup_service(%s, %s)\n", operation, args);
83 D("can't fork for %s\n", operation);
84 fprintf(stderr, "unable to fork for %s\n", operation);
98 // fixed args: [0] is 'bu', [1] is the port number, [2] is the 'operation' string
113 bu_args[argc++] = operation;
  /external/openssl/crypto/evp/
pmeth_fn.c 91 ctx->operation = EVP_PKEY_OP_SIGN;
96 ctx->operation = EVP_PKEY_OP_UNDEFINED;
110 if (ctx->operation != EVP_PKEY_OP_SIGN)
128 ctx->operation = EVP_PKEY_OP_VERIFY;
133 ctx->operation = EVP_PKEY_OP_UNDEFINED;
147 if (ctx->operation != EVP_PKEY_OP_VERIFY)
164 ctx->operation = EVP_PKEY_OP_VERIFYRECOVER;
169 ctx->operation = EVP_PKEY_OP_UNDEFINED;
183 if (ctx->operation != EVP_PKEY_OP_VERIFYRECOVER)
201 ctx->operation = EVP_PKEY_OP_ENCRYPT
    [all...]
  /external/iptables/extensions/
libipt_ecn.c 46 einfo->operation |= IPT_ECN_OP_MATCH_CWR;
51 einfo->operation |= IPT_ECN_OP_MATCH_ECE;
58 einfo->operation |= IPT_ECN_OP_MATCH_IP;
79 if (einfo->operation & IPT_ECN_OP_MATCH_ECE) {
84 if (einfo->operation & IPT_ECN_OP_MATCH_CWR) {
89 if (einfo->operation & IPT_ECN_OP_MATCH_IP) {
101 if (einfo->operation & IPT_ECN_OP_MATCH_ECE) {
107 if (einfo->operation & IPT_ECN_OP_MATCH_CWR) {
113 if (einfo->operation & IPT_ECN_OP_MATCH_IP) {
libipt_ECN.c 56 einfo->operation = IPT_ECN_OP_SET_ECE | IPT_ECN_OP_SET_CWR;
61 einfo->operation |= IPT_ECN_OP_SET_CWR;
65 einfo->operation |= IPT_ECN_OP_SET_ECE;
69 einfo->operation |= IPT_ECN_OP_SET_IP;
79 "ECN target: An operation is required");
90 if (einfo->operation == (IPT_ECN_OP_SET_ECE|IPT_ECN_OP_SET_CWR)
95 if (einfo->operation & IPT_ECN_OP_SET_ECE)
98 if (einfo->operation & IPT_ECN_OP_SET_CWR)
101 if (einfo->operation & IPT_ECN_OP_SET_IP)
111 if (einfo->operation == (IPT_ECN_OP_SET_ECE|IPT_ECN_OP_SET_CWR
    [all...]
  /external/openssl/crypto/dh/
dh_asn1.c 67 static int dh_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) {
  /external/e2fsprogs/intl/
plural-exp.c 38 .operation = var,
43 .operation = num,
52 .operation = not_equal,
80 plvar.operation = var;
83 plone.operation = num;
87 GERMANIC_PLURAL.operation = not_equal;
  /external/chromium/chrome/browser/ui/cocoa/tab_contents/
web_contents_drag_source.h 53 // -draggedImage:endedAt:operation:.
55 operation:(NSDragOperation)operation;

Completed in 2908 milliseconds

1 2 3 4 5 6 7 8 91011>>