HomeSort by relevance Sort by last modified time
    Searched full:operation (Results 226 - 250 of 10466) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/parameter-framework/asio-1.10.6/include/asio/detail/
reactor_op_queue.hpp 54 // Add a new operation to the queue. Returns true if this is the only
55 // operation for the given descriptor, in which case the reactor's event
70 bool cancel_operations(iterator i, op_queue<operation>& ops,
93 bool cancel_operations(Descriptor descriptor, op_queue<operation>& ops,
115 bool perform_operations(iterator i, op_queue<operation>& ops)
138 bool perform_operations(Descriptor descriptor, op_queue<operation>& ops)
144 void get_all_operations(op_queue<operation>& ops)
  /frameworks/base/telephony/java/com/android/ims/
ImsConfigListener.aidl 20 * Used by IMS config client to monitor the config operation results.
25 * Notifies client the value of the get operation result on the feature config item.
37 * Notifies client the set value operation result for feature config item.
38 * Used by clients that need to be notified the set operation result.
53 * Notifies client the value of the get operation result on the video quality item.
64 * Notifies client the set value operation result for video quality item.
65 * Used by clients that need to be notified the set operation result.
  /frameworks/support/v4/java/android/support/v4/os/
CancellationSignal.java 39 * Returns true if the operation has been canceled.
41 * @return True if the operation has been canceled.
50 * Throws {@link OperationCanceledException} if the operation has been canceled.
52 * @throws OperationCanceledException if the operation has been canceled.
61 * Cancels the operation and signals the cancellation listener.
62 * If the operation has not yet started, then it will be canceled as soon as it does.
97 * while performing a long-running operation. This method is not intended to be
  /external/autotest/server/cros/
host_lock_manager.py 75 def _check_host(self, host, operation):
76 """Checks host for desired operation.
79 @param operation: a string, LOCK or UNLOCK.
80 @returns a string: host name, if desired operation can be performed on
90 if operation == self.LOCK and host_info.locked:
95 elif operation == self.UNLOCK and not host_info.locked:
142 def _host_modifier(self, hosts, operation, lock_reason=None):
146 @param operation: a string, LOCK or UNLOCK.
149 @returns a boolean, if operation succeeded on at least one host in
154 mod_host = self._check_host(host, operation)
    [all...]
  /external/icu/icu4c/source/test/intltest/
idnaref.h 31 * This function implements the ToASCII operation as defined in the IDNA draft.
32 * This operation is done on <b>single labels</b> before sending it to something that expects
46 * If FALSE the operation fails with U_UNASSIGNED_CODE_POINT_FOUND error code.
48 * If TRUE and the input does not statisfy STD3 rules, the operation
70 * This function implements the ToUnicode operation as defined in the IDNA draft.
71 * This operation is done on <b>single labels</b> before sending it to something that expects
84 * If FALSE the operation fails with U_UNASSIGNED_CODE_POINT_FOUND error code.
86 * If TRUE and the input does not statisfy STD3 rules, the operation
108 * Convenience function that implements the IDNToASCII operation as defined in the IDNA draft.
109 * This operation is done on complete domain names, e.g: "www.example.com".
    [all...]
  /frameworks/base/core/java/android/database/sqlite/
SQLiteConnection.java 57 * perform a database operation and are then returned to the pool. At any
534 * @param cancellationSignal A signal to cancel the operation in progress, or null if none.
538 * @throws OperationCanceledException if the operation was canceled.
575 * @param cancellationSignal A signal to cancel the operation in progress, or null if none.
581 * @throws OperationCanceledException if the operation was canceled.
618 * @param cancellationSignal A signal to cancel the operation in progress, or null if none.
624 * @throws OperationCanceledException if the operation was canceled.
662 * @param cancellationSignal A signal to cancel the operation in progress, or null if none.
669 * @throws OperationCanceledException if the operation was canceled.
710 * @param cancellationSignal A signal to cancel the operation in progress, or null if none
1304 Operation operation = mOperations[index]; local
1347 final Operation operation = getOperationLocked(cookie); local
1375 final Operation operation = getOperationLocked(cookie); local
1390 final Operation operation = getOperationLocked(cookie); local
1406 final Operation operation = mOperations[index]; local
1412 final Operation operation = mOperations[mIndex]; local
1426 Operation operation = mOperations[index]; local
    [all...]
  /external/parameter-framework/asio-1.10.6/include/asio/
read.hpp 43 * This operation is implemented in terms of zero or more calls to the stream's
82 * This operation is implemented in terms of zero or more calls to the stream's
122 * This operation is implemented in terms of zero or more calls to the stream's
133 * whether the read operation is complete. The signature of the function object
136 * // Result of latest read_some operation.
142 * A return value of 0 indicates that the read operation is complete. A non-zero
173 * This operation is implemented in terms of zero or more calls to the stream's
184 * whether the read operation is complete. The signature of the function object
187 * // Result of latest read_some operation.
193 * A return value of 0 indicates that the read operation is complete. A non-zer
    [all...]
basic_stream_socket.hpp 220 * @note The send operation may not transmit all of the data to the peer.
222 * is written before the blocking operation completes.
257 * @note The send operation may not transmit all of the data to the peer.
259 * is written before the blocking operation completes.
295 * @note The send operation may not transmit all of the data to the peer.
297 * is written before the blocking operation completes.
317 * @param handler The handler to be called when the send operation completes.
321 * const asio::error_code& error, // Result of operation.
324 * Regardless of whether the asynchronous operation completes immediately or
329 * @note The send operation may not transmit all of the data to the peer
    [all...]
  /system/keymaster/
android_keymaster.cpp 36 #include "operation.h"
262 UniquePtr<Operation> operation(
264 if (operation.get() == NULL)
272 operation->set_key_id(key_id);
281 response->error = operation->Begin(request.additional_params, &response->output_params);
285 operation->SetAuthorizations(key->authorizations());
286 response->error = operation_table_->Add(operation.release(), &response->op_handle);
295 Operation* operation = operation_table_->Find(request.op_handle) local
324 Operation* operation = operation_table_->Find(request.op_handle); local
    [all...]
  /external/boringssl/src/crypto/evp/
evp_ctx.c 115 ret->operation = EVP_PKEY_OP_UNDEFINED;
168 rctx->operation = pctx->operation;
212 if (ctx->operation == EVP_PKEY_OP_UNDEFINED) {
217 if (optype != -1 && !(ctx->operation & optype)) {
231 ctx->operation = EVP_PKEY_OP_SIGN;
237 ctx->operation = EVP_PKEY_OP_UNDEFINED;
250 if (ctx->operation != EVP_PKEY_OP_SIGN) {
262 ctx->operation = EVP_PKEY_OP_VERIFY;
267 ctx->operation = EVP_PKEY_OP_UNDEFINED
    [all...]
  /hardware/ti/omap3/omx/system/src/openmax_il/perf/reader/
perf_reader.c 68 U32 ulData0, ulData1, ulData2, ulData3, ulData4, ulData5, ulData6, ulData7, operation; local
127 /* get operation */
129 operation = ulData1 & PERF_LOG_Mask;
131 if (operation != PERF_LOG_Location)
155 if (operation & PERF_LOG_Buffer)
157 /* Buffer operation */
158 if (operation & PERF_LOG_Xfering) {
163 sending = operation & PERF_LOG_Sending;
188 else if (operation & PERF_LOG_Command)
193 operation & PERF_LOG_Sending
    [all...]
  /external/autotest/client/site_tests/hardware_UsbBasicFileOperations/
hardware_UsbBasicFileOperations.py 34 'basic file operation failed: %s' % e)
45 'basic file operation failed: %s' % e)
52 'basic file operation failed: %s' % e)
59 'basic file operation failed: %s' % e)
68 'basic file operation failed: %s' % e)
74 'basic file operation failed')
83 'basic file operation failed: %s' % e)
89 'basic file operation failed')
98 'basic file operation failed')
114 'basic file operation failed' % (src_md5, dst_md5)
    [all...]
  /external/gemmlowp/meta/
multi_thread_common.h 50 const F& operation; member in struct:gemmlowp::meta::internal::MetaTask
54 std::int32_t result_stride, const F& operation)
62 operation(operation) {}
69 operation.ExecuteMatrixMatrix(scratch, task_lhs, task_rhs, task_rect.m,
121 const F& operation) {
131 operation.ExecuteMatrixMatrix(scratch, lhs, rhs, m, n, k, result,
137 std::int32_t scratch_per_thread = operation.ScratchPerThread(m, n, k);
144 operation);
152 operation);
    [all...]
  /external/protobuf/java/src/main/java/com/google/protobuf/
LazyStringList.java 72 * operation).
75 * @throws UnsupportedOperationException if the <tt>add</tt> operation
82 * operation).
85 * @throws UnsupportedOperationException if the <tt>add</tt> operation
92 * specified element (optional operation).
96 * @throws UnsupportedOperationException if the <tt>set</tt> operation
105 * specified element (optional operation).
109 * @throws UnsupportedOperationException if the <tt>set</tt> operation
123 * operation is not supported by this list
134 * operation is not supported by this lis
    [all...]
  /hardware/bsp/intel/peripheral/libmraa/api/mraa/
gpio.h 114 * @return Result of operation
126 * @return Result of operation
135 * @return Result of operation
144 * @return Result of operation
153 * @return Result of operation
162 * @return Result of operation
171 * @return Result of operation
180 * @return Result of operation
189 * @return Result of operation
198 * @return Result of operation
    [all...]
pwm.hpp 83 * @return Result of operation
107 * @return Result of operation
118 * @return Result of operation
129 * @return Result of operation
140 * @return Result of operation
151 * @return Result of operation
162 * @return Result of operation
174 * @return Result of operation
189 * @return Result of operation
201 * @return Result of operation
    [all...]
  /hardware/ti/omap4-aah/security/tee_client_api/
schannel6_protocol.h 168 uint32_t nOperationID; /* an opaque Normal World identifier for the operation */
176 uint32_t nOperationID; /* an opaque Normal World identifier for the operation */
185 uint32_t nOperationID; /* an opaque Normal World identifier for the operation */
199 uint32_t nOperationID; /* an opaque Normal World identifier for the operation */
215 uint32_t nOperationID; /* an opaque Normal World identifier for the operation */
229 uint32_t nOperationID; /* an opaque Normal World identifier for the operation */
240 uint32_t nOperationID; /* an opaque Normal World identifier for the operation */
252 uint32_t nOperationID; /* an opaque Normal World identifier for the operation */
263 uint32_t nOperationID; /* an opaque Normal World identifier for the operation */
278 uint32_t nOperationID; /* an opaque Normal World identifier for the operation */
    [all...]
  /hardware/ti/omap4xxx/security/tee_client_api/
schannel6_protocol.h 168 uint32_t nOperationID; /* an opaque Normal World identifier for the operation */
176 uint32_t nOperationID; /* an opaque Normal World identifier for the operation */
185 uint32_t nOperationID; /* an opaque Normal World identifier for the operation */
199 uint32_t nOperationID; /* an opaque Normal World identifier for the operation */
215 uint32_t nOperationID; /* an opaque Normal World identifier for the operation */
229 uint32_t nOperationID; /* an opaque Normal World identifier for the operation */
240 uint32_t nOperationID; /* an opaque Normal World identifier for the operation */
252 uint32_t nOperationID; /* an opaque Normal World identifier for the operation */
263 uint32_t nOperationID; /* an opaque Normal World identifier for the operation */
278 uint32_t nOperationID; /* an opaque Normal World identifier for the operation */
    [all...]
  /libcore/ojluni/src/main/java/java/nio/channels/
ReadableByteChannel.java 35 * <p> Only one read operation upon a readable channel may be in progress at
36 * any given time. If one thread initiates a read operation upon a channel
37 * then any other thread that attempts to initiate another read operation will
38 * block until the first operation is complete. Whether or not other kinds of
39 * I/O operations may proceed concurrently with a read operation depends upon
66 * <p> A read operation might not fill the buffer, and in fact it might not
77 * already initiated a read operation upon this channel, however, then an
78 * invocation of this method will block until the first operation is
95 * while the read operation is in progress
99 * while the read operation is in progress, thereb
    [all...]
WritableByteChannel.java 35 * <p> Only one write operation upon a writable channel may be in progress at
36 * any given time. If one thread initiates a write operation upon a channel
37 * then any other thread that attempts to initiate another write operation will
38 * block until the first operation is complete. Whether or not other kinds of
39 * I/O operations may proceed concurrently with a write operation depends upon
68 * <p> Unless otherwise specified, a write operation will return only after
75 * already initiated a write operation upon this channel, however, then an
76 * invocation of this method will block until the first operation is
92 * while the write operation is in progress
96 * while the write operation is in progress, thereb
    [all...]
  /packages/apps/Nfc/nci/jni/extns/pn54x/inc/
phNxpExtns_Custom.h 114 ** Returns NFCSTATUS_SUCCESS if operation successful,
130 ** Returns NFCSTATUS_SUCCESS if operation successful,
149 ** Returns NFCSTATUS_SUCCESS if operation successful,
165 ** Returns NFCSTATUS_SUCCESS if operation successful,
180 ** Returns NFCSTATUS_SUCCESS if operation successful,
195 ** Returns NFCSTATUS_SUCCESS if operation successful,
214 ** Returns NFCSTATUS_SUCCESS if operation successful,
228 ** Returns NFCSTATUS_SUCCESS if operation successful,
242 ** Returns NFCSTATUS_SUCCESS if operation successful,
256 ** Returns NFCSTATUS_SUCCESS if operation successful
    [all...]
  /libcore/ojluni/src/main/java/java/nio/channels/spi/
AbstractInterruptibleChannel.java 47 * before and after, respectively, invoking an I/O operation that might block
56 * completed = ...; // Perform blocking I/O operation
63 * whether or not the I/O operation actually completed, that is, whether it had
65 * operation that reads bytes, for example, this argument should be
71 * invoked while another thread is blocked in a native I/O operation upon the
72 * channel then that operation will immediately return, either by throwing an
106 * complete the close operation. </p>
129 * that is blocked in an I/O operation upon this channel to return
149 * Marks the beginning of an I/O operation that might block indefinitely.
178 * Marks the end of an I/O operation that might block indefinitely
    [all...]
  /external/boringssl/src/crypto/cipher/test/
cipher_test.txt 60 Operation = ENCRYPT
68 Operation = ENCRYPT
178 Operation = ENCRYPT
185 Operation = ENCRYPT
192 Operation = ENCRYPT
199 Operation = ENCRYPT
206 Operation = ENCRYPT
213 Operation = ENCRYPT
393 Operation = ENCRYPT
400 Operation = ENCRYP
    [all...]
  /external/curl/src/
tool_parsecfg.c 55 struct OperationConfig *operation = global->first; local
207 warnf(operation->global, "%s:%d: warning: '%s' uses unquoted "
225 res = getparameter(option, param, &usedarg, global, operation);
232 if(operation->url_list && operation->url_list->url) {
234 operation->next = malloc(sizeof(struct OperationConfig));
235 if(operation->next) {
237 config_init(operation->next);
240 operation->next->easy = global->easy;
243 operation->next->global = global
    [all...]
  /frameworks/base/core/java/android/content/
AsyncQueryHandler.java 185 * Attempts to cancel operation that has not already started. Note that
186 * there is no guarantee that the operation will be canceled. They still may
190 * @param token The token representing the operation to be canceled.
198 * This method begins an asynchronous insert. When the insert operation is
202 * the insert operation.
204 * @param uri the Uri passed to the insert operation.
205 * @param initialValues the ContentValues parameter passed to the insert operation.
224 * This method begins an asynchronous update. When the update operation is
228 * the update operation.
230 * @param uri the Uri passed to the update operation
    [all...]

Completed in 1699 milliseconds

1 2 3 4 5 6 7 8 91011>>