HomeSort by relevance Sort by last modified time
    Searched full:asynchronous (Results 176 - 200 of 1227) sorted by null

1 2 3 4 5 6 78 91011>>

  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/pulse/
thread-mainloop.h 42 * the asynchronous API without risking to stall the PulseAudio library.
96 * Callbacks in PulseAudio are asynchronous, so they require extra care when
223 * \subsection async_subsec Asynchronous callbacks
225 * PulseAudio also has callbacks that are completely asynchronous, meaning
231 * The callbacks that are completely asynchronous are:
context.h 34 /** \page async Asynchronous API
38 * The asynchronous API is the native interface to the PulseAudio library.
44 * The API is based around an asynchronous event loop, or main loop,
106 * pa_operation object for each asynchronous operation.
119 * procedure. Unlike most asynchronous operations, connecting does not
146 * Connection contexts for asynchronous communication with a
164 /** A callback for asynchronous meta/policy event messages. The set
  /external/parameter-framework/asio-1.10.6/include/asio/detail/
reactive_socket_service.hpp 219 // Start an asynchronous send. The data being sent must be valid for the
220 // lifetime of the asynchronous operation.
244 // Start an asynchronous wait until data can be sent without blocking.
302 // Start an asynchronous receive. The buffer for the data being received and
304 // asynchronous operation.
391 // Start an asynchronous accept. The peer and peer_endpoint objects
423 // Start an asynchronous connect.
  /external/parameter-framework/asio-1.10.6/include/asio/
read.hpp 212 * @brief Start an asynchronous operation to read a certain amount of data from
217 /// Start an asynchronous operation to read a certain amount of data from a
222 * asynchronous operation will continue until one of the following conditions is
257 * Regardless of whether the asynchronous operation completes immediately or
284 /// Start an asynchronous operation to read a certain amount of data from a
289 * asynchronous operation will continue until one of the following conditions is
332 * Regardless of whether the asynchronous operation completes immediately or
write.hpp 211 * @brief Start an asynchronous operation to write a certain amount of data to a
216 /// Start an asynchronous operation to write all of the supplied data to a
221 * asynchronous operation will continue until one of the following conditions
254 * Regardless of whether the asynchronous operation completes immediately or
275 /// Start an asynchronous operation to write a certain amount of data to a
280 * asynchronous operation will continue until one of the following conditions
327 * Regardless of whether the asynchronous operation completes immediately or
  /frameworks/base/core/java/android/content/
BroadcastReceiver.java 59 * Context.sendBroadcast}) are completely asynchronous. All receivers of the
176 * {@link #onReceive} implementation: anything that requires asynchronous
178 * function to handle the asynchronous operation, but at that point the
180 * its process before the asynchronous operation completes.
266 * asynchronous broadcast handling.
276 * asynchronous broadcast handling.
285 * asynchronous broadcast handling.
295 * asynchronous broadcast handling.
304 * asynchronous broadcast handling.
314 * asynchronous broadcast handling
    [all...]
  /external/google-breakpad/src/client/windows/crash_generation/
crash_generation_server.cc 254 // Kick-start the state machine. This will initiate an asynchronous wait
332 // try to get the result of the asynchronous connection request using
357 // try to issue an asynchronous read from the pipe. If read completes
372 // Note that the asynchronous read issued above can finish before the
374 // the asynchronous read. This is because even if the asynchronous read
440 // Issues an asynchronous WriteFile call if successful.
451 // Note that the asynchronous write issued by RespondToClient function
453 // state after issuing the asynchronous write. This is because even if
454 // the asynchronous write is done, the callback for it would not b
    [all...]
  /external/libbrillo/brillo/http/
http_transport_curl.cc 81 // File descriptor watcher to notify us of asynchronous I/O on the FD.
87 // The request data associated with an asynchronous operation on a particular
94 // as long as asynchronous operation is running.
246 LOG(INFO) << "Started asynchronous HTTP request with ID " << request_id;
476 // Instead, schedule an asynchronous task to clean up the connection.
505 // Remove pending asynchronous request data.
http_utils.h 75 // Same as above but asynchronous. On success, |success_callback| is called
92 // available for the duration of the asynchronous operation.
106 // Asynchronous version of SendRequestNoData().
126 // Asynchronous version of http::Get().
144 // Performs an asynchronous HEAD request.
179 // to be available for the duration of the asynchronous operation.
  /frameworks/wilhelm/src/
sles_allinclusive.h 183 #define INTERFACE_ADDING_1 3 ///< part 1 of asynchronous AddInterface, pending
184 #define INTERFACE_ADDING_2 4 ///< synchronous AddInterface, or part 2 of asynchronous
189 #define INTERFACE_RESUMING_1 9 ///< part 1 of asynchronous ResumeInterface, pending
190 #define INTERFACE_RESUMING_2 10 ///< synchronous ResumeInterface, or part 2 of asynchronous
191 #define INTERFACE_ADDING_1A 11 ///< part 1 of asynchronous AddInterface, aborted
192 #define INTERFACE_RESUMING_1A 12 ///< part 1 of asynchronous ResumeInterface, aborted
  /external/chromium-trace/catapult/devil/devil/utils/
parallelizer.py 102 Note that this call is asynchronous. Call pFinish on the return value to
129 """Finish any outstanding asynchronous operations.
163 Note that this call is asynchronous. Call pFinish on the return value to
  /external/mdnsresponder/mDNSShared/
dns-sd.1 57 the asynchronous nature of DNS Service Discovery does
64 explicitly terminates the call. This style of asynchronous interaction
67 asynchronous event notifications as they happen.
mDNS.1 61 the asynchronous nature of DNS Service Discovery does
68 explicitly terminates the call. This style of asynchronous interaction
71 asynchronous event notifications as they happen.
  /external/parameter-framework/upstream/tools/clientSimulator/
README.md 214 "myFirstScript" : ["test-scripts/first.sh","asynchronous"]
227 The synchronousness can be either `"synchronous"` or `"asynchronous"` and
231 * asynchronous : The script will run concurrently to the execution of the
  /frameworks/base/core/java/android/os/
Handler.java 153 * and set whether the handler should be asynchronous.
156 * one that is strictly asynchronous.
158 * Asynchronous messages represent interrupts or events that do not require global ordering
159 * with respect to synchronous messages. Asynchronous messages are not subject to
173 * and set whether the handler should be asynchronous.
176 * one that is strictly asynchronous.
178 * Asynchronous messages represent interrupts or events that do not require global ordering
179 * with respect to synchronous messages. Asynchronous messages are not subject to
211 * should be asynchronous.
214 * one that is strictly asynchronous
    [all...]
  /libcore/ojluni/src/main/java/java/nio/channels/spi/
AbstractInterruptibleChannel.java 45 * the asynchronous closing and interruption of channels. A concrete channel
153 * shown <a href="#be">above</a>, in order to implement asynchronous
182 * as shown <a href="#be">above</a>, in order to implement asynchronous
  /packages/apps/Dialer/InCallUI/src/com/android/incallui/
ContactsAsyncHelper.java 211 * Starts an asynchronous image load. After finishing the load,
219 * @param listener Callback object which will be used when the asynchronous load is done.
220 * Can be null, which means only the asynchronous load is done while there's no way to
  /packages/services/Telecomm/src/com/android/server/telecom/
ContactsAsyncHelper.java 187 * Starts an asynchronous image load. After finishing the load,
195 * @param listener Callback object which will be used when the asynchronous load is done.
196 * Can be null, which means only the asynchronous load is done while there's no way to
  /system/core/include/cutils/
trace.h 197 * Trace the beginning of an asynchronous event. Unlike ATRACE_BEGIN/ATRACE_END
198 * contexts, asynchronous events do not need to be nested. The name describes
215 * Trace the end of an asynchronous event.
  /cts/tests/tests/graphics/src/android/opengl/cts/
GLSurfaceViewTest.java 59 * asynchronous events to occur in between the pause and resume operations.
  /development/host/windows/usb/api/
adb_legacy_io_completion.cpp 20 asynchronous I/O requests issued via legacy USB API.
  /development/host/windows/usb/winusb/
adb_winusb_io_completion.cpp 20 asynchronous I/O requests issued via WinUsb API.
  /external/autotest/client/common_lib/cros/bluetooth/
bluetooth_gatt_server.py 69 This method gets called when the asynchronous loop detects that a read()
  /external/autotest/client/site_tests/kernel_FirmwareRequest/
kernel_FirmwareRequest.py 15 Test asynchronous firmware loading
  /external/autotest/client/site_tests/network_3GScanningProperty/files/
modems.py 25 A simple machine that allows the test to hook into the Scan asynchronous

Completed in 2485 milliseconds

1 2 3 4 5 6 78 91011>>