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

1 2 3 4 5 6 7 8

  /external/qemu/
tap-win32.c 99 OVERLAPPED read_overlapped;
100 OVERLAPPED write_overlapped;
109 static tun_buffer_t* get_buffer_from_free_list(tap_win32_overlapped_t* const overlapped)
112 WaitForSingleObject(overlapped->free_list_semaphore, INFINITE);
113 EnterCriticalSection(&overlapped->free_list_cs);
114 buffer = overlapped->free_list;
116 overlapped->free_list = buffer->next;
117 LeaveCriticalSection(&overlapped->free_list_cs);
122 static void put_buffer_on_free_list(tap_win32_overlapped_t* const overlapped, tun_buffer_t* const buffer)
124 EnterCriticalSection(&overlapped->free_list_cs)
485 tap_win32_overlapped_t *overlapped = (tap_win32_overlapped_t*)param; local
    [all...]
  /art/test/073-mismatched-field/
info.txt 1 Test behavior when an instance field is overlapped (through separate
  /dalvik/tests/073-mismatched-field/
info.txt 1 Test behavior when an instance field is overlapped (through separate
  /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 23 static void SetOffset(OVERLAPPED* overlapped, const LARGE_INTEGER& offset) {
24 overlapped->Offset = offset.LowPart;
25 overlapped->OffsetHigh = offset.HighPart;
28 static void IncrementOffset(OVERLAPPED* overlapped, DWORD count) {
30 offset.LowPart = overlapped->Offset;
31 offset.HighPart = overlapped->OffsetHigh;
33 SetOffset(overlapped, offset);
63 OVERLAPPED* overlapped() { return &context_.overlapped; function in class:net::FileStream::AsyncContext
227 OVERLAPPED* overlapped = NULL; local
287 OVERLAPPED* overlapped = NULL; local
    [all...]
network_change_notifier_win.h 39 OVERLAPPED addr_overlapped_;
  /external/chromium_org/third_party/libusb/src/libusb/os/
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...]
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);
  /external/chromium_org/net/base/
file_stream_context_win.cc 25 void SetOffset(OVERLAPPED* overlapped, const LARGE_INTEGER& offset) {
26 overlapped->Offset = offset.LowPart;
27 overlapped->OffsetHigh = offset.HighPart;
30 void IncrementOffset(OVERLAPPED* overlapped, DWORD count) {
32 offset.LowPart = overlapped->Offset;
33 offset.HighPart = overlapped->OffsetHigh;
35 SetOffset(overlapped, offset);
51 memset(&io_context_.overlapped, 0, sizeof(io_context_.overlapped))
    [all...]
  /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_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_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_io_completion.h 21 encapsulates a wrapper around OVERLAPPED Win32 structure returned from
28 /** \brief Encapsulates a wrapper around OVERLAPPED Win32 structure returned
45 used to initialize OVERLAPPED structure for this object.
67 /** \brief Gets overlapped I/O result
69 This method uses GetOverlappedResult to get results of the overlapped I/O
71 @param[out] ovl_data Buffer for the copy of this object's OVERLAPPED
adb_io_completion.cpp 19 encapsulates a generic wrapper around OVERLAPPED Win32 structure
49 return HasOverlappedIoCompleted(overlapped()) ? true : false;
  /external/chromium_org/chrome/browser/extensions/api/serial/
serial_io_handler_win.cc 27 memset(&comm_context_->overlapped, 0, sizeof(comm_context_->overlapped));
31 memset(&read_context_->overlapped, 0, sizeof(read_context_->overlapped));
35 memset(&write_context_->overlapped, 0, sizeof(write_context_->overlapped));
53 BOOL ok = ::WaitCommEvent(file(), &event_mask_, &comm_context_->overlapped);
68 &write_context_->overlapped);
109 &read_context_->overlapped);
serial_io_handler_win.h 38 // Context used for overlapped reads.
41 // Context used for overlapped writes.
  /external/chromium/base/
platform_file_win.cc 120 OVERLAPPED overlapped = {0}; local
121 overlapped.Offset = offset_li.LowPart;
122 overlapped.OffsetHigh = offset_li.HighPart;
125 if (::ReadFile(file, data, size, &bytes_read, &overlapped) != 0)
142 OVERLAPPED overlapped = {0}; local
143 overlapped.Offset = offset_li.LowPart;
144 overlapped.OffsetHigh = offset_li.HighPart;
147 if (::WriteFile(file, data, size, &bytes_written, &overlapped) != 0
    [all...]
  /external/chromium_org/base/
async_socket_io_handler_win.cc 49 &context_->overlapped);
72 memset(&context_->overlapped, 0, sizeof(context_->overlapped));
platform_file_win.cc 143 OVERLAPPED overlapped = {0}; local
144 overlapped.Offset = offset_li.LowPart;
145 overlapped.OffsetHigh = offset_li.HighPart;
148 if (::ReadFile(file, data, size, &bytes_read, &overlapped) != 0)
189 OVERLAPPED overlapped = {0}; local
190 overlapped.Offset = offset_li.LowPart;
191 overlapped.OffsetHigh = offset_li.HighPart;
194 if (::WriteFile(file, data, size, &bytes_written, &overlapped) != 0
    [all...]
  /external/libnfc-nxp/src/
phFriNfc_OvrHal.h 19 * \brief Overlapped HAL
45 * \name Overlapped HAL
56 /** \defgroup grp_fri_nfc_ovr_hal Overlapped HAL
58 * This component encapsulates the HAL functions, suited for the NFC-FRI overlapped way of operation. The HAL itself
60 * the HAL, from the overlapped I/O operation mode the FRI is using.
71 * FRI components accessing one NFC device share one instance of the Overlapped HAL. Therefore
73 * response of the overlapped operation.
76 * The Overlapped HAL represents the NFC Device, the lowest layer of the FRI components.
97 /** \defgroup grp_ovr_hal_cmd Overlapped HAL Command List
99 * These are the command definitions for the Overlapped HAL. They are used internally by th
    [all...]
  /external/chromium_org/base/files/
file_win.cc 135 OVERLAPPED overlapped = {0}; local
136 overlapped.Offset = offset_li.LowPart;
137 overlapped.OffsetHigh = offset_li.HighPart;
140 if (::ReadFile(file_, data, size, &bytes_read, &overlapped) != 0)
180 OVERLAPPED overlapped = {0}; local
181 overlapped.Offset = offset_li.LowPart;
182 overlapped.OffsetHigh = offset_li.HighPart;
185 if (::WriteFile(file_, data, size, &bytes_written, &overlapped) != 0
    [all...]
  /external/qemu/block/
raw-win32.c 80 DWORD overlapped; local
90 overlapped = FILE_ATTRIBUTE_NORMAL;
92 overlapped |= FILE_FLAG_NO_BUFFERING | FILE_FLAG_WRITE_THROUGH;
94 overlapped |= FILE_FLAG_WRITE_THROUGH;
97 OPEN_EXISTING, overlapped, NULL);
112 OVERLAPPED ov;
133 OVERLAPPED ov;
319 DWORD overlapped; local
344 overlapped = FILE_ATTRIBUTE_NORMAL;
346 overlapped |= FILE_FLAG_NO_BUFFERING | FILE_FLAG_WRITE_THROUGH
    [all...]
  /external/chromium/chrome/browser/ui/gtk/
gtk_chrome_shrinkable_hbox.h 17 // overlapped with each other.
19 // otherwise they may be overlapped with each other.
  /external/chromium_org/chrome/browser/ui/gtk/
gtk_chrome_shrinkable_hbox.h 16 // overlapped with each other.
18 // otherwise they may be overlapped with each other.

Completed in 491 milliseconds

1 2 3 4 5 6 7 8