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

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/WebKit/Source/core/page/
DragSession.h 34 DragOperation operation; member in struct:blink::DragSession
39 : operation(DragOperationNone)
  /bionic/libc/kernel/uapi/linux/netfilter/
xt_CHECKSUM.h 25 __u8 operation; member in struct:xt_CHECKSUM_info
  /development/ndk/platforms/android-L/include/linux/netfilter/
xt_CHECKSUM.h 25 __u8 operation; member in struct:xt_CHECKSUM_info
  /external/chromium_org/net/disk_cache/blockfile/
in_flight_io.cc 66 BackgroundIO* operation = it->get(); local
67 operation->Cancel();
68 DCHECK(io_list_.find(operation) != io_list_.end());
69 io_list_.erase(make_scoped_refptr(operation));
74 void InFlightIO::OnIOComplete(BackgroundIO* operation) {
83 FROM_HERE, base::Bind(&BackgroundIO::OnIOSignalled, operation));
84 operation->io_completed()->Signal();
88 void InFlightIO::InvokeCallback(BackgroundIO* operation, bool cancel_task) {
92 operation->io_completed()->Wait();
97 operation->Cancel()
    [all...]
in_flight_backend_io.cc 274 NOTREACHED() << "Invalid Operation";
317 NOTREACHED() << "Invalid Operation";
337 scoped_refptr<BackendIO> operation(new BackendIO(this, backend_, callback));
338 operation->Init();
339 PostOperation(operation.get());
344 scoped_refptr<BackendIO> operation(new BackendIO(this, backend_, callback));
345 operation->OpenEntry(key, entry);
346 PostOperation(operation.get());
351 scoped_refptr<BackendIO> operation(new BackendIO(this, backend_, callback));
352 operation->CreateEntry(key, entry)
    [all...]
in_flight_io.h 22 // This class represents a single asynchronous IO operation while it is being
26 // Other than the actual parameters for the IO operation (including the
30 // operation.
33 // This method signals the controller that this operation is finished, in the
40 // operation to finish it doesn't have to wait for the final task to be
42 // Note that this method is not intended to cancel the actual IO operation or
55 // Notifies the controller about the end of the operation, from the background
59 int result_; // Final operation result.
64 // An event to signal when the operation completes.
73 // of this class is meant to be used to start an asynchronous operation (usin
    [all...]
  /external/iptables/include/linux/netfilter/
xt_CHECKSUM.h 17 __u8 operation; /* bitset of operations */ member in struct:xt_CHECKSUM_info
  /external/kernel-headers/original/uapi/linux/netfilter/
xt_CHECKSUM.h 17 __u8 operation; /* bitset of operations */ member in struct:xt_CHECKSUM_info
  /external/chromium_org/third_party/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...]
  /cts/tests/tests/hardware/src/android/hardware/cts/helpers/sensoroperations/
SequentialSensorOperation.java 38 for (SensorOperation operation : operations) {
39 if (operation == null) {
42 mOperations.add(operation);
48 * in one operation, it is thrown and all subsequent operations will not run.
54 SensorOperation operation = mOperations.get(i); local
56 operation.execute(currentNode);
58 String msg = String.format("Operation %d failed: \"%s\"", i, e.getMessage());
62 addSensorStats(STATS_TAG, i, operation.getStats());
72 SequentialSensorOperation operation = new SequentialSensorOperation(); local
74 operation.add(subOperation.clone())
    [all...]
RepeatingSensorOperation.java 36 * @param operation the {@link SensorOperation} to run.
37 * @param iterations the number of iterations to run the operation for.
39 public RepeatingSensorOperation(SensorOperation operation, int iterations) {
40 if (operation == null) {
43 mOperation = operation;
55 SensorOperation operation = mOperation.clone(); local
57 operation.execute(new TestNode(currentNode, i));
63 addSensorStats(STATS_TAG, i, operation.getStats());
WakeLockOperation.java 38 * @param operation the child {@link SensorOperation} to perform after the delay
42 public WakeLockOperation(SensorOperation operation, Context context, int wakeLockFlags) {
43 super(operation.getStats());
44 mOperation = operation;
52 * @param operation the child {@link SensorOperation} to perform after the delay
55 public WakeLockOperation(SensorOperation operation, Context context) {
56 this(operation, context, PowerManager.PARTIAL_WAKE_LOCK);
  /external/chromium_org/third_party/WebKit/Source/core/animation/animatable/
AnimatableClipPathOperation.h 42 static PassRefPtrWillBeRawPtr<AnimatableClipPathOperation> create(ClipPathOperation* operation)
44 return adoptRefWillBeNoop(new AnimatableClipPathOperation(operation));
55 AnimatableClipPathOperation(ClipPathOperation* operation)
56 : m_operation(operation)
  /external/chromium_org/third_party/WebKit/Source/core/css/
CSSTransformValue.cpp 59 static inline String transformValueToCssString(CSSTransformValue::TransformOperationType operation, const String& value)
61 if (operation != CSSTransformValue::UnknownTransformOperation) {
62 ASSERT_WITH_SECURITY_IMPLICATION(static_cast<size_t>(operation) < WTF_ARRAY_LENGTH(transformNamePrefixes));
63 return transformNamePrefixes[operation] + value + ")";
  /external/chromium_org/third_party/WebKit/Source/bindings/scripts/
v8_callback_interface.py 81 'methods': [method_context(operation)
82 for operation in callback_interface.operations],
86 def add_includes_for_operation(operation):
87 operation.idl_type.add_includes_for_type()
88 for argument in operation.arguments:
92 def method_context(operation):
93 extended_attributes = operation.extended_attributes
94 idl_type = operation.idl_type
100 add_includes_for_operation(operation)
108 'name': operation.name
    [all...]
  /external/chromium_org/ui/views/examples/
examples_window_with_content.cc 13 void ShowExamplesWindowWithContent(Operation operation,
19 ShowExamplesWindow(operation, window_context, extra_examples.Pass());
examples_window_with_content.h 21 Operation operation,
  /external/chromium_org/third_party/boringssl/src/crypto/dh/
dh_asn1.c 64 static int dh_cb(int operation, ASN1_VALUE **pval, const ASN1_ITEM *it,
66 if (operation == ASN1_OP_NEW_PRE) {
72 } else if (operation == ASN1_OP_FREE_PRE) {
  /external/chromium_org/third_party/WebKit/Source/core/editing/
TextInsertionBaseCommand.h 52 void forEachLineInString(const String& string, const LineOperation& operation)
57 operation(offset, newline - offset, false);
61 operation(0, string.length(), true);
65 operation(offset, length - offset, true);
  /external/chromium_org/storage/browser/fileapi/
file_system_operation_runner.cc 47 FileSystemOperation* operation = local
51 OperationHandle handle = BeginOperation(operation, scope.AsWeakPtr());
52 if (!operation) {
57 operation->CreateFile(
70 FileSystemOperation* operation = local
73 OperationHandle handle = BeginOperation(operation, scope.AsWeakPtr());
74 if (!operation) {
79 operation->CreateDirectory(
93 FileSystemOperation* operation = local
96 OperationHandle handle = BeginOperation(operation, scope.AsWeakPtr())
120 FileSystemOperation* operation = local
141 FileSystemOperation* operation = local
161 FileSystemOperation* operation = local
181 FileSystemOperation* operation = local
201 FileSystemOperation* operation = local
222 FileSystemOperation* operation = local
245 FileSystemOperation* operation = local
286 FileSystemOperation* operation = local
310 FileSystemOperation* operation = operations_.Lookup(id); local
325 FileSystemOperation* operation = local
346 FileSystemOperation* operation = local
375 FileSystemOperation* operation = local
397 FileSystemOperation* operation = local
417 FileSystemOperation* operation = local
437 FileSystemOperation* operation = local
460 FileSystemOperation* operation = local
483 FileSystemOperation* operation = local
    [all...]
  /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/chromium_org/win8/delegate_execute/
delegate_execute.cc 94 int RelaunchChrome(const DelegateExecuteOperation& operation) {
96 operation.mutex().c_str(), operation.relaunch_flags().c_str());
97 ScopedHandle mutex(OpenMutexW(SYNCHRONIZE, FALSE, operation.mutex().c_str()));
110 DWORD pid = operation.GetParentPid();
129 base::string16 relaunch_flags(operation.relaunch_flags());
133 sei.lpFile = operation.shortcut().value().c_str();
162 sei.lpFile = (launch_ash || operation.shortcut().empty()) ?
164 operation.shortcut().value().c_str();
186 DelegateExecuteOperation operation; local
    [all...]
  /external/iptables/extensions/
libxt_ecn.c 47 einfo->operation |= XT_ECN_OP_MATCH_CWR;
52 einfo->operation |= XT_ECN_OP_MATCH_ECE;
59 einfo->operation |= XT_ECN_OP_MATCH_IP;
80 if (einfo->operation & XT_ECN_OP_MATCH_ECE) {
85 if (einfo->operation & XT_ECN_OP_MATCH_CWR) {
90 if (einfo->operation & XT_ECN_OP_MATCH_IP) {
102 if (einfo->operation & XT_ECN_OP_MATCH_ECE) {
108 if (einfo->operation & XT_ECN_OP_MATCH_CWR) {
114 if (einfo->operation & XT_ECN_OP_MATCH_IP) {
  /external/chromium_org/chrome/browser/extensions/api/image_writer_private/
write_from_url_operation_unittest.cc 29 // This class gives us a generic Operation with the ability to set or inspect
98 scoped_refptr<OperationForTest> operation(
105 operation->Start();
106 return operation;
116 scoped_refptr<OperationForTest> operation = local
119 operation->GetDownloadTarget(base::Bind(&base::DoNothing));
122 operation->GetImagePath().BaseName().value());
124 operation->Cancel();
128 scoped_refptr<OperationForTest> operation = local
131 operation->GetDownloadTarget(base::Bind(&base::DoNothing))
146 scoped_refptr<OperationForTest> operation = local
188 scoped_refptr<OperationForTest> operation = local
    [all...]

Completed in 3726 milliseconds

1 2 3 4 5 6 7 8 91011>>