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

1 2

  /development/host/windows/usb/api/
adb_io_completion.h 21 a generic wrapper around OVERLAPPED Win32 structure returned from
27 /** \brief Encapsulates encapsulates a generic wrapper around OVERLAPPED Win32
47 used to initialize OVERLAPPED structure for this object.
66 /** \brief Gets overlapped I/O result
68 @param[out] ovl_data Buffer for the copy of this object's OVERLAPPED
101 /// Gets overlapped structure for this I/O
102 LPOVERLAPPED overlapped() { function in class:AdbIOCompletion
123 /// Overlapped structure for this I/O
124 OVERLAPPED overlapped_;
adb_legacy_io_completion.cpp 19 encapsulates a wrapper around OVERLAPPED Win32 structure returned from
53 overlapped(),
69 overlapped(),
82 CopyMemory(ovl_data, overlapped(), sizeof(OVERLAPPED));
adb_legacy_endpoint_object.cpp 86 adb_io_completion->overlapped()) :
91 adb_io_completion->overlapped());
105 adb_io_completion->overlapped());
145 // overlapped I/O we're obligated to always provide OVERLAPPED
147 OVERLAPPED overlapped; local
148 ZeroMemory(&overlapped, sizeof(overlapped));
155 ReadFile(usb_handle(), buffer, bytes_to_transfer, bytes_transferred, &overlapped) :
    [all...]
  /external/libmojo/mojo/edk/test/
test_utils_win.cc 21 OVERLAPPED overlapped = {0}; local
25 &bytes_written_dword, &overlapped)) {
27 !GetOverlappedResult(handle.handle, &overlapped, &bytes_written_dword,
41 OVERLAPPED overlapped = {0}; local
45 &bytes_read_dword, &overlapped)) {
47 !GetOverlappedResult(handle.handle, &overlapped, &bytes_read_dword,
61 OVERLAPPED overlapped = {0} local
    [all...]
  /external/compiler-rt/test/asan/TestCases/Windows/
bind_io_completion_callback.cc 36 OVERLAPPED ov;
  /external/libusb/libusb/os/
poll_windows.h 30 // Handle synchronous completion through the overlapped structure
85 HANDLE handle; // what we need to attach overlapped to the I/O op, so we can poll it
86 OVERLAPPED* overlapped; // what will report our I/O status member in struct:winfd
106 struct winfd overlapped_to_winfd(OVERLAPPED* overlapped);
poll_windows.c 27 * The way this layer works is by using OVERLAPPED with async I/O transfers, as
28 * OVERLAPPED have an associated event which is flagged for I/O completion.
32 * OVERLAPPED mode
39 * The pipe pollable synchronous I/O works using the overlapped event associated
89 // a single transfer (OVERLAPPED) when used. As it may not be part of any of the
112 || (poll_fd[_index].handle == 0) || (poll_fd[_index].overlapped == NULL) ) {
121 return (*pCancelIoEx)(poll_fd[_index].handle, poll_fd[_index].overlapped);
143 || (poll_fd[_index].handle == 0) || (poll_fd[_index].overlapped == NULL) ) {
197 static OVERLAPPED *create_overlapped(void)
199 OVERLAPPED *overlapped = (OVERLAPPED*) calloc(1, sizeof(OVERLAPPED)) local
264 OVERLAPPED* overlapped; local
324 OVERLAPPED* overlapped = NULL; local
    [all...]
  /development/host/windows/usb/winusb/
adb_winusb_io_completion.cpp 19 encapsulates a wrapper around OVERLAPPED Win32 structure returned from
62 overlapped(),
78 overlapped(),
90 CopyMemory(ovl_data, overlapped(), sizeof(OVERLAPPED));
adb_winusb_endpoint_object.cpp 133 adb_io_completion->overlapped()) :
139 adb_io_completion->overlapped());
187 // overlapped I/O we're obligated to always provide OVERLAPPED
189 OVERLAPPED overlapped;
190 ZeroMemory(&overlapped, sizeof(overlapped));
191 overlapped.hEvent = CreateEvent(NULL, TRUE, FALSE, NULL);
202 &overlapped) :
    [all...]
  /prebuilts/go/darwin-x86/src/runtime/
defs_windows.go 73 type Overlapped C.OVERLAPPED
  /prebuilts/go/linux-x86/src/runtime/
defs_windows.go 73 type Overlapped C.OVERLAPPED
  /external/libevent/
iocp-internal.h 45 Internal use only. Wraps an OVERLAPPED that we're using for libevent
47 OVERLAPPED*, it upcasts the pointer to an event_overlapped, and calls the
52 OVERLAPPED overlapped; member in struct:event_overlapped
105 @param overlapped The struct event_overlapped to initialize
111 /** Allocate and return a new evbuffer that supports overlapped IO on a given
122 /** Start reading data onto the end of an overlapped evbuffer.
131 @param ol Overlapped object with associated completion callback.
145 @param ol Overlapped object with associated completion callback.
160 /** Associate a file descriptor with an iocp, such that overlapped IO on th
    [all...]
event_iocp.c 56 handle_entry(OVERLAPPED *o, ULONG_PTR completion_key, DWORD nBytes, int ok)
59 EVUTIL_UPCAST(o, struct event_overlapped, overlapped);
74 OVERLAPPED *overlapped=NULL; local
78 &overlapped, ms);
89 if (key != NOTIFICATION_KEY && overlapped)
90 handle_entry(overlapped, key, bytes, ok);
91 else if (!overlapped)
282 r = PostQueuedCompletionStatus(port->port, n, key, &o->overlapped);
  /external/chromium-trace/catapult/common/py_utils/py_utils/
lock.py 24 _OVERLAPPED = pywintypes.OVERLAPPED()
  /external/google-breakpad/src/client/windows/crash_generation/
crash_generation_server.h 283 // Overlapped instance for async I/O on the pipe.
284 OVERLAPPED overlapped_;
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
iphlpapi.h 87 DWORD WINAPI NotifyAddrChange (PHANDLE Handle, LPOVERLAPPED overlapped);
88 DWORD WINAPI NotifyRouteChange (PHANDLE Handle, LPOVERLAPPED overlapped);
107 DWORD WINAPI EnableRouter (HANDLE *pHandle, OVERLAPPED *pOverlapped);
108 DWORD WINAPI UnenableRouter (OVERLAPPED *pOverlapped, LPDWORD lpdwEnableCount);
109 DWORD WINAPI DisableMediaSense (HANDLE *pHandle, OVERLAPPED *pOverLapped);
110 DWORD WINAPI RestoreMediaSense (OVERLAPPED *pOverlapped, LPDWORD lpdwEnableCount);
minwinbase.h 30 } OVERLAPPED, *LPOVERLAPPED;
  /external/wpa_supplicant_8/src/l2_packet/
l2_packet_ndis.c 13 * WinXP version of the code uses overlapped I/O and a single threaded design
77 OVERLAPPED rx_overlapped;
98 OVERLAPPED overlapped; local
100 OVERLAPPED *o;
108 os_memset(&overlapped, 0, sizeof(overlapped));
109 o = &overlapped;
137 driver_ndis_get_ndisuio_handle(), &overlapped,
  /external/mdnsresponder/mDNSWindows/
mDNSWin32.h 35 typedef struct Overlapped
38 OVERLAPPED data;
46 } Overlapped;
61 Overlapped overlapped; member in struct:TCPSocket_struct
80 Overlapped overlapped; member in struct:UDPSocket_struct
  /system/core/base/
file.cpp 161 OVERLAPPED overlapped; local
162 memset(&overlapped, 0, sizeof(OVERLAPPED));
163 overlapped.Offset = static_cast<DWORD>(offset);
164 overlapped.OffsetHigh = static_cast<DWORD>(offset >> 32);
166 &bytes_read, &overlapped)) {
  /external/python/cpython3/Modules/
overlapped.c 2 * Support for overlapped IO
46 OVERLAPPED overlapped; member in struct:__anon33480
176 OVERLAPPED *Overlapped = NULL;
187 &CompletionKey, &Overlapped, Milliseconds);
191 if (Overlapped == NULL) {
198 err, NumberOfBytes, CompletionKey, Overlapped);
212 OVERLAPPED *Overlapped;
    [all...]
  /external/fio/engines/
windowsaio.c 20 OVERLAPPED o;
369 OVERLAPPED *ovl;
  /external/chromium-trace/catapult/third_party/pyserial/serial/
win32.py 60 OVERLAPPED = _OVERLAPPED
313 'RTS_CONTROL_HANDSHAKE', 'OVERLAPPED',
  /external/skia/src/ports/
SkOSFile_win.cpp 136 OVERLAPPED overlapped; local
137 memset(&overlapped, 0, sizeof(overlapped));
140 overlapped.Offset = winOffset.LowPart;
141 overlapped.OffsetHigh = winOffset.HighPart;
148 if (ReadFile(fileHandle, buffer, static_cast<DWORD>(count), &bytesRead, &overlapped)) {
  /external/skqp/src/ports/
SkOSFile_win.cpp 135 OVERLAPPED overlapped; local
136 memset(&overlapped, 0, sizeof(overlapped));
139 overlapped.Offset = winOffset.LowPart;
140 overlapped.OffsetHigh = winOffset.HighPart;
147 if (ReadFile(fileHandle, buffer, static_cast<DWORD>(count), &bytesRead, &overlapped)) {

Completed in 2290 milliseconds

1 2