HomeSort by relevance Sort by last modified time
    Searched refs:OVERLAPPED (Results 1 - 25 of 29) 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/chromium_org/mojo/common/test/
test_utils_win.cc 23 OVERLAPPED overlapped = { 0 }; local
27 &bytes_written_dword, &overlapped)) {
29 !GetOverlappedResult(handle.handle, &overlapped, &bytes_written_dword,
43 OVERLAPPED overlapped = { 0 }; local
47 &bytes_read_dword, &overlapped)) {
49 !GetOverlappedResult(handle.handle, &overlapped, &bytes_read_dword,
63 OVERLAPPED overlapped = { 0 } local
    [all...]
  /external/chromium_org/net/base/
network_change_notifier_win.h 91 OVERLAPPED addr_overlapped_;
file_stream_context_win.cc 20 void SetOffset(OVERLAPPED* overlapped, const LARGE_INTEGER& offset) {
21 overlapped->Offset = offset.LowPart;
22 overlapped->OffsetHigh = offset.HighPart;
25 void IncrementOffset(OVERLAPPED* overlapped, DWORD count) {
27 offset.LowPart = overlapped->Offset;
28 offset.HighPart = overlapped->OffsetHigh;
30 SetOffset(overlapped, offset);
41 memset(&io_context_.overlapped, 0, sizeof(io_context_.overlapped))
    [all...]
  /external/chromium_org/third_party/libusb/src/libusb/os/
poll_windows.h 30 // Handle synchronous completion through the overlapped structure
79 HANDLE handle; // what we need to attach overlapped to the I/O op, so we can poll it
80 OVERLAPPED* overlapped; // what will report our I/O status member in struct:winfd
100 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
87 // a single transfer (OVERLAPPED) when used. As it may not be part of any of the
110 || (poll_fd[_index].handle == 0) || (poll_fd[_index].overlapped == NULL) ) {
119 return (*pCancelIoEx)(poll_fd[_index].handle, poll_fd[_index].overlapped);
141 || (poll_fd[_index].handle == 0) || (poll_fd[_index].overlapped == NULL) ) {
195 static OVERLAPPED *create_overlapped(void)
197 OVERLAPPED *overlapped = (OVERLAPPED*) calloc(1, sizeof(OVERLAPPED)) local
262 OVERLAPPED* overlapped; local
322 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 81 adb_io_completion->overlapped()) :
87 adb_io_completion->overlapped());
117 // overlapped I/O we're obligated to always provide OVERLAPPED
119 OVERLAPPED overlapped;
120 ZeroMemory(&overlapped, sizeof(overlapped));
121 overlapped.hEvent = CreateEvent(NULL, TRUE, FALSE, NULL);
132 &overlapped) :
    [all...]
  /external/chromium_org/device/hid/
hid_connection_win.cc 38 OVERLAPPED* GetOverlapped() { return &overlapped_; }
50 OVERLAPPED overlapped_;
68 memset(&overlapped_, 0, sizeof(OVERLAPPED));
  /external/chromium_org/base/message_loop/
message_pump_win.h 184 // // The only buffer required for this operation is the overlapped
186 // ConnectNamedPipe(file_, &context_->overlapped);
215 // ReadFile(file_, buffer, num_bytes, &read, &context->overlapped);
256 // overlapped IO operation. |handler| must be set to the registered IOHandler
263 // additional buffers (other than the overlapped structure itself).
265 OVERLAPPED overlapped; member in struct:base::MessagePumpForIO::IOContext
324 // |handler| will have valid OVERLAPPED pointers.
message_pump_win.cc 426 reinterpret_cast<OVERLAPPED*>(this));
452 // Job object notifications use the OVERLAPPED pointer to carry the message
454 // convert OVERLAPPED* to IOContext*.
557 OVERLAPPED* overlapped = NULL; local
559 &overlapped, timeout)) {
560 if (!overlapped)
567 item->context = reinterpret_cast<IOContext*>(overlapped);
  /external/chromium_org/sandbox/win/src/
named_pipe_policy_test.cc 43 OVERLAPPED overlapped = {0}; local
44 overlapped.hEvent = ::CreateEvent(NULL, TRUE, TRUE, NULL);
45 BOOL result = ::ConnectNamedPipe(pipe, &overlapped);
58 ::CloseHandle(overlapped.hEvent);
  /external/chromium_org/base/files/
file_win.cc 146 OVERLAPPED overlapped = {0}; local
147 overlapped.Offset = offset_li.LowPart;
148 overlapped.OffsetHigh = offset_li.HighPart;
151 if (::ReadFile(file_.Get(), data, size, &bytes_read, &overlapped))
191 OVERLAPPED overlapped = {0}; local
192 overlapped.Offset = offset_li.LowPart;
193 overlapped.OffsetHigh = offset_li.HighPart;
196 if (::WriteFile(file_.Get(), data, size, &bytes_written, &overlapped))
    [all...]
  /external/fio/engines/
windowsaio.c 20 OVERLAPPED o;
365 OVERLAPPED *ovl;
  /external/chromium_org/base/
sync_socket_win.cc 30 bool CreatePairImpl(HANDLE* socket_a, HANDLE* socket_b, bool overlapped) {
38 if (overlapped)
73 if (overlapped)
110 // overlapped fashion and waits for IO completion. The function also waits
139 // The OVERLAPPED structure will be modified by ReadFile or WriteFile.
140 OVERLAPPED ol = { 0 };
  /external/chromium_org/net/disk_cache/blockfile/
file_win.cc 20 OVERLAPPED* overlapped() { function in struct:__anon13778::MyOverlapped
21 return &context_.overlapped;
63 context_.overlapped.Offset = static_cast<DWORD>(offset);
152 data->overlapped())) {
202 data->overlapped())) {
  /external/chromium_org/tools/telemetry/third_party/pyserial/serial/
win32.py 60 OVERLAPPED = _OVERLAPPED
313 'RTS_CONTROL_HANDSHAKE', 'OVERLAPPED',
serialwin32.py 69 self._overlappedRead = win32.OVERLAPPED()
71 self._overlappedWrite = win32.OVERLAPPED()
306 # require overlapped IO and its also only possible to set a single mask
  /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/chromium_org/third_party/webrtc/test/channel_transport/
udp_socket2_manager_win.cc 484 // TODO (hellner): Overlapped IO should be completed at this point. Perhaps
612 OVERLAPPED* pOverlapped = 0;
  /external/chromium_org/third_party/npapi/npspy/extern/nspr/md/
_winnt.h 125 OVERLAPPED overlapped; /* Used for async I/O */ member in struct:_MDOverlapped
128 * using overlapped I/O.
149 /* The overlapped structure must be first! */
150 struct _MDOverlapped overlapped; /* Used for async IO for this thread */ member in struct:_MDThread
  /external/chromium_org/net/socket/
tcp_socket_win.cc 149 // The separate OVERLAPPED variables for asynchronous operation.
152 OVERLAPPED read_overlapped_;
153 OVERLAPPED write_overlapped_;
    [all...]
  /external/chromium_org/net/udp/
udp_socket_win.cc 53 // The separate OVERLAPPED variables for asynchronous operation.
54 OVERLAPPED read_overlapped_;
55 OVERLAPPED write_overlapped_;
226 LPOVERLAPPED overlapped) {
233 overlapped);

Completed in 2826 milliseconds

1 2