HomeSort by relevance Sort by last modified time
    Searched refs:operation (Results 1 - 25 of 415) 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
  /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 122 * @param operation Action to perform when the alarm goes off;
137 public void set(int type, long triggerAtTime, PendingIntent operation) {
139 mService.set(type, triggerAtTime, operation);
175 * @param operation Action to perform when the alarm goes off;
191 PendingIntent operation) {
193 mService.setRepeating(type, triggerAtTime, interval, operation);
236 * @param operation Action to perform when the alarm goes off;
257 PendingIntent operation) {
259 mService.setInexactRepeating(type, triggerAtTime, interval, operation);
269 * @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/webkit/Source/WebCore/platform/graphics/android/
QueuedOperation.h 41 virtual bool operator==(const QueuedOperation* operation) = 0;
53 virtual bool check(QueuedOperation* operation) = 0;
59 virtual bool check(QueuedOperation* operation)
61 if (operation->page() == m_page)
72 virtual bool check(QueuedOperation* operation)
74 if (operation->type() == QueuedOperation::PaintTile
75 && operation->page() == m_page)
PaintTileOperation.h 43 virtual bool operator==(const QueuedOperation* operation);
60 virtual bool check(QueuedOperation* operation)
62 if (operation->type() == QueuedOperation::PaintTile) {
63 PaintTileOperation* op = static_cast<PaintTileOperation*>(operation);
78 virtual bool check(QueuedOperation* operation)
80 if (operation->type() == QueuedOperation::PaintTile) {
81 PaintTileOperation* op = static_cast<PaintTileOperation*>(operation);
DeleteTextureOperation.h 40 virtual bool operator==(const QueuedOperation* operation)
42 if (operation->type() != type())
44 const DeleteTextureOperation* op = static_cast<const DeleteTextureOperation*>(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 70 public boolean add(SyncOperation operation) {
71 return add(operation, null /* this is not coming from the database */);
74 private boolean add(SyncOperation operation,
76 // - if an operation with the same key exists and this one should run earlier,
78 // - if an operation with the same key exists and if this one should run
80 // - if no operation exists then add the new one
81 final String operationKey = operation.key;
86 if (existingOperation.expedited == operation.expedited) {
88 Math.min(existingOperation.earliestRunTime, operation.earliestRunTime);
94 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;
  /external/openssl/crypto/asn1/
nsseq.c 65 static int nsseq_cb(int operation, ASN1_VALUE **pval, const ASN1_ITEM *it,
68 if(operation == ASN1_OP_NEW_POST) {

Completed in 349 milliseconds

1 2 3 4 5 6 7 8 91011>>