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

1 2

  /development/host/windows/usb/winusb/
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...]
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));
  /development/host/windows/usb/api/
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...]
adb_io_completion.cpp 19 encapsulates a generic wrapper around OVERLAPPED Win32 structure
49 return HasOverlappedIoCompleted(overlapped()) ? true : false;
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_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_api.h 132 this API it is opened for asynchronous (or overlapped) I/O. And each time
397 Endpoints are always opened for overlapped I/O.
420 Endpoints are always opened for overlapped I/O.
439 Endpoints are always opened for overlapped I/O.
485 initialize OVERLAPPED structure for this I/O.
508 initialize OVERLAPPED structure for this I/O.
560 /** \brief Gets overlapped I/O result for async I/O performed on the
565 @param[out] ovl_data Buffer for the copy of this object's OVERLAPPED
581 LPOVERLAPPED overlapped,
585 /** \brief Checks if overlapped I/O has been completed.
    [all...]
adb_api.cpp 484 LPOVERLAPPED overlapped,
494 adb_object->GetOvelappedIoResult(overlapped, bytes_transferred, wait);
  /external/libevent/
event_iocp.c 55 handle_entry(OVERLAPPED *o, ULONG_PTR completion_key, DWORD nBytes, int ok)
58 EVUTIL_UPCAST(o, struct event_overlapped, overlapped);
73 OVERLAPPED *overlapped=NULL; local
77 &overlapped, ms);
88 if (key != NOTIFICATION_KEY && overlapped)
89 handle_entry(overlapped, key, bytes, ok);
90 else if (!overlapped)
281 r = PostQueuedCompletionStatus(port->port, n, key, &o->overlapped);
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...]
buffer_iocp.c 30 This module implements overlapped read and write functions for evbuffer
51 /** An evbuffer that can handle overlapped IO. */
54 /** The socket that we're doing overlapped IO on. */
71 * the evbuffer isn't overlapped. */
180 /* No buffer, or it isn't overlapped */
225 &ol->overlapped, NULL)) {
291 &ol->overlapped, NULL)) {
listener.c 449 struct event_overlapped overlapped; member in struct:accepting_socket
503 event_overlapped_init(&res->overlapped, accepted_socket_cb);
562 as->buflen/2, as->buflen/2, &pending, &as->overlapped.overlapped))
565 accepted_socket_cb(&as->overlapped, 1, 0, 1);
663 EVUTIL_UPCAST(o, struct accepting_socket, overlapped);
686 ok = WSAGetOverlappedResult(as->s, &o->overlapped,
bufferevent_async.c 402 WSAGetOverlappedResult(fd, &eo->overlapped, &bytes, FALSE, &flags);
643 &bev_async->connect_overlapped.overlapped);
  /external/deqp/execserver/
xsWin32TestProcess.cpp 133 OVERLAPPED overlapped; local
136 deMemset(&overlapped, 0, sizeof(overlapped));
137 overlapped.hEvent = ioEvent.getHandle();
145 if (!WriteFile(m_dst, &m_caseList[curPos], (DWORD)numToWrite, NULL, &overlapped))
159 if (!GetOverlappedResult(m_dst, &overlapped, &numBytesWritten, FALSE))
228 OVERLAPPED overlapped; local
230 deUint64 offset = 0; // Overlapped IO requires manual offset keeping
    [all...]
  /external/webrtc/webrtc/test/channel_transport/
udp_socket2_manager_win.h 39 WSAOVERLAPPED overlapped; member in struct:webrtc::test::PerIoContext
udp_socket2_win.cc 397 &(pIoContext->overlapped), 0);
597 &(pIoContext->overlapped),
    [all...]
  /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/lzma/CPP/Windows/
FileIO.h 73 LPVOID outBuffer, DWORD outSize, LPDWORD bytesReturned, LPOVERLAPPED overlapped = NULL) const
76 outBuffer, outSize, bytesReturned, overlapped));
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
iphlpapi.h 62 DWORD WINAPI NotifyAddrChange(PHANDLE Handle,LPOVERLAPPED overlapped);
63 DWORD WINAPI NotifyRouteChange(PHANDLE Handle,LPOVERLAPPED overlapped);
82 DWORD WINAPI EnableRouter(HANDLE *pHandle,OVERLAPPED *pOverlapped);
83 DWORD WINAPI UnenableRouter(OVERLAPPED *pOverlapped,LPDWORD lpdwEnableCount);
84 DWORD WINAPI DisableMediaSense(HANDLE *pHandle,OVERLAPPED *pOverLapped);
85 DWORD WINAPI RestoreMediaSense(OVERLAPPED *pOverlapped,LPDWORD lpdwEnableCount);
clfsw32.h 294 LPOVERLAPPED overlapped
mfapi.h 104 OVERLAPPED overlapped; member in struct:tagMFASYNCRESULT
    [all...]
  /external/libvorbis/doc/
01-introduction.tex 351 requirements, overlapped 50\% with the output of the previous frame and
493 Windowed MDCT output is overlapped and added with the right hand data
509 The overlapped portion produced from overlapping the previous and
514 overlapped portions. When overlapping a short and long window, much of
04-codec.tex 578 Windowed MDCT output is overlapped and added with the right hand data
581 \xref{vorbis:spec:window}). The overlapped portion
586 one-half block consisting of and only of the overlapped portions. When
  /external/vboot_reference/tests/
cgptlib_test.c 737 /* Test if overlapped partition tables can be detected. */
745 int overlapped; member in struct:__anon26448
808 EXPECT(cases[i].overlapped == CheckEntries(e, h));
    [all...]
  /external/libchrome/base/message_loop/
message_loop_unittest.cc 503 OVERLAPPED* context() { return &context_.overlapped; }
    [all...]

Completed in 1963 milliseconds

1 2