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

1 2

  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ddk/
dderror.h 15 #define ERROR_IO_PENDING 997
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
rpcnterr.h 18 #define RPC_S_ASYNC_CALL_PENDING ERROR_IO_PENDING
  /development/host/windows/usb/api/
adb_legacy_io_completion.cpp 61 // ERROR_IO_PENDING. So, lets give it an up to a 20 ms loop!
65 ((ERROR_IO_INCOMPLETE == error) || (ERROR_IO_PENDING == error))) {
75 ((ERROR_IO_INCOMPLETE != error) && (ERROR_IO_PENDING != error))) {
adb_legacy_endpoint_object.cpp 113 if (!res && (ERROR_IO_PENDING != error)) {
175 if (!ret && (ERROR_IO_PENDING != GetLastError())) {
  /development/host/windows/usb/winusb/
adb_winusb_io_completion.cpp 69 // ERROR_IO_PENDING. So, lets give it an up to a 20 ms loop!
73 ((ERROR_IO_INCOMPLETE == error) || (ERROR_IO_PENDING == error))) {
83 ((ERROR_IO_INCOMPLETE != error) && (ERROR_IO_PENDING != error))) {
adb_winusb_endpoint_object.cpp 145 if (!res && (ERROR_IO_PENDING != error)) {
211 if (!ret && (ERROR_IO_PENDING != GetLastError())) {
  /external/libmojo/mojo/edk/test/
test_utils_win.cc 26 if (GetLastError() != ERROR_IO_PENDING ||
46 if (GetLastError() != ERROR_IO_PENDING ||
66 if (GetLastError() != ERROR_IO_PENDING)
  /external/compiler-rt/test/asan/TestCases/Windows/
bind_io_completion_callback.cc 59 GetLastError() != ERROR_IO_PENDING)
  /external/libmojo/mojo/edk/system/
channel_win.cc 170 case ERROR_IO_PENDING:
293 if (ok || GetLastError() == ERROR_IO_PENDING) {
310 if (ok || GetLastError() == ERROR_IO_PENDING) {
  /external/python/cpython3/Lib/test/test_asyncio/
test_windows_utils.py 83 self.assertEqual(ov1.error, _winapi.ERROR_IO_PENDING)
97 self.assertIn(ov2.error, {0, _winapi.ERROR_IO_PENDING})
105 self.assertIn(ov2.error, {0, _winapi.ERROR_IO_PENDING})
  /external/google-breakpad/src/client/windows/crash_generation/
crash_generation_server.cc 317 case ERROR_IO_PENDING:
377 if (success || error_code == ERROR_IO_PENDING) {
497 } else if (error_code == ERROR_IO_PENDING) {
701 if (!success && error_code != ERROR_IO_PENDING) {
    [all...]
  /external/python/cpython3/Modules/
overlapped.c 745 case ERROR_IO_PENDING:
804 case ERROR_IO_PENDING:
857 case ERROR_IO_PENDING:
914 case ERROR_IO_PENDING:
964 case ERROR_IO_PENDING:
1051 case ERROR_IO_PENDING:
1090 case ERROR_IO_PENDING:
1131 case ERROR_IO_PENDING:
    [all...]
_winapi.c 416 if (err == ERROR_IO_PENDING)
    [all...]
  /external/chromium-trace/catapult/third_party/pyserial/serial/
serialwin32.py 259 if not err and win32.GetLastError() != win32.ERROR_IO_PENDING:
269 if not err and win32.GetLastError() != win32.ERROR_IO_PENDING:
288 if not err and win32.GetLastError() != win32.ERROR_IO_PENDING:
win32.py 198 ERROR_IO_PENDING = 997 # Variable c_long
312 'ERROR_IO_PENDING', 'EscapeCommFunction', 'GENERIC_READ',
  /external/wpa_supplicant_8/src/l2_packet/
l2_packet_ndis.c 133 if (err == ERROR_IO_PENDING) {
258 if (err != ERROR_IO_PENDING) {
  /external/webrtc/webrtc/test/channel_transport/
udp_socket2_win.cc 403 if(error != ERROR_IO_PENDING)
409 if(retVal == 0 || (retVal == SOCKET_ERROR && error == ERROR_IO_PENDING))
603 if(rxError != ERROR_IO_PENDING)
619 if((rxError == ERROR_IO_PENDING) || (nRet == 0))
    [all...]
  /external/deqp/execserver/
xsWin32TestProcess.cpp 148 if (err != ERROR_IO_PENDING)
261 else if (err != ERROR_IO_PENDING)
  /external/tensorflow/tensorflow/core/platform/windows/
windows_file_system.cc 78 ((last_error = GetLastError()) != ERROR_IO_PENDING)) {
81 if (ERROR_IO_PENDING ==
  /external/wpa_supplicant_8/wpa_supplicant/
ctrl_iface_named_pipe.c 191 case ERROR_IO_PENDING:
622 case ERROR_IO_PENDING:
  /external/deqp/framework/delibs/deutil/
deTimer.c 142 if (err == ERROR_IO_PENDING)
  /external/python/cpython3/Lib/multiprocessing/
connection.py 282 if err == _winapi.ERROR_IO_PENDING:
304 if err == _winapi.ERROR_IO_PENDING:
840 if err == _winapi.ERROR_IO_PENDING:
  /external/fio/engines/
windowsaio.c 356 if (success || GetLastError() == ERROR_IO_PENDING)
  /external/python/cpython3/Lib/asyncio/
windows_events.py 134 if exc.winerror != _overlapped.ERROR_IO_PENDING:
144 # ERROR_IO_PENDING means that the unregister is pending
221 if exc.winerror != _overlapped.ERROR_IO_PENDING:
231 # ERROR_IO_PENDING is not an error, the wait was unregistered
  /external/libevent/
bufferevent_async.c 639 if (rc || WSAGetLastError() == ERROR_IO_PENDING)

Completed in 544 milliseconds

1 2