HomeSort by relevance Sort by last modified time
    Searched refs:operation (Results 1 - 25 of 572) 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 37 virtual bool operator==(const QueuedOperation* operation) = 0;
45 virtual bool check(QueuedOperation* operation) = 0;
TexturesGenerator.cpp 66 void TexturesGenerator::scheduleOperation(QueuedOperation* operation)
71 mRequestedOperations.append(operation);
72 mRequestedOperationsHash.set(operation->uniquePtr(), operation);
74 bool deferrable = operation->priority() >= gDeferPriorityCutoff;
91 QueuedOperation* operation = mRequestedOperations[i]; local
92 if (filter->check(operation)) {
94 mRequestedOperationsHash.remove(operation->uniquePtr());
95 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+")";
  /external/skia/src/utils/
SkMD5.cpp 115 static inline void operation(T operation, uint32_t& a, uint32_t b, uint32_t c, uint32_t d, function
117 a = b + rotate_left(a + operation(b, c, d) + x + t, s);
127 operation(F(), a, b, c, d, X[ 0], 7, 0xd76aa478); // 1
128 operation(F(), d, a, b, c, X[ 1], 12, 0xe8c7b756); // 2
129 operation(F(), c, d, a, b, X[ 2], 17, 0x242070db); // 3
130 operation(F(), b, c, d, a, X[ 3], 22, 0xc1bdceee); // 4
131 operation(F(), a, b, c, d, X[ 4], 7, 0xf57c0faf); // 5
132 operation(F(), d, a, b, c, X[ 5], 12, 0x4787c62a); // 6
133 operation(F(), c, d, a, b, X[ 6], 17, 0xa8304613); //
    [all...]
SkSHA1.cpp 116 static inline void operation(T operation, function
119 E += rotate_left(A, 5) + operation(B, C, D) + w + k;
151 operation(F1(), A, B, C, D, E, W[ 0], K[0]);
152 operation(F1(), E, A, B, C, D, W[ 1], K[0]);
153 operation(F1(), D, E, A, B, C, W[ 2], K[0]);
154 operation(F1(), C, D, E, A, B, W[ 3], K[0]);
155 operation(F1(), B, C, D, E, A, W[ 4], K[0]);
156 operation(F1(), A, B, C, D, E, W[ 5], K[0]);
157 operation(F1(), E, A, B, C, D, W[ 6], K[0])
    [all...]
  /packages/apps/Calendar/src/com/android/calendar/alerts/
AlarmManagerInterface.java 25 public void set(int type, long triggerAtMillis, PendingIntent operation);
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowAlarmManager.java 24 public void set(int type, long triggerAtTime, PendingIntent operation) {
25 internalSet(type, triggerAtTime, 0L, operation);
29 public void setRepeating (int type, long triggerAtTime, long interval, PendingIntent operation){
30 internalSet(type, triggerAtTime, interval, operation);
33 private void internalSet(int type, long triggerAtTime, long interval, PendingIntent operation) {
34 Intent intent = shadowOf(operation).getSavedIntent();
36 Intent scheduledIntent = shadowOf(scheduledAlarm.operation).getSavedIntent();
42 scheduledAlarms.add(new ScheduledAlarm(type, triggerAtTime, interval, operation));
83 final Intent alarmIntent = shadowOf(scheduledAlarm.operation).getSavedIntent();
98 public PendingIntent operation; field in class:ShadowAlarmManager.ScheduledAlarm
    [all...]
  /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;
  /frameworks/base/services/java/com/android/server/content/
SyncQueue.java 85 public boolean add(SyncOperation operation) {
86 return add(operation, null /* this is not coming from the database */);
89 private boolean add(SyncOperation operation,
91 // - if an operation with the same key exists and this one should run earlier,
93 // - if an operation with the same key exists and if this one should run
95 // - if no operation exists then add the new one
96 final String operationKey = operation.key;
101 if (existingOperation.expedited == operation.expedited) {
103 Math.min(existingOperation.earliestRunTime, operation.earliestRunTime);
109 if (operation.expedited)
    [all...]
  /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,
  /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) {

Completed in 1221 milliseconds

1 2 3 4 5 6 7 8 91011>>