Searched refs:msvcrt (Results 1 – 25 of 90) sorted by relevance
1234
/external/python/cpython3/Lib/test/libregrtest/ |
D | setup.py | 93 import msvcrt 97 msvcrt.SetErrorMode(msvcrt.SEM_FAILCRITICALERRORS| 98 msvcrt.SEM_NOALIGNMENTFAULTEXCEPT| 99 msvcrt.SEM_NOGPFAULTERRORBOX| 100 msvcrt.SEM_NOOPENFILEERRORBOX) 102 msvcrt.CrtSetReportMode 107 for m in [msvcrt.CRT_WARN, msvcrt.CRT_ERROR, msvcrt.CRT_ASSERT]: 109 msvcrt.CrtSetReportMode(m, msvcrt.CRTDBG_MODE_FILE) 110 msvcrt.CrtSetReportFile(m, msvcrt.CRTDBG_FILE_STDERR) 112 msvcrt.CrtSetReportMode(m, 0)
|
/external/python/cpython2/Lib/ |
D | getpass.py | 93 import msvcrt 95 msvcrt.putch(c) 98 c = msvcrt.getch() 107 msvcrt.putch('\r') 108 msvcrt.putch('\n') 168 import msvcrt
|
D | subprocess.py | 61 import msvcrt 412 p2cwrite = msvcrt.open_osfhandle(p2cwrite.Detach(), 0) 414 c2pread = msvcrt.open_osfhandle(c2pread.Detach(), 0) 416 errread = msvcrt.open_osfhandle(errread.Detach(), 0) 515 p2cread = msvcrt.get_osfhandle(stdin) 518 p2cread = msvcrt.get_osfhandle(stdin.fileno()) 532 c2pwrite = msvcrt.get_osfhandle(stdout) 535 c2pwrite = msvcrt.get_osfhandle(stdout.fileno()) 551 errwrite = msvcrt.get_osfhandle(stderr) 554 errwrite = msvcrt.get_osfhandle(stderr.fileno())
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/MC/COFF/ |
D | linker-options.ll | 3 !0 = !{!"/DEFAULTLIB:msvcrt.lib"} 4 !1 = !{!"/DEFAULTLIB:msvcrt.lib", !"/DEFAULTLIB:secur32.lib"} 14 ; CHECK: .ascii " /DEFAULTLIB:msvcrt.lib" 15 ; CHECK: .ascii " /DEFAULTLIB:msvcrt.lib"
|
/external/llvm/test/MC/COFF/ |
D | linker-options.ll | 3 !0 = !{i32 6, !"Linker Options", !{!{!"/DEFAULTLIB:msvcrt.lib"}, !{!"/DEFAULTLIB:msvcrt.lib", !"/DE… 12 ; CHECK: .ascii " /DEFAULTLIB:msvcrt.lib" 13 ; CHECK: .ascii " /DEFAULTLIB:msvcrt.lib"
|
/external/python/cpython3/Lib/ |
D | getpass.py | 103 msvcrt.putwch(c) 106 c = msvcrt.getwch() 115 msvcrt.putwch('\r') 116 msvcrt.putwch('\n') 179 import msvcrt
|
D | subprocess.py | 127 import msvcrt 736 p2cwrite = msvcrt.open_osfhandle(p2cwrite.Detach(), 0) 738 c2pread = msvcrt.open_osfhandle(c2pread.Detach(), 0) 740 errread = msvcrt.open_osfhandle(errread.Detach(), 0) 1034 p2cread = msvcrt.get_osfhandle(self._get_devnull()) 1036 p2cread = msvcrt.get_osfhandle(stdin) 1039 p2cread = msvcrt.get_osfhandle(stdin.fileno()) 1052 c2pwrite = msvcrt.get_osfhandle(self._get_devnull()) 1054 c2pwrite = msvcrt.get_osfhandle(stdout) 1057 c2pwrite = msvcrt.get_osfhandle(stdout.fileno()) [all …]
|
/external/python/cpython3/Lib/asyncio/ |
D | windows_utils.py | 10 import msvcrt 138 stdin_rfd = msvcrt.open_osfhandle(stdin_rh, os.O_RDONLY) 143 stdout_wfd = msvcrt.open_osfhandle(stdout_wh, 0) 148 stderr_wfd = msvcrt.open_osfhandle(stderr_wh, 0)
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/tools/llvm-objcopy/Inputs/ |
D | ungzip.py | 9 import os, msvcrt 10 msvcrt.setmode(sys.stdout.fileno(),os.O_BINARY)
|
/external/python/cpython3/Lib/test/support/ |
D | __init__.py | 2592 import msvcrt 2593 msvcrt.CrtSetReportMode 2599 for report_type in [msvcrt.CRT_WARN, 2600 msvcrt.CRT_ERROR, 2601 msvcrt.CRT_ASSERT]: 2602 old_mode = msvcrt.CrtSetReportMode(report_type, 2603 msvcrt.CRTDBG_MODE_FILE) 2604 old_file = msvcrt.CrtSetReportFile(report_type, 2605 msvcrt.CRTDBG_FILE_STDERR) 2646 import msvcrt [all …]
|
/external/swiftshader/third_party/llvm-7.0/llvm/utils/lit/lit/builtin_commands/ |
D | cat.py | 51 import os, msvcrt 52 msvcrt.setmode(sys.stdout.fileno(),os.O_BINARY)
|
/external/libcxx/cmake/ |
D | config-ix.cmake | 6 # NOTE(compnerd) this is technically a lie, there is msvcrt, but for now, lets 49 set(MINGW_LIBRARIES mingw32 ${MINGW_RUNTIME} moldname mingwex msvcrt advapi32 51 moldname mingwex msvcrt)
|
/external/yapf/yapf/yapflib/ |
D | py3compat.py | 92 import msvcrt # pylint: disable=g-import-not-at-top 94 msvcrt.setmode(sys.stdout.fileno(), os.O_BINARY)
|
/external/google-breakpad/src/processor/testdata/ |
D | minidump2.stackwalk.machine_readable.out | 10 Module|msvcrt.dll|7.0.2600.2180|msvcrt.pdb|A678F3C30DED426B839032B996987E381|0x77c10000|0x77c67fff|0
|
/external/python/cpython3/Lib/multiprocessing/ |
D | popen_spawn_win32.py | 2 import msvcrt 51 wfd = msvcrt.open_osfhandle(whandle, 0)
|
D | spawn.py | 98 import msvcrt 100 fd = msvcrt.open_osfhandle(new_handle, os.O_RDONLY)
|
/external/brotli/python/ |
D | bro.py | 37 import msvcrt 38 msvcrt.setmode(stdio.fileno(), os.O_BINARY)
|
/external/python/cpython2/Lib/test/support/ |
D | __init__.py | 2090 import msvcrt 2091 msvcrt.CrtSetReportMode 2097 for report_type in (msvcrt.CRT_WARN, 2098 msvcrt.CRT_ERROR, 2099 msvcrt.CRT_ASSERT): 2100 old_modes[report_type] = msvcrt.CrtSetReportMode(report_type, 0) 2117 for report_type in (msvcrt.CRT_WARN, 2118 msvcrt.CRT_ERROR, 2119 msvcrt.CRT_ASSERT): 2120 msvcrt.CrtSetReportMode(report_type, old_modes[report_type])
|
/external/python/cpython2/Doc/library/ |
D | windows.rst | 13 msvcrt.rst
|
/external/python/cpython3/Doc/library/ |
D | windows.rst | 13 msvcrt.rst
|
/external/libcxxabi/cmake/ |
D | config-ix.cmake | 38 set(MINGW_LIBRARIES mingw32 ${MINGW_RUNTIME} moldname mingwex msvcrt advapi32 40 moldname mingwex msvcrt)
|
/external/libunwind_llvm/cmake/ |
D | config-ix.cmake | 45 set(MINGW_LIBRARIES mingw32 ${MINGW_RUNTIME} moldname mingwex msvcrt advapi32 47 moldname mingwex msvcrt)
|
/external/python/cpython2/Lib/multiprocessing/ |
D | forking.py | 186 import msvcrt 254 rhandle = duplicate(msvcrt.get_osfhandle(rfd), inheritable=True) 375 fd = msvcrt.open_osfhandle(handle, os.O_RDONLY)
|
/external/swiftshader/third_party/LLVM/lib/Support/Windows/ |
D | DynamicLibrary.inc | 60 // Mingw32 uses msvcrt.dll by default. Don't ignore it. 62 stricmp(ModuleName, "msvcrt") != 0 &&
|
/external/grpc-grpc/third_party/rake-compiler-dock/ |
D | Dockerfile | 8 RUN find / -name *msvcrt-ruby*.dll.a | while read f ; do n=`echo $f | sed s/.dll//` ; mv $f $n ; do…
|
1234