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

1 2

  /external/libgdx/extensions/gdx-controllers/gdx-controllers-desktop/jni/ois-v1-4svn/src/win32/extras/WiiMote/
hiddevice.h 34 OVERLAPPED mOverlapped;
35 OVERLAPPED HIDOverlapped;
  /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/compiler-rt/test/asan/TestCases/Windows/
bind_io_completion_callback.cc 39 OVERLAPPED ov;
  /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 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...]
  /external/libevent/
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...]
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);
  /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);
mfapi.h 104 OVERLAPPED overlapped; member in struct:tagMFASYNCRESULT
    [all...]
winsock2.h 351 #define WSAOVERLAPPED OVERLAPPED
    [all...]
  /external/chromium-trace/catapult/common/py_utils/py_utils/
lock.py 24 _OVERLAPPED = pywintypes.OVERLAPPED()
  /external/google-breakpad/src/client/windows/crash_generation/
crash_generation_server.h 283 // Overlapped instance for async I/O on the pipe.
284 OVERLAPPED overlapped_;
  /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/chromium-trace/catapult/third_party/gsutil/third_party/oauth2client/oauth2client/
locked_file.py 289 pywintypes.OVERLAPPED())
315 win32file.UnlockFileEx(hfile, 0, -0x10000, pywintypes.OVERLAPPED())
  /external/fio/engines/
windowsaio.c 20 OVERLAPPED o;
366 OVERLAPPED *ovl;
  /external/chromium-trace/catapult/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/libgdx/extensions/gdx-box2d/gdx-box2d-gwt/src/com/badlogic/gdx/physics/box2d/gwt/emu/org/jbox2d/collision/
TimeOfImpact.java 68 UNKNOWN, FAILED, OVERLAPPED, TOUCHING, SEPARATED
164 // If the shapes are overlapped, we give up on continuous collision.
167 output.state = TOIOutputState.OVERLAPPED;
  /external/wpa_supplicant_8/wpa_supplicant/
ctrl_iface_named_pipe.c 61 /* Note: OVERLAPPED must be the first member of struct wpa_ctrl_dst */
62 OVERLAPPED overlap;
258 wpa_printf(MSG_DEBUG, "CTRL: Overlapped write completed: dst=%p "
275 wpa_printf(MSG_DEBUG, "CTRL: Overlapped read started for %p", dst);
337 wpa_printf(MSG_DEBUG, "CTRL: Overlapped write started for %p",
350 wpa_printf(MSG_DEBUG, "CTRL: Overlapped read completed: dst=%p err=%d "
540 /* Note: OVERLAPPED must be the first member of struct wpa_global_dst
542 OVERLAPPED overlap;
690 wpa_printf(MSG_DEBUG, "CTRL: Overlapped write completed: dst=%p "
710 wpa_printf(MSG_DEBUG, "CTRL: Overlapped read started for %p", dst)
    [all...]
  /external/webrtc/webrtc/test/channel_transport/
udp_socket2_manager_win.cc 472 // TODO (hellner): Overlapped IO should be completed at this point. Perhaps
575 OVERLAPPED* pOverlapped = 0;
  /external/libchrome/base/message_loop/
message_loop_unittest.cc 503 OVERLAPPED* context() { return &context_.overlapped; }
    [all...]
  /external/sqlite/dist/orig/
sqlite3.c 36901 OVERLAPPED overlapped; \/* The offset for ReadFile. *\/ local
37019 OVERLAPPED overlapped; \/* The offset for WriteFile. *\/ local
    [all...]

Completed in 807 milliseconds

1 2