/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...] |
/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));
|
adb_winusb_io_completion.h | 21 encapsulates a wrapper around OVERLAPPED Win32 structure returned from
28 /** \brief Encapsulates encapsulates a wrapper around OVERLAPPED Win32
45 used to initialize OVERLAPPED structure for this object.
88 /** \brief Gets overlapped I/O result
91 overlapped I/O operation.
92 @param[out] ovl_data Buffer for the copy of this object's OVERLAPPED
|
adb_winusb_endpoint_object.h | 88 initialize OVERLAPPED structure for this I/O.
|
/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;
|
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_endpoint_object.h | 68 initialize OVERLAPPED structure for this I/O.
120 initialize OVERLAPPED structure for this I/O.
140 initialize OVERLAPPED structure for this I/O.
|
adb_api.cpp | 484 LPOVERLAPPED overlapped,
494 adb_object->GetOvelappedIoResult(overlapped, bytes_transferred, wait);
|
adb_legacy_endpoint_object.h | 65 initialize OVERLAPPED structure for this I/O.
|
/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/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;
|
ctrl_iface_named_pipe.c | 67 /* Note: OVERLAPPED must be the first member of struct wpa_ctrl_dst */ 68 OVERLAPPED overlap; 264 wpa_printf(MSG_DEBUG, "CTRL: Overlapped write completed: dst=%p " 281 wpa_printf(MSG_DEBUG, "CTRL: Overlapped read started for %p", dst); 343 wpa_printf(MSG_DEBUG, "CTRL: Overlapped write started for %p", 356 wpa_printf(MSG_DEBUG, "CTRL: Overlapped read completed: dst=%p err=%d " 544 /* Note: OVERLAPPED must be the first member of struct wpa_global_dst 546 OVERLAPPED overlap; 694 wpa_printf(MSG_DEBUG, "CTRL: Overlapped write completed: dst=%p " 714 wpa_printf(MSG_DEBUG, "CTRL: Overlapped read started for %p", dst) [all...] |
/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/wpa_supplicant_6/wpa_supplicant/ |
ctrl_iface_named_pipe.c | 67 /* Note: OVERLAPPED must be the first member of struct wpa_ctrl_dst */ 68 OVERLAPPED overlap; 264 wpa_printf(MSG_DEBUG, "CTRL: Overlapped write completed: dst=%p " 281 wpa_printf(MSG_DEBUG, "CTRL: Overlapped read started for %p", dst); 343 wpa_printf(MSG_DEBUG, "CTRL: Overlapped write started for %p", 356 wpa_printf(MSG_DEBUG, "CTRL: Overlapped read completed: dst=%p err=%d " 545 /* Note: OVERLAPPED must be the first member of struct wpa_global_dst 547 OVERLAPPED overlap; 695 wpa_printf(MSG_DEBUG, "CTRL: Overlapped write completed: dst=%p " 715 wpa_printf(MSG_DEBUG, "CTRL: Overlapped read started for %p", dst) [all...] |
/external/speex/libspeex/ |
cb_search.h | 4 @brief Overlapped codebook search
|
/development/simulator/app/ |
ported.cpp | 79 // It appears that unnamed pipes can't do non-blocking ("overlapped") I/O.
|
/external/webkit/WebCore/platform/network/ |
NetworkStateNotifier.h | 100 OVERLAPPED m_overlapped;
|
/external/webkit/WebCore/accessibility/ |
AccessibilityTable.cpp | 403 // cell overlapped. use this one 413 // cell overlapped. use this one
|