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

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
win_console_handler.py 33 SetConsoleCtrlHandler = ctypes.windll.kernel32.SetConsoleCtrlHandler
34 SetConsoleCtrlHandler.argtypes = (HandlerRoutine, wintypes.BOOL)
35 SetConsoleCtrlHandler.restype = wintypes.BOOL
39 if not SetConsoleCtrlHandler(ctrl_handler, 1):
40 print("Unable to add SetConsoleCtrlHandler")
test_os.py 833 SetConsoleCtrlHandler = ctypes.windll.kernel32.SetConsoleCtrlHandler
834 SetConsoleCtrlHandler.argtypes = (ctypes.POINTER(ctypes.c_int),
836 SetConsoleCtrlHandler.restype = wintypes.BOOL
841 SetConsoleCtrlHandler(NULL, 0)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
win_console_handler.py 33 SetConsoleCtrlHandler = ctypes.windll.kernel32.SetConsoleCtrlHandler
34 SetConsoleCtrlHandler.argtypes = (HandlerRoutine, wintypes.BOOL)
35 SetConsoleCtrlHandler.restype = wintypes.BOOL
39 if not SetConsoleCtrlHandler(ctrl_handler, 1):
40 print("Unable to add SetConsoleCtrlHandler")
test_os.py 833 SetConsoleCtrlHandler = ctypes.windll.kernel32.SetConsoleCtrlHandler
834 SetConsoleCtrlHandler.argtypes = (ctypes.POINTER(ctypes.c_int),
836 SetConsoleCtrlHandler.restype = wintypes.BOOL
841 SetConsoleCtrlHandler(NULL, 0)
    [all...]
  /external/lzma/CPP/7zip/UI/Console/
ConsoleClose.cpp 60 if(!SetConsoleCtrlHandler(HandlerRoutine, TRUE))
61 throw "SetConsoleCtrlHandler fails";
68 if(!SetConsoleCtrlHandler(HandlerRoutine, FALSE))
69 throw "SetConsoleCtrlHandler fails";
  /ndk/sources/host-tools/gdb-stub/
gdb-stub.c 190 SetConsoleCtrlHandler(NULL, TRUE);
  /external/llvm/utils/lit/lit/
run.py 239 win32api.SetConsoleCtrlHandler(console_ctrl_handler, True)
  /system/core/adb/
adb_main.cpp 215 SetConsoleCtrlHandler( ctrlc_handler, TRUE );
  /external/lzma/C/Util/SfxSetup/
SfxSetup.c 252 SetConsoleCtrlHandler(HandlerRoutine, TRUE);
  /external/wpa_supplicant_8/src/utils/
eloop_win.c 510 if (SetConsoleCtrlHandler((PHANDLER_ROUTINE) eloop_handle_console_ctrl,
512 printf("SetConsoleCtrlHandler() failed: %d\n",
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
wincon.h 241 WINBASEAPI WINBOOL WINAPI SetConsoleCtrlHandler(PHANDLER_ROUTINE HandlerRoutine,WINBOOL Add);
  /external/mdnsresponder/mDNSPosix/
NetMonitor.c 843 if (!SetConsoleCtrlHandler(ConsoleControlHandler, TRUE)) return mStatus_UnknownErr;
846 if (!SetConsoleCtrlHandler(ConsoleControlHandler, FALSE)) return mStatus_UnknownErr;
    [all...]

Completed in 519 milliseconds