Home
last modified time | relevance | path

Searched full:asynchronous (Results 1 – 25 of 7147) sorted by relevance

12345678910>>...286

/aosp_15_r20/hardware/interfaces/neuralnetworks/1.3/vts/functional/include/1.3/
H A DCallbacks.h33 * synchronize between different threads. An asynchronous task is launched
35 * generated by the asynchronous task, the client thread can wait for the result
37 * concurrently, even on the same callback object. When the asynchronous task
39 * asynchronous task has failed to launch, the function that tried to launch the
40 * asynchronous task must immediately call "notify*". This "notify*" call
55 * or get* on a PreparedModelCallback object and the corresponding asynchronous
57 * until the asynchronous task has called notify*.
69 * status of the asynchronous model preparation along with the prepared
83 * - NONE if the asynchronous preparation was successful
95 * return status of the asynchronous model preparation along with the
[all …]
/aosp_15_r20/hardware/interfaces/neuralnetworks/1.2/vts/functional/include/1.2/
H A DCallbacks.h31 * synchronize between different threads. An asynchronous task is launched
33 * generated by the asynchronous task, the client thread can wait for the result
35 * concurrently, even on the same callback object. When the asynchronous task
37 * asynchronous task has failed to launch, the function that tried to launch the
38 * asynchronous task must immediately call "notify*". This "notify*" call
53 * or get* on a PreparedModelCallback object and the corresponding asynchronous
55 * until the asynchronous task has either called notify or notify_1_2.
67 * status of the asynchronous model preparation along with the prepared
81 * - NONE if the asynchronous preparation was successful
93 * return status of the asynchronous model preparation along with the
[all …]
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/asio/include/boost/asio/
Dbasic_deadline_timer.hpp42 * blocking or asynchronous wait for a timer to expire.
68 * Performing an asynchronous wait:
84 * // Start an asynchronous wait.
90 * Changing the expiry time of a timer while there are pending asynchronous
100 * // We managed to cancel the timer. Start new asynchronous wait.
119 * cancels any pending asynchronous waits, and returns the number of
120 * asynchronous waits that were cancelled. If it returns 0 then you were too
160 * dispatch handlers for any asynchronous operations performed on the timer.
174 * the timer will use, by default, to dispatch handlers for any asynchronous
191 * dispatch handlers for any asynchronous operations performed on the timer.
[all …]
Dbasic_waitable_timer.hpp53 * blocking or asynchronous wait for a timer to expire.
83 * Performing an asynchronous wait (C++11):
99 * // Start an asynchronous wait.
105 * Changing the expiry time of a timer while there are pending asynchronous
115 * // We managed to cancel the timer. Start new asynchronous wait.
134 * cancels any pending asynchronous waits, and returns the number of
135 * asynchronous waits that were cancelled. If it returns 0 then you were too
176 * dispatch handlers for any asynchronous operations performed on the timer.
190 * the timer will use, by default, to dispatch handlers for any asynchronous
207 * dispatch handlers for any asynchronous operations performed on the timer.
[all …]
/aosp_15_r20/external/tpm2-tss/doc/
H A Ddoxygen.dox5 Additionally there are asynchronous versions of each command.
7 Both the synchronous and asynchronous API are exposed through a single library: libtss2-esys.
119 * either as a one-call or in an asynchronous manner.
127 * either as a one-call or in an asynchronous manner.
135 * either as a one-call or in an asynchronous manner.
143 * either as a one-call or in an asynchronous manner.
151 * either as a one-call or in an asynchronous manner.
159 * either as a one-call or in an asynchronous manner.
165 * either as a one-call or in an asynchronous manner.
175 * either as a one-call or in an asynchronous manner.
[all …]
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/asio/doc/overview/
Dasync.qbk10 The Boost.Asio library offers side-by-side support for synchronous and asynchronous
11 operations. The asynchronous support is based on the Proactor design pattern
25 [mdash] Asynchronous Operation
27 [:Defines an operation that is executed asynchronously, such as an asynchronous
30 [mdash] Asynchronous Operation Processor
32 [:Executes asynchronous operations and queues events on a completion event
34 services like `reactive_socket_service` are asynchronous operation processors.]
38 [:Buffers completion events until they are dequeued by an asynchronous event
43 [:Processes the result of an asynchronous operation. These are function
46 [mdash] Asynchronous Event Demultiplexer
[all …]
/aosp_15_r20/hardware/interfaces/neuralnetworks/1.0/vts/functional/include/1.0/
H A DCallbacks.h29 * synchronize between different threads. An asynchronous task is launched
31 * generated by the asynchronous task, the client thread can wait for the result
33 * concurrently, even on the same callback object. When the asynchronous task
35 * asynchronous task has failed to launch, the function that tried to launch the
36 * asynchronous task must immediately call "notify". This "notify" call
51 * or get* on a PreparedModelCallback object and the corresponding asynchronous
53 * until the asynchronous task has called notify.
65 * status of the asynchronous model preparation along with the prepared
78 * - NONE if the asynchronous preparation was successful
94 * Retrieves the error status returned from the asynchronous task launched
[all …]
/aosp_15_r20/hardware/interfaces/wifi/1.0/
H A DIWifiNanIfaceEventCallback.hal20 * NAN Response and Asynchronous Event Callbacks.
27 * Notify callbacks are asynchronous callbacks - but in response to |IWifiNanIface| method calls.
32 * Asynchronous callback invoked in response to a capability request
44 * Asynchronous callback invoked in response to an enable request |IWifiNanIface.enableRequest|.
58 * Asynchronous callback invoked in response to a config request |IWifiNanIface.configRequest|.
70 * Asynchronous callback invoked in response to a disable request |IWifiNanIface.disableRequest|.
80 * Asynchronous callback invoked to notify the status of the start publish request
95 * Asynchronous callback invoked in response to a stop publish request
107 * Asynchronous callback invoked to notify the status of the start subscribe request
122 * Asynchronous callback invoked in response to a stop subscribe request
[all …]
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/asio/doc/requirements/
Dasynchronous_operations.qbk8 [section:asynchronous_operations Requirements on asynchronous operations]
16 [heading General asynchronous operation concepts]
19 asynchronous operation. A ['completion handler] is a function object that will
20 be invoked, at most once, with the result of the asynchronous operation.
22 The lifecycle of an asynchronous operation is comprised of the following events
25 [mdash] Event 1: The asynchronous operation is started by a call to the
28 [mdash] Phase 1: The asynchronous operation is now ['outstanding].
30 [mdash] Event 2: The externally observable side effects of the asynchronous
34 [mdash] Phase 2: The asynchronous operation is now ['completed].
37 asynchronous operation.
[all …]
/aosp_15_r20/out/soong/.intermediates/hardware/interfaces/wifi/aidl/android.hardware.wifi-V3-java-source/gen/android/hardware/wifi/
DIWifiNanIface.java43 * Asynchronous response is with |IWifiNanIfaceEventCallback.notifyConfigResponse|.
59 * Asynchronous response is with |IWifiNanIfaceEventCallback.notifyCreateDataInterfaceResponse|.
72 * Asynchronous response is with |IWifiNanIfaceEventCallback.notifyDeleteDataInterfaceResponse|.
85 * Asynchronous response is with |IWifiNanIfaceEventCallback.notifyDisableResponse|.
100 * Asynchronous response is with |IWifiNanIfaceEventCallback.notifyEnableResponse|.
115 * Get NAN capabilities. Asynchronous response is with
128 * Asynchronous response is with |IWifiNanIfaceEventCallback.notifyInitiateDataPathResponse|.
156 * Asynchronous response is with
171 * Asynchronous response is with |IWifiNanIfaceEventCallback.notifyStartPublishResponse|.
185 * Asynchronous response is with |IWifiNanIfaceEventCallback.notifyStartSubscribeResponse|.
[all …]
/aosp_15_r20/libcore/ojluni/src/main/java/java/nio/channels/
H A DAsynchronousChannelGroup.java35 * A grouping of asynchronous channels for the purpose of resource sharing.
37 * <p> An asynchronous channel group encapsulates the mechanics required to
39 * asynchronous channels} that are bound to the group. A group has an associated
42 * asynchronous operations performed on channels in the group. In addition to
44 * to support the execution of asynchronous I/O operations.
46 * <p> An asynchronous channel group is created by invoking the {@link
55 * automatically. Asynchronous channels that do not specify a group at
118 * the group <em>terminates</em> when all asynchronous channels that are bound to
145 * The asynchronous channel provider for this group
161 * Creates an asynchronous channel group with a fixed thread pool.
[all …]
/aosp_15_r20/out/soong/.intermediates/libcore/core_oj_api_files/gen/7/libcore/ojluni/src/main/java/java/nio/channels/
DAsynchronousChannelGroup.java35 * A grouping of asynchronous channels for the purpose of resource sharing.
37 * <p> An asynchronous channel group encapsulates the mechanics required to
39 * asynchronous channels} that are bound to the group. A group has an associated
42 * asynchronous operations performed on channels in the group. In addition to
44 * to support the execution of asynchronous I/O operations.
46 * <p> An asynchronous channel group is created by invoking the {@link
55 * automatically. Asynchronous channels that do not specify a group at
118 * the group <em>terminates</em> when all asynchronous channels that are bound to
145 * The asynchronous channel provider for this group
161 * Creates an asynchronous channel group with a fixed thread pool.
[all …]
/aosp_15_r20/out/soong/.intermediates/libcore/core_oj_api_files/gen/gensrcs/libcore/ojluni/src/main/java/java/nio/channels/
DAsynchronousChannelGroup.java35 * A grouping of asynchronous channels for the purpose of resource sharing.
37 * <p> An asynchronous channel group encapsulates the mechanics required to
39 * asynchronous channels} that are bound to the group. A group has an associated
42 * asynchronous operations performed on channels in the group. In addition to
44 * to support the execution of asynchronous I/O operations.
46 * <p> An asynchronous channel group is created by invoking the {@link
55 * automatically. Asynchronous channels that do not specify a group at
118 * the group <em>terminates</em> when all asynchronous channels that are bound to
145 * The asynchronous channel provider for this group
161 * Creates an asynchronous channel group with a fixed thread pool.
[all …]
/aosp_15_r20/external/cronet/net/base/
H A Dfile_stream.h32 // Uses |task_runner| for asynchronous operations.
38 // Uses |task_runner| for asynchronous operations.
57 // automatically closed when FileStream is destructed in an asynchronous
66 // It is invalid to request any asynchronous operations while there is an
67 // in-flight asynchronous operation.
77 // returned. It is invalid to request any asynchronous operations while there
78 // is an in-flight asynchronous operation.
94 // asynchronous read in progress. That will cancel the read and allow
97 // It is invalid to request any asynchronous operations while there is an
98 // in-flight asynchronous operation.
[all …]
/aosp_15_r20/packages/modules/NeuralNetworks/runtime/
DExecutionCallback.h40 * corresponding asynchronous task has not finished the execution, the calling
41 * thread will block until the asynchronous task has called one of the notify*
56 * asynchronous execution that held this callback and enables all prior and
63 * @param status Error status returned from launching the asynchronous task
64 * (if the launch fails) or from the asynchronous task itself (if the
66 * - NONE if the asynchronous execution was successful
68 * - GENERAL_FAILURE if the asynchronous task resulted in an unspecified
95 * Retrieves the error status returned from the asynchronous task launched
99 * asynchronous task notifies the object.
101 * @return status Error status returned from launching the asynchronous task
[all …]
/aosp_15_r20/packages/modules/NeuralNetworks/runtime/test/
DPreparedModelCallback.h33 * synchronize between different threads. An asynchronous task is launched
35 * generated by the asynchronous task, the client thread can wait for the result
37 * concurrently, even on the same callback object. When the asynchronous task
39 * asynchronous task has failed to launch, the function that tried to launch the
40 * asynchronous task must immediately call "notify*". This "notify*" call
55 * or get* on a PreparedModelCallback object and the corresponding asynchronous
57 * until the asynchronous task has called notify*.
69 * status of the asynchronous model preparation along with the prepared
83 * - NONE if the asynchronous preparation was successful
95 * return status of the asynchronous model preparation along with the
[all …]
/aosp_15_r20/prebuilts/vndk/v30/x86/include/generated-headers/hardware/interfaces/wifi/1.2/[email protected]_genc++_headers/gen/android/hardware/wifi/1.2/
DIWifiNanIfaceEventCallback.h21 * NAN Response and Asynchronous Event Callbacks.
43 … * Notify callbacks are asynchronous callbacks - but in response to |IWifiNanIface| method calls.
47 * Asynchronous callback invoked in response to a capability request
58 * Asynchronous callback invoked in response to an enable request |IWifiNanIface.enableRequest|.
72 * Asynchronous callback invoked in response to a config request |IWifiNanIface.configRequest|.
84 … * Asynchronous callback invoked in response to a disable request |IWifiNanIface.disableRequest|.
94 * Asynchronous callback invoked to notify the status of the start publish request
109 * Asynchronous callback invoked in response to a stop publish request
121 * Asynchronous callback invoked to notify the status of the start subscribe request
136 * Asynchronous callback invoked in response to a stop subscribe request
[all …]
/aosp_15_r20/prebuilts/vndk/v30/arm64/include/generated-headers/hardware/interfaces/wifi/1.2/[email protected]_genc++_headers/gen/android/hardware/wifi/1.2/
DIWifiNanIfaceEventCallback.h21 * NAN Response and Asynchronous Event Callbacks.
43 … * Notify callbacks are asynchronous callbacks - but in response to |IWifiNanIface| method calls.
47 * Asynchronous callback invoked in response to a capability request
58 * Asynchronous callback invoked in response to an enable request |IWifiNanIface.enableRequest|.
72 * Asynchronous callback invoked in response to a config request |IWifiNanIface.configRequest|.
84 … * Asynchronous callback invoked in response to a disable request |IWifiNanIface.disableRequest|.
94 * Asynchronous callback invoked to notify the status of the start publish request
109 * Asynchronous callback invoked in response to a stop publish request
121 * Asynchronous callback invoked to notify the status of the start subscribe request
136 * Asynchronous callback invoked in response to a stop subscribe request
[all …]
/aosp_15_r20/prebuilts/vndk/v30/x86_64/include/generated-headers/hardware/interfaces/wifi/1.2/[email protected]_genc++_headers/gen/android/hardware/wifi/1.2/
DIWifiNanIfaceEventCallback.h21 * NAN Response and Asynchronous Event Callbacks.
43 … * Notify callbacks are asynchronous callbacks - but in response to |IWifiNanIface| method calls.
47 * Asynchronous callback invoked in response to a capability request
58 * Asynchronous callback invoked in response to an enable request |IWifiNanIface.enableRequest|.
72 * Asynchronous callback invoked in response to a config request |IWifiNanIface.configRequest|.
84 … * Asynchronous callback invoked in response to a disable request |IWifiNanIface.disableRequest|.
94 * Asynchronous callback invoked to notify the status of the start publish request
109 * Asynchronous callback invoked in response to a stop publish request
121 * Asynchronous callback invoked to notify the status of the start subscribe request
136 * Asynchronous callback invoked in response to a stop subscribe request
[all …]
/aosp_15_r20/prebuilts/vndk/v30/arm/include/generated-headers/hardware/interfaces/wifi/1.2/[email protected]_genc++_headers/gen/android/hardware/wifi/1.2/
DIWifiNanIfaceEventCallback.h21 * NAN Response and Asynchronous Event Callbacks.
43 … * Notify callbacks are asynchronous callbacks - but in response to |IWifiNanIface| method calls.
47 * Asynchronous callback invoked in response to a capability request
58 * Asynchronous callback invoked in response to an enable request |IWifiNanIface.enableRequest|.
72 * Asynchronous callback invoked in response to a config request |IWifiNanIface.configRequest|.
84 … * Asynchronous callback invoked in response to a disable request |IWifiNanIface.disableRequest|.
94 * Asynchronous callback invoked to notify the status of the start publish request
109 * Asynchronous callback invoked in response to a stop publish request
121 * Asynchronous callback invoked to notify the status of the start subscribe request
136 * Asynchronous callback invoked in response to a stop subscribe request
[all …]
/aosp_15_r20/hardware/interfaces/wifi/aidl/android/hardware/wifi/
H A DIWifiNanIface.aidl63 * Asynchronous response is with |IWifiNanIfaceEventCallback.notifyConfigResponse|.
79 * Asynchronous response is with |IWifiNanIfaceEventCallback.notifyCreateDataInterfaceResponse|.
91 * Asynchronous response is with |IWifiNanIfaceEventCallback.notifyDeleteDataInterfaceResponse|.
103 * Asynchronous response is with |IWifiNanIfaceEventCallback.notifyDisableResponse|.
117 * Asynchronous response is with |IWifiNanIfaceEventCallback.notifyEnableResponse|.
132 * Get NAN capabilities. Asynchronous response is with
144 * Asynchronous response is with |IWifiNanIfaceEventCallback.notifyInitiateDataPathResponse|.
170 * Asynchronous response is with
185 * Asynchronous response is with |IWifiNanIfaceEventCallback.notifyStartPublishResponse|.
198 * Asynchronous response is with |IWifiNanIfaceEventCallback.notifyStartSubscribeResponse|.
[all …]
/aosp_15_r20/prebuilts/vndk/v30/x86/include/generated-headers/hardware/interfaces/wifi/1.0/[email protected]_genc++_headers/gen/android/hardware/wifi/1.0/
DIWifiNanIfaceEventCallback.h21 * NAN Response and Asynchronous Event Callbacks.
43 … * Notify callbacks are asynchronous callbacks - but in response to |IWifiNanIface| method calls.
47 * Asynchronous callback invoked in response to a capability request
58 * Asynchronous callback invoked in response to an enable request |IWifiNanIface.enableRequest|.
72 * Asynchronous callback invoked in response to a config request |IWifiNanIface.configRequest|.
84 … * Asynchronous callback invoked in response to a disable request |IWifiNanIface.disableRequest|.
94 * Asynchronous callback invoked to notify the status of the start publish request
109 * Asynchronous callback invoked in response to a stop publish request
121 * Asynchronous callback invoked to notify the status of the start subscribe request
136 * Asynchronous callback invoked in response to a stop subscribe request
[all …]
/aosp_15_r20/prebuilts/vndk/v30/x86_64/include/generated-headers/hardware/interfaces/wifi/1.0/[email protected]_genc++_headers/gen/android/hardware/wifi/1.0/
DIWifiNanIfaceEventCallback.h21 * NAN Response and Asynchronous Event Callbacks.
43 … * Notify callbacks are asynchronous callbacks - but in response to |IWifiNanIface| method calls.
47 * Asynchronous callback invoked in response to a capability request
58 * Asynchronous callback invoked in response to an enable request |IWifiNanIface.enableRequest|.
72 * Asynchronous callback invoked in response to a config request |IWifiNanIface.configRequest|.
84 … * Asynchronous callback invoked in response to a disable request |IWifiNanIface.disableRequest|.
94 * Asynchronous callback invoked to notify the status of the start publish request
109 * Asynchronous callback invoked in response to a stop publish request
121 * Asynchronous callback invoked to notify the status of the start subscribe request
136 * Asynchronous callback invoked in response to a stop subscribe request
[all …]
/aosp_15_r20/prebuilts/vndk/v30/arm/include/generated-headers/hardware/interfaces/wifi/1.0/[email protected]_genc++_headers/gen/android/hardware/wifi/1.0/
DIWifiNanIfaceEventCallback.h21 * NAN Response and Asynchronous Event Callbacks.
43 … * Notify callbacks are asynchronous callbacks - but in response to |IWifiNanIface| method calls.
47 * Asynchronous callback invoked in response to a capability request
58 * Asynchronous callback invoked in response to an enable request |IWifiNanIface.enableRequest|.
72 * Asynchronous callback invoked in response to a config request |IWifiNanIface.configRequest|.
84 … * Asynchronous callback invoked in response to a disable request |IWifiNanIface.disableRequest|.
94 * Asynchronous callback invoked to notify the status of the start publish request
109 * Asynchronous callback invoked in response to a stop publish request
121 * Asynchronous callback invoked to notify the status of the start subscribe request
136 * Asynchronous callback invoked in response to a stop subscribe request
[all …]
/aosp_15_r20/prebuilts/vndk/v30/arm64/include/generated-headers/hardware/interfaces/wifi/1.0/[email protected]_genc++_headers/gen/android/hardware/wifi/1.0/
DIWifiNanIfaceEventCallback.h21 * NAN Response and Asynchronous Event Callbacks.
43 … * Notify callbacks are asynchronous callbacks - but in response to |IWifiNanIface| method calls.
47 * Asynchronous callback invoked in response to a capability request
58 * Asynchronous callback invoked in response to an enable request |IWifiNanIface.enableRequest|.
72 * Asynchronous callback invoked in response to a config request |IWifiNanIface.configRequest|.
84 … * Asynchronous callback invoked in response to a disable request |IWifiNanIface.disableRequest|.
94 * Asynchronous callback invoked to notify the status of the start publish request
109 * Asynchronous callback invoked in response to a stop publish request
121 * Asynchronous callback invoked to notify the status of the start subscribe request
136 * Asynchronous callback invoked in response to a stop subscribe request
[all …]

12345678910>>...286