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

  /external/qemu/
tap-win32.c 105 OVERLAPPED read_overlapped;
106 OVERLAPPED write_overlapped;
115 static tun_buffer_t* get_buffer_from_free_list(tap_win32_overlapped_t* const overlapped)
118 WaitForSingleObject(overlapped->free_list_semaphore, INFINITE);
119 EnterCriticalSection(&overlapped->free_list_cs);
120 buffer = overlapped->free_list;
122 overlapped->free_list = buffer->next;
123 LeaveCriticalSection(&overlapped->free_list_cs);
128 static void put_buffer_on_free_list(tap_win32_overlapped_t* const overlapped, tun_buffer_t* const buffer)
130 EnterCriticalSection(&overlapped->free_list_cs)
491 tap_win32_overlapped_t *overlapped = (tap_win32_overlapped_t*)param; local
    [all...]
  /development/host/windows/usb/winusb/
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...]
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));
  /external/chromium/net/base/
file_stream_win.cc 21 static void SetOffset(OVERLAPPED* overlapped, const LARGE_INTEGER& offset) {
22 overlapped->Offset = offset.LowPart;
23 overlapped->OffsetHigh = offset.HighPart;
26 static void IncrementOffset(OVERLAPPED* overlapped, DWORD count) {
28 offset.LowPart = overlapped->Offset;
29 offset.HighPart = overlapped->OffsetHigh;
31 SetOffset(overlapped, offset);
61 OVERLAPPED* overlapped() { return &context_.overlapped; function in class:net::FileStream::AsyncContext
219 OVERLAPPED* overlapped = NULL; local
275 OVERLAPPED* overlapped = NULL; local
    [all...]
  /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 151 this API it is opened for asynchronous (or overlapped) I/O. And each time
416 Endpoints are always opened for overlapped I/O.
439 Endpoints are always opened for overlapped I/O.
458 Endpoints are always opened for overlapped I/O.
504 initialize OVERLAPPED structure for this I/O.
527 initialize OVERLAPPED structure for this I/O.
579 /** \brief Gets overlapped I/O result for async I/O performed on the
584 @param[out] ovl_data Buffer for the copy of this object's OVERLAPPED
600 LPOVERLAPPED overlapped,
604 /** \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/qemu/block/
raw-win32.c 80 DWORD overlapped; local
94 overlapped = FILE_ATTRIBUTE_NORMAL;
96 overlapped |= FILE_FLAG_NO_BUFFERING | FILE_FLAG_WRITE_THROUGH;
98 overlapped |= FILE_FLAG_WRITE_THROUGH;
101 create_flags, overlapped, NULL);
116 OVERLAPPED ov;
137 OVERLAPPED ov;
322 DWORD overlapped; local
347 overlapped = FILE_ATTRIBUTE_NORMAL;
349 overlapped |= FILE_FLAG_NO_BUFFERING | FILE_FLAG_WRITE_THROUGH
    [all...]
  /external/chromium/net/disk_cache/
file_win.cc 19 OVERLAPPED* overlapped() { function in struct:__anon2420::MyOverlapped
20 return &context_.overlapped;
58 context_.overlapped.Offset = static_cast<DWORD>(offset);
185 if (!ReadFile(platform_file_, buffer, size, &actual, data->overlapped())) {
236 if (!WriteFile(platform_file_, buffer, size, &actual, data->overlapped())) {
  /external/chromium/base/
message_pump_win.cc 417 reinterpret_cast<OVERLAPPED*>(this));
521 OVERLAPPED* overlapped = NULL; local
523 &overlapped, timeout)) {
524 if (!overlapped)
531 item->context = reinterpret_cast<IOContext*>(overlapped);
message_pump_win.h 230 // // The only buffer required for this operation is the overlapped
232 // ConnectNamedPipe(file_, &context_->overlapped);
261 // ReadFile(file_, buffer, num_bytes, &read, &context->overlapped);
287 // overlapped IO operation. |handler| must be set to the registered IOHandler
294 // additional buffers (other than the overlapped structure itself).
296 OVERLAPPED overlapped; member in struct:base::MessagePumpForIO::IOContext
message_loop_unittest.cc     [all...]
  /external/bluetooth/glib/gio/win32/
gwin32directorymonitor.c 40 OVERLAPPED overlapped; member in struct:_GWin32DirectoryMonitorPrivate
141 &priv->overlapped,
186 &self->priv->overlapped,
  /external/wpa_supplicant/
l2_packet_ndis.c 19 * WinXP version of the code uses overlapped I/O and a single threaded design
83 OVERLAPPED rx_overlapped;
104 OVERLAPPED overlapped; local
106 OVERLAPPED *o;
114 os_memset(&overlapped, 0, sizeof(overlapped));
115 o = &overlapped;
  /external/wpa_supplicant_6/wpa_supplicant/src/l2_packet/
l2_packet_ndis.c 19 * WinXP version of the code uses overlapped I/O and a single threaded design
83 OVERLAPPED rx_overlapped;
104 OVERLAPPED overlapped; local
106 OVERLAPPED *o;
114 os_memset(&overlapped, 0, sizeof(overlapped));
115 o = &overlapped;
  /external/chromium/net/tools/dump_cache/
upgrade.cc 162 &out_context_.overlapped)) {
173 &in_context_.overlapped)) {
182 if (!ConnectNamedPipe(channel_, &in_context_.overlapped)) {

Completed in 550 milliseconds