/third_party/wpa_supplicant/wpa_supplicant-2.9/wpa_supplicant/ |
H A D | nmake.mak | 5 # Note: Make sure that cl.exe is configured to include Platform SDK 8 all: wpa_supplicant.exe wpa_cli.exe wpa_passphrase.exe wpasvc.exe win_if_list.exe 181 wpa_supplicant.exe: $(OBJDIR) $(OBJS) $(OBJS2) 182 link.exe /out:wpa_supplicant.exe $(LFLAGS) $(OBJS) $(OBJS2) $(LIBS) 184 wpasvc.exe [all...] |
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/wpa_supplicant/ |
H A D | nmake.mak | 5 # Note: Make sure that cl.exe is configured to include Platform SDK 8 all: wpa_supplicant.exe wpa_cli.exe wpa_passphrase.exe wpasvc.exe win_if_list.exe 181 wpa_supplicant.exe: $(OBJDIR) $(OBJS) $(OBJS2) 182 link.exe /out:wpa_supplicant.exe $(LFLAGS) $(OBJS) $(OBJS2) $(LIBS) 184 wpasvc.exe [all...] |
/third_party/icu/icu4c/source/samples/all/ |
H A D | samplecheck.bat | 45 set SAMPLE_BREAK=%ICU_SAMPLESDIR%\break\%ICU_ARCH%\%ICU_DBRL%\break.exe 46 set SAMPLE_CAL=%ICU_SAMPLESDIR%\cal\%ICU_ARCH%\%ICU_DBRL%\cal.exe 47 set SAMPLE_CASE=%ICU_SAMPLESDIR%\case\%ICU_ARCH%\%ICU_DBRL%\case.exe 48 set SAMPLE_CITER=%ICU_SAMPLESDIR%\citer\%ICU_ARCH%\%ICU_DBRL%\citer.exe 49 set SAMPLE_COLL=%ICU_SAMPLESDIR%\coll\%ICU_ARCH%\%ICU_DBRL%\coll.exe 50 set SAMPLE_CSDET=%ICU_SAMPLESDIR%\csdet\%ICU_ARCH%\%ICU_DBRL%\csdet.exe 51 set SAMPLE_DATE=%ICU_SAMPLESDIR%\date\%ICU_ARCH%\%ICU_DBRL%\date.exe 52 set SAMPLE_DATEFMT=%ICU_SAMPLESDIR%\datefmt\%ICU_ARCH%\%ICU_DBRL%\datefmt.exe 53 set SAMPLE_DTITVFMT=%ICU_SAMPLESDIR%\dtitvfmtsample\%ICU_ARCH%\%ICU_DBRL%\dtitvfmtsample.exe 54 set SAMPLE_DTPTNG=%ICU_SAMPLESDIR%\dtptngsample\%ICU_ARCH%\%ICU_DBRL%\dtptngsample.exe [all...] |
/third_party/skia/third_party/externals/icu/source/samples/all/ |
H A D | samplecheck.bat | 45 set SAMPLE_BREAK=%ICU_SAMPLESDIR%\break\%ICU_ARCH%\%ICU_DBRL%\break.exe 46 set SAMPLE_CAL=%ICU_SAMPLESDIR%\cal\%ICU_ARCH%\%ICU_DBRL%\cal.exe 47 set SAMPLE_CASE=%ICU_SAMPLESDIR%\case\%ICU_ARCH%\%ICU_DBRL%\case.exe 48 set SAMPLE_CITER=%ICU_SAMPLESDIR%\citer\%ICU_ARCH%\%ICU_DBRL%\citer.exe 49 set SAMPLE_COLL=%ICU_SAMPLESDIR%\coll\%ICU_ARCH%\%ICU_DBRL%\coll.exe 50 set SAMPLE_CSDET=%ICU_SAMPLESDIR%\csdet\%ICU_ARCH%\%ICU_DBRL%\csdet.exe 51 set SAMPLE_DATE=%ICU_SAMPLESDIR%\date\%ICU_ARCH%\%ICU_DBRL%\date.exe 52 set SAMPLE_DATEFMT=%ICU_SAMPLESDIR%\datefmt\%ICU_ARCH%\%ICU_DBRL%\datefmt.exe 53 set SAMPLE_DTITVFMT=%ICU_SAMPLESDIR%\dtitvfmtsample\%ICU_ARCH%\%ICU_DBRL%\dtitvfmtsample.exe 54 set SAMPLE_DTPTNG=%ICU_SAMPLESDIR%\dtptngsample\%ICU_ARCH%\%ICU_DBRL%\dtptngsample.exe [all...] |
/third_party/python/Lib/distutils/tests/ |
H A D | test_spawn.py | 28 exe = os.path.join(tmpdir, 'foo.sh') 29 self.write_file(exe, '#!%s\nexit 1' % unix_shell) 31 exe = os.path.join(tmpdir, 'foo.bat') 32 self.write_file(exe, 'exit 1') 34 os.chmod(exe, 0o777) 35 self.assertRaises(DistutilsExecError, spawn, [exe]) 39 exe = os.path.join(tmpdir, 'foo.sh') 40 self.write_file(exe, '#!%s\nexit 0' % unix_shell) 42 exe = os.path.join(tmpdir, 'foo.bat') 43 self.write_file(exe, 'exi [all...] |
/third_party/musl/libc-test/ |
H A D | Makefile | 12 RUN_TEST = $(RUN_WRAP) $(B)/common/runtest.exe -w '$(RUN_WRAP)' 42 $(1).BINS_TEMPL:=bin.exe bin-static.exe 49 math.BINS_TEMPL:=bin.exe 57 $(B)/$(1).exe $(B)/$(1)-static.exe: $$($(1).OBJS) 64 BINS:=$(foreach n,$(NAMES),$($(n).BINS)) $(B)/api/main.exe 65 LIBS:=$(foreach n,$(NAMES),$($(n).LIBS)) $(B)/common/runtest.exe 66 ERRS:=$(BINS:%.exe=%.err) 96 $(B)/common/all: $(B)/common/runtest.exe [all...] |
/third_party/python/PCbuild/ |
H A D | find_msbuild.bat | 2 @rem Searches for MSBuild.exe. This is the only tool we need to initiate
28 @rem If msbuild.exe is on the PATH, assume that the user wants that one.
32 @rem VS 2017 and later provide vswhere.exe, which can be used
33 @if not exist "%ProgramFiles(x86)%\Microsoft Visual Studio\Installer\vswhere.exe" goto :skip_vswhere
35 @for /F "tokens=*" %%i in ('"%ProgramFiles(x86)%\Microsoft Visual Studio\Installer\vswhere.exe" -property installationPath -latest -prerelease -products * -requires Microsoft.VisualStudio.Component.VC.Tools.x86.x64') DO @(set _Py_MSBuild_Root=%%i\MSBuild)
37 @for %%j in (Current 15.0) DO @if exist "%_Py_MSBuild_Root%\%%j\Bin\msbuild.exe" (set MSBUILD="%_Py_MSBuild_Root%\%%j\Bin\msbuild.exe")
45 @if "%%i"=="MSBuildToolsPath" @if exist "%%k\msbuild.exe" @(set MSBUILD="%%k\msbuild.exe")
55 @if exist msbuild.exe [all...] |
H A D | idle.bat | 4 rem -d Run Debug build (python_d.exe). Else release build.
9 set exe=python
variable 13 if "%1"=="-d" (set exe=%exe%_d) & shift & goto :CheckOpts
variable 16 set cmd=%exedir%\%exe% %PCBUILD%\..\Lib\idlelib\idle.py %1 %2 %3 %4 %5 %6 %7 %8 %9
|
H A D | rt.bat | 4 rem -d Run Debug build (python_d.exe). Else release build.
5 rem -O Run python.exe or python_d.exe (see -d) with -O.
36 set exe=
variable 50 set exe=%prefix%\python%suffix%.exe
variable 51 set cmd="%exe%" %dashO% -u -Wd -E -bb -m test %regrtestargs%
55 "%exe%" "%pcbuild%rmpyc.py"
|
H A D | find_python.bat | 2 @rem Searches for python.exe and may download a private copy from nuget.
33 @if NOT "%VIRTUAL_ENV%"=="" (set PYTHON="%VIRTUAL_ENV%\Scripts\python.exe") & (set _Py_Python_Source=found in virtual env) & goto :found
39 @if exist "%_Py_EXTERNALS_DIR%\pythonx86\tools\python.exe" ("%_Py_EXTERNALS_DIR%\pythonx86\tools\python.exe" -Ec "import sys; assert sys.version_info[:2] >= (3, 8)" >nul 2>nul) && (set PYTHON="%_Py_EXTERNALS_DIR%\pythonx86\tools\python.exe") && (set _Py_Python_Source=found in externals directory) && goto :found || rmdir /Q /S "%_Py_EXTERNALS_DIR%\pythonx86"
44 @rem If py.exe finds a recent enough version, use that one
45 @for %%p in (3.10 3.9) do @py -%%p -EV >nul 2>&1 && (set PYTHON=py -%%p) && (set _Py_Python_Source=found %%p with py.exe) && goto :found
52 @if "%_Py_NUGET%"=="" (set _Py_NUGET=%_Py_EXTERNALS_DIR%\nuget.exe)
59 @powershell.exe -Command Invoke-WebRequest %_Py_NUGET_URL% -OutFile '%_Py_NUGET%'
68 @if not errorlevel 1 (set PYTHON="%_Py_EXTERNALS_DIR%\pythonx86\tools\python.exe") [all...] |
/third_party/skia/third_party/externals/swiftshader/tests/regres/git/ |
H A D | git.go | 36 var exe string var 43 exe = path 61 if err := shell.Shell(gitTimeout, exe, wd, "add", file); err != nil { 83 return shell.Shell(gitTimeout, exe, wd, args...) 111 return shell.Shell(gitTimeout, exe, wd, args...) 126 if err := shell.Shell(gitTimeout, exe, path, cmds...); err != nil { 147 if err := shell.Shell(gitTimeout, exe, path, cmds...); err != nil { 158 return shell.Shell(gitTimeout, exe, path, "checkout", commit.String()) 163 return shell.Shell(gitTimeout, exe, dir, "apply", patch) 168 out, err := shell.Exec(gitTimeout, exe, "", ni [all...] |
/third_party/zlib/watcom/ |
H A D | watcom_l.mak | 25 all: $(ZLIB_LIB) example.exe minigzip.exe 34 example.exe: $(ZLIB_LIB) example.obj 35 $(LINKER) -fe=example.exe example.obj $(ZLIB_LIB) 37 minigzip.exe: $(ZLIB_LIB) minigzip.obj 38 $(LINKER) -fe=minigzip.exe minigzip.obj $(ZLIB_LIB)
|
H A D | watcom_f.mak | 25 all: $(ZLIB_LIB) example.exe minigzip.exe 34 example.exe: $(ZLIB_LIB) example.obj 35 $(LINKER) -ldos32a -fe=example.exe example.obj $(ZLIB_LIB) 37 minigzip.exe: $(ZLIB_LIB) minigzip.obj 38 $(LINKER) -ldos32a -fe=minigzip.exe minigzip.obj $(ZLIB_LIB)
|
/third_party/zlib/contrib/delphi/ |
H A D | zlibd32.mak | 28 all: $(ZLIB_LIB) example.exe minigzip.exe 80 test: example.exe minigzip.exe 84 example.exe: example.obj $(ZLIB_LIB) 87 minigzip.exe: minigzip.obj $(ZLIB_LIB) 94 -del *.exe
|
/third_party/zlib/contrib/pascal/ |
H A D | zlibd32.mak | 28 all: $(ZLIB_LIB) example.exe minigzip.exe 80 test: example.exe minigzip.exe 84 example.exe: example.obj $(ZLIB_LIB) 87 minigzip.exe: minigzip.obj $(ZLIB_LIB) 94 -del *.exe
|
/third_party/skia/third_party/externals/swiftshader/tests/regres/shell/ |
H A D | shell.go | 30 // Shell runs the executable exe with the given arguments, in the working 33 func Shell(timeout time.Duration, exe, wd string, args ...string) error { 34 return Env(timeout, exe, wd, nil, args...) 37 // Env runs the executable exe with the given arguments, in the working 40 func Env(timeout time.Duration, exe, wd string, env []string, args ...string) error { 41 if out, err := Exec(timeout, exe, wd, env, args...); err != nil {
|
H A D | shell_unix.go | 47 // [regres] -> [regres --exec <test-exe N args...>] -> [test-exe] 52 exe := os.Args[2] 62 cmd := exec.Command(exe, os.Args[4:]...) 84 // Exec runs the executable exe with the given arguments, in the working 87 func Exec(timeout time.Duration, exe, wd string, env []string, args ...string) ([]byte, error) { 88 // Shell via regres: --exec N <exe> <args...> 90 args = append([]string{"--exec", exe, fmt.Sprintf("%v", MaxProcMemory)}, args...) 113 return b.Bytes(), ErrTimeout{exe, timeout}
|
H A D | shell_windows.go | 23 // Exec runs the executable exe with the given arguments, in the working 26 func Exec(timeout time.Duration, exe, wd string, env []string, args ...string) ([]byte, error) { 28 c := exec.Command(exe, args...) 44 return b.Bytes(), ErrTimeout{exe, timeout}
|
/third_party/skia/third_party/externals/swiftshader/tests/kokoro/gcp_windows/ |
H A D | continuous.bat | 35 build\%BUILD_TYPE%\ReactorUnitTests.exe || goto :error 36 build\%BUILD_TYPE%\gles-unittests.exe || goto :error 37 build\%BUILD_TYPE%\system-unittests.exe || goto :error 38 build\%BUILD_TYPE%\vk-unittests.exe || goto :error 44 %BUILD_TYPE%\ReactorUnitTests.exe --gtest_filter=ReactorUnitTests.Print* || goto :error 51 %BUILD_TYPE%\ReactorUnitTests.exe --gtest_filter=ReactorUnitTests.EmitAsm || goto :error
|
/third_party/skia/third_party/externals/swiftshader/tests/regres/deqp/ |
H A D | deqp.go | 162 exe, supportsCoverage := "", false 166 exe = c.ExeEgl 168 exe = c.ExeGles2 170 exe = c.ExeGles3 172 exe, supportsCoverage = c.ExeVulkan, true 176 if !util.IsFile(exe) { 177 return nil, fmt.Errorf("Couldn't find dEQP executable at '%s'", exe) 199 c.TestRoutine(exe, tests, results, index, supportsCoverage) 268 // TestRoutine repeatedly runs the dEQP test executable exe with the tests 273 func (c *Config) TestRoutine(exe strin [all...] |
/third_party/python/Lib/test/ |
H A D | test_venv.py | 73 self.exe = os.path.split(executable)[-1] 142 fn = self.get_env_file(self.bindir, self.exe) 246 envpy = os.path.join(self.env_dir, self.bindir, self.exe) 264 envpy = os.path.join(self.env_dir, self.bindir, self.exe) 287 envpy = os.path.join(self.env_dir, self.bindir, self.exe) 378 fn = self.get_env_file(self.bindir, self.exe) 404 fn = self.get_env_file(self.bindir, self.exe) 428 self.bindir, self.exe) 442 self.bindir, self.exe) 457 envpy = os.path.join(env_dir, self.bindir, self.exe) [all...] |
/third_party/libexif/contrib/watcom/ |
H A D | Makefile | 49 # .exe smaller 89 all : libexif.lib test-mem.exe test-mnote.exe test-value.exe 90 # test-tree.exe 169 test-mem.exe : .AUTODEPEND $(TESTEXIFDIR)\test-mem.c 172 test-mnote.exe : .AUTODEPEND $(TESTEXIFDIR)\test-mnote.c 175 test-tree.exe : .AUTODEPEND $(TESTEXIFDIR)\test-tree.c 178 test-value.exe : .AUTODEPEND $(TESTEXIFDIR)\test-value.c 184 - del *.exe [all...] |
/third_party/python/Tools/nuget/ |
H A D | build.bat | 24 if "%~1" EQU "--python-exe" (set PYTHON_EXE="/p:PythonExe=%~2") && shift && shift && goto CheckOpts
30 if ERRORLEVEL 1 (echo Cannot locate MSBuild.exe on PATH or as MSBUILD variable & exit /b 2)
36 ) else if not exist "%Py_OutDir%win32\python.exe" call "%PCBUILD%build.bat" -e
45 ) else if not exist "%Py_OutDir%amd64\python.exe" call "%PCBUILD%build.bat" -p x64 -e
54 ) else if not exist "%Py_OutDir%arm32\python.exe" call "%PCBUILD%build.bat" -p ARM -e --no-tkinter
|
/third_party/node/test/parallel/ |
H A D | test-child-process-stdio-overlapped.js | 32 const exeExtension = process.platform === 'win32' ? '.exe' : ''; 33 const exe = 'overlapped-checker' + exeExtension; 34 const exePath = path.join(path.dirname(process.execPath), exe); 37 common.skip(exe + ' binary is not available');
|
/third_party/icu/icu4c/source/extra/uconv/ |
H A D | makedata.mak | 91 !IF !EXISTS($(ICUTOOLS)\pkgdata.exe) 92 !MESSAGE Unable to find "$(ICUTOOLS)\pkgdata.exe" 93 !ERROR The tool 'pkgdata.exe' does not exist! (Have you built all of ICU yet?). 98 !IF !EXISTS($(ICUTOOLS)\genrb.exe) 99 !MESSAGE Unable to find "$(ICUTOOLS)\genrb.exe" 100 !ERROR The tool 'genrb.exe' does not exist! (Have you built all of ICU yet?). 151 $(RESSRC) : {"$(ICUTOOLS)"}genrb.exe
|