/external/chromium/net/disk_cache/ |
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.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_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/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...] |
/external/zlib/src/contrib/delphi/ |
ZLibConst.pas | 7 sInvalidStreamOp = 'Invalid stream operation';
|
/frameworks/base/tools/preload/ |
Proc.java | 46 /** Maps thread ID to operation stack. */ 47 transient final Map<Integer, LinkedList<Operation>> stacks 48 = new HashMap<Integer, LinkedList<Operation>>(); 54 final List<Operation> operations = new ArrayList<Operation>(); 84 * Starts an operation. 86 * @param threadId thread the operation started in 87 * @param loadedClass class operation happened to 88 * @param time the operation started 91 Operation.Type type) [all...] |
Operation.java | 22 * An operation with a duration. Could represent a class load or initialization. 24 class Operation implements Serializable { 29 * Type of operation. 35 /** Process this operation occurred in. */ 38 /** Start time for this operation. */ 41 /** Index of this operation relative to its process. */ 44 /** Type of operation. */ 47 /** End time for this operation. */ 50 /** The class that this operation loaded or initialized. */ 54 final List<Operation> subops = new ArrayList<Operation>() [all...] |
/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...] |
/external/clang/test/SemaCXX/ |
null_in_arithmetic_ops.cpp | 14 a = 0 ? NULL + a : a + NULL; // expected-warning 2{{use of NULL in arithmetic operation}} 15 a = 0 ? NULL - a : a - NULL; // expected-warning 2{{use of NULL in arithmetic operation}} 16 a = 0 ? NULL / a : a / NULL; // expected-warning 2{{use of NULL in arithmetic operation}} \ 18 a = 0 ? NULL * a : a * NULL; // expected-warning 2{{use of NULL in arithmetic operation}} 19 a = 0 ? NULL >> a : a >> NULL; // expected-warning 2{{use of NULL in arithmetic operation}} 20 a = 0 ? NULL << a : a << NULL; // expected-warning 2{{use of NULL in arithmetic operation}} 21 a = 0 ? NULL % a : a % NULL; // expected-warning 2{{use of NULL in arithmetic operation}} \ 23 a = 0 ? NULL & a : a & NULL; // expected-warning 2{{use of NULL in arithmetic operation}} 24 a = 0 ? NULL | a : a | NULL; // expected-warning 2{{use of NULL in arithmetic operation}} 25 a = 0 ? NULL ^ a : a ^ NULL; // expected-warning 2{{use of NULL in arithmetic operation}} [all...] |
expressions.cpp | 38 // expected-note {{use '&' for a bitwise operation}} \ 48 // expected-note {{use '&' for a bitwise operation}} \ 52 // expected-note {{use '|' for a bitwise operation}} 55 // expected-note {{use '|' for a bitwise operation}} 57 // expected-note {{use '|' for a bitwise operation}} 59 // expected-note {{use '|' for a bitwise operation}} 61 // expected-note {{use '|' for a bitwise operation}} 63 // expected-note {{use '&' for a bitwise operation}} \ 66 // expected-note {{use '&' for a bitwise operation}} \ 69 // expected-note {{use '&' for a bitwise operation}} \ [all...] |
/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...] |
/external/eigen/doc/examples/ |
tut_matrix_resize_fixed_size.cpp | 9 m.resize(4,4); // no operation
|
/external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/ |
ContentProviderOperationTest.java | 26 ContentProviderOperation operation = builder.build(); local 27 ShadowContentProviderOperation shadowOperation = Robolectric.shadowOf(operation); 28 assertThat(operation.getUri(), equalTo(URI)); 42 ContentProviderOperation operation = builder.build(); local 44 ShadowContentProviderOperation shadowOperation = Robolectric.shadowOf(operation); 54 ContentProviderOperation operation = builder.build(); local 55 ShadowContentProviderOperation shadowOperation = Robolectric.shadowOf(operation); 56 assertThat(operation.getUri(), equalTo(URI)); 68 ContentProviderOperation operation = builder.build(); local 69 ShadowContentProviderOperation shadowOperation = Robolectric.shadowOf(operation); [all...] |
/frameworks/base/core/java/android/os/storage/ |
StorageResultCode.java | 28 * Operation succeeded. 34 * Operation failed: Internal error. 40 * Operation failed: Missing media. 46 * Operation failed: Media is blank. 52 * Operation failed: Media is corrupt. 58 * Operation failed: Storage not mounted. 64 * Operation failed: Storage is mounted. 70 * Operation failed: Storage is busy.
|
/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/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;
|
/packages/apps/Calendar/src/com/android/calendar/ |
AsyncQueryService.java | 57 * Data class which holds into info of the queued operation 59 public static class Operation { 72 * One of the EVENT_ARG_ constants in the class describing the operation 83 case Operation.EVENT_ARG_QUERY: 85 case Operation.EVENT_ARG_INSERT: 87 case Operation.EVENT_ARG_UPDATE: 89 case Operation.EVENT_ARG_DELETE: 91 case Operation.EVENT_ARG_BATCH: 101 builder.append("Operation [op="); 124 * Gets the last delayed operation. It is typically used for canceling [all...] |
/external/libnfc-nxp/src/ |
phFriNfc_LlcpTransport_Connection.h | 52 * \retval NFCSTATUS_SUCCESS Operation successful. 56 * a valid type to perform the requsted operation. 59 * \retval NFCSTATUS_FAILED Operation failed. 75 * \retval NFCSTATUS_SUCCESS Operation successful. 79 * a valid type to perform the requsted operation. 82 * \retval NFCSTATUS_FAILED Operation failed. 96 * \retval NFCSTATUS_SUCCESS Operation successful. 99 * \retval NFCSTATUS_FAILED Operation failed. 120 * \retval NFCSTATUS_SUCCESS Operation successful. 125 * \retval NFCSTATUS_FAILED Operation failed [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+")";
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/pulse/ |
operation.h | 4 /* $Id: operation.h 1426 2007-02-13 15:35:19Z ossman $ */ 35 /** An asynchronous operation object */ 44 /** Cancel the operation. Beware! This will not necessarily cancel the execution of the operation on the server side. */ 47 /** Return the current status of the operation */
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/pulse/ |
operation.h | 4 /* $Id: operation.h 1426 2007-02-13 15:35:19Z ossman $ */ 35 /** An asynchronous operation object */ 44 /** Cancel the operation. Beware! This will not necessarily cancel the execution of the operation on the server side. */ 47 /** Return the current status of the operation */
|