/external/libpng/contrib/pngminus/ |
D | pnm2png.bat | 2 pnm2png.exe basn0g01.pgm basn0g01.png 3 pnm2png.exe basn0g02.pgm basn0g02.png 4 pnm2png.exe basn0g04.pgm basn0g04.png 5 pnm2png.exe basn0g08.pgm basn0g08.png 6 pnm2png.exe basn0g16.pgm basn0g16.png 8 pnm2png.exe basn2c08.ppm basn2c08.png 9 pnm2png.exe basn2c16.ppm basn2c16.png 11 pnm2png.exe basn3p01.ppm basn3p01.png 12 pnm2png.exe basn3p02.ppm basn3p02.png 13 pnm2png.exe basn3p04.ppm basn3p04.png [all …]
|
D | png2pnm.bat | 2 png2pnm.exe -noraw ..\pngsuite\basn0g01.png basn0g01.pgm 3 png2pnm.exe -noraw ..\pngsuite\basn0g02.png basn0g02.pgm 4 png2pnm.exe -noraw ..\pngsuite\basn0g04.png basn0g04.pgm 5 png2pnm.exe -noraw ..\pngsuite\basn0g08.png basn0g08.pgm 6 png2pnm.exe -noraw ..\pngsuite\basn0g16.png basn0g16.pgm 8 png2pnm.exe -noraw ..\pngsuite\basn2c08.png basn2c08.ppm 9 png2pnm.exe -noraw ..\pngsuite\basn2c16.png basn2c16.ppm 11 png2pnm.exe -noraw ..\pngsuite\basn3p01.png basn3p01.ppm 12 png2pnm.exe -noraw ..\pngsuite\basn3p02.png basn3p02.ppm 13 png2pnm.exe -noraw ..\pngsuite\basn3p04.png basn3p04.ppm [all …]
|
/external/libxml2/win32/ |
D | Makefile.mingw | 35 CPP = gcc.exe -E 42 CC = gcc.exe 62 LD = gcc.exe 94 AR = ar.exe 204 UTILS = $(BINDIR)/xmllint.exe\ 205 $(BINDIR)/xmlcatalog.exe\ 206 $(BINDIR)/testAutomata.exe\ 207 $(BINDIR)/testC14N.exe\ 208 $(BINDIR)/testDocbook.exe\ 209 $(BINDIR)/testHTML.exe\ [all …]
|
D | Makefile.msvc | 39 CPP = cl.exe /EP 46 CC = cl.exe 62 LD = link.exe 95 AR = lib.exe 254 UTILS = $(BINDIR)\xmllint.exe\ 255 $(BINDIR)\xmlcatalog.exe\ 256 $(BINDIR)\testAutomata.exe\ 257 $(BINDIR)\testC14N.exe\ 258 $(BINDIR)\testDocbook.exe\ 259 $(BINDIR)\testHTML.exe\ [all …]
|
D | Makefile.bcb | 45 CPP = cpp32.exe -P- -DWIN32 52 CC = bcc32.exe 70 LD = ilink32.exe 103 AR = tlib.exe 208 UTILS = $(BINDIR)\xmllint.exe\ 209 $(BINDIR)\xmlcatalog.exe\ 210 $(BINDIR)\testAutomata.exe\ 211 $(BINDIR)\testC14N.exe\ 212 $(BINDIR)\testDocbook.exe\ 213 $(BINDIR)\testHTML.exe\ [all …]
|
/external/libevent/test/ |
D | Makefile.nmake | 30 PROGRAMS=regress.exe \ 31 test-init.exe test-eof.exe test-closed.exe test-weof.exe test-time.exe \ 32 test-changelist.exe \ 33 print-winsock-errors.exe 43 regress.exe: $(REGRESS_OBJS) 46 test-init.exe: test-init.obj 48 test-eof.exe: test-eof.obj 50 test-closed.exe: test-closed.obj 52 test-changelist.exe: test-changelist.obj 54 test-weof.exe: test-weof.obj [all …]
|
/external/autotest/client/site_tests/security_SandboxedServices/ |
D | security_SandboxedServices.py | 276 exe = process.comm 278 if exe == "kthreadd": 289 if exe in exclusions: 292 running_services[exe] = process 304 for exe in baseline_set.difference(services_set): 305 stale_baselines[exe].append('unused') 309 for exe in services_set.intersection(baseline_set): 310 process = running_services[exe] 315 if process.euser != baseline[exe]["euser"]: 317 (baseline[exe]['euser'], process.euser)) [all …]
|
/external/honggfuzz/ |
D | cmdline.c | 65 uint8_t* map = files_mapFile(hfuzz->exe.cmdline[0], &fileSz, &fd, /* isWriteable= */ false); in cmdlineCheckBinaryType() 79 hfuzz->exe.cmdline[0]); in cmdlineCheckBinaryType() 80 hfuzz->exe.persistent = true; in cmdlineCheckBinaryType() 83 LOG_I("NetDriver signature found '%s'", hfuzz->exe.cmdline[0]); in cmdlineCheckBinaryType() 84 hfuzz->exe.netDriver = true; in cmdlineCheckBinaryType() 146 for (size_t i = 0; i < ARRAYSIZE(hfuzz->exe.envs); i++) { in cmdlineAddEnv() 147 if (hfuzz->exe.envs[i] == NULL) { in cmdlineAddEnv() 149 hfuzz->exe.envs[i] = env; in cmdlineAddEnv() 152 if (strncmp(hfuzz->exe.envs[i], env, enveqlen) == 0) { in cmdlineAddEnv() 153 LOG_W("Replacing envar '%s' with '%s'", hfuzz->exe.envs[i], env); in cmdlineAddEnv() [all …]
|
D | subproc.c | 150 if (!run->global->exe.persistent) { in subproc_persistentModeStateMachine() 192 if (run->global->exe.asLimit) { in subproc_PrepareExecv() 194 .rlim_cur = run->global->exe.asLimit * 1024ULL * 1024ULL, in subproc_PrepareExecv() 195 .rlim_max = run->global->exe.asLimit * 1024ULL * 1024ULL, in subproc_PrepareExecv() 203 if (run->global->exe.rssLimit) { in subproc_PrepareExecv() 205 .rlim_cur = run->global->exe.rssLimit * 1024ULL * 1024ULL, in subproc_PrepareExecv() 206 .rlim_max = run->global->exe.rssLimit * 1024ULL * 1024ULL, in subproc_PrepareExecv() 214 if (run->global->exe.dataLimit) { in subproc_PrepareExecv() 216 .rlim_cur = run->global->exe.dataLimit * 1024ULL * 1024ULL, in subproc_PrepareExecv() 217 .rlim_max = run->global->exe.dataLimit * 1024ULL * 1024ULL, in subproc_PrepareExecv() [all …]
|
/external/cmockery/cmockery_0_1_2/windows/ |
D | makefile | 44 LIBTOOL=lib.exe 48 LINK=link.exe 71 .SUFFIXES: .exe .lib .obj .c 91 $(EXECUTABLE_DIR)\calculator.exe \ 92 $(EXECUTABLE_DIR)\calculator_test.exe \ 93 $(EXECUTABLE_DIR)\allocate_module_test.exe \ 94 $(EXECUTABLE_DIR)\assert_macro_test.exe \ 95 $(EXECUTABLE_DIR)\customer_database_test.exe \ 96 $(EXECUTABLE_DIR)\key_value_test.exe \ 97 $(EXECUTABLE_DIR)\product_database_test.exe \ [all …]
|
/external/curl/packages/vms/ |
D | gnv_link_curl.com | 5 $! File to build images using gnv$libcurl.exe 80 $ link/share=gnv$curlmsg.exe [.packages.vms]curlmsg.obj 142 $ hp_ssl_libcrypto32 = "sys$common:[syslib]ssl$libcrypto_shr32.exe" 143 $ hp_ssl_libssl32 = "sys$common:[syslib]ssl$libssl_shr32.exe" 160 $ hp_ssl_libcrypto32 = "sys$share:ssl$libcrypto_shr32.exe" 161 $ hp_ssl_libssl32 = "sys$share:ssl$libssl_shr32.exe" 285 2. Extract the ssl$crypto_shr32.exe and ssl$libssl_shr32.exe images. 288 /select=(ssl$libcrypto_shr32.exe,ssl$libssl_shr32.exe)- 399 $ link'ldebug'/exe=[.src]curl.exe/dsf=[.src]curl.dsf - 446 $ link'ldebug'/exe='curl_exe'/dsf='curl_dsf' - [all …]
|
/external/honggfuzz/netbsd/ |
D | arch.c | 85 for (x = 0; x < ARGS_MAX && x < run->global->exe.argc; x++) { in arch_launchChild() 86 if (run->global->exe.persistent || run->global->exe.fuzzStdin) { in arch_launchChild() 87 args[x] = run->global->exe.cmdline[x]; in arch_launchChild() 88 } else if (!strcmp(run->global->exe.cmdline[x], _HF_FILE_PLACEHOLDER)) { in arch_launchChild() 90 } else if (strstr(run->global->exe.cmdline[x], _HF_FILE_PLACEHOLDER)) { in arch_launchChild() 91 const char* off = strstr(run->global->exe.cmdline[x], _HF_FILE_PLACEHOLDER); in arch_launchChild() 92 snprintf(argData, sizeof(argData), "%.*s%s", (int)(off - run->global->exe.cmdline[x]), in arch_launchChild() 93 run->global->exe.cmdline[x], inputFile); in arch_launchChild() 96 args[x] = run->global->exe.cmdline[x]; in arch_launchChild() 102 run->global->exe.persistent ? "PERSISTENT_MODE" : inputFile); in arch_launchChild() [all …]
|
/external/python/cpython2/Lib/distutils/tests/ |
D | test_spawn.py | 37 exe = os.path.join(tmpdir, 'foo.sh') 38 self.write_file(exe, '#!/bin/sh\nexit 1') 39 os.chmod(exe, 0777) 41 exe = os.path.join(tmpdir, 'foo.bat') 42 self.write_file(exe, 'exit 1') 44 os.chmod(exe, 0777) 45 self.assertRaises(DistutilsExecError, spawn, [exe]) 49 exe = os.path.join(tmpdir, 'foo.sh') 50 self.write_file(exe, '#!/bin/sh\nexit 0') 51 os.chmod(exe, 0777) [all …]
|
/external/webrtc/webrtc/modules/audio_coding/codecs/isac/fix/test/QA/ |
D | runiSACRate.txt | 8 ../Release/kenny.exe 13000 -FIXED_FL -FL 30 -MAX 100 ../data/orig/sawsweep_380_60.pcm $OUTDIR/out_n… 9 ../Release/kenny.exe ../data/orig/bottlenecks.txt -FIXED_FL -FL 30 -MAXRATE 32000 ../data/orig/saws… 10 ../Release/kenny.exe 13000 -FIXED_FL -FL 30 -MAX 100 ../data/orig/sawsweep_380_60.pcm $OUTDIR/out_n… 11 ../Release/kenny.exe ../data/orig/bottlenecks.txt -FIXED_FL -FL 30 -MAXRATE 32000 ../data/orig/saws… 12 ../Release/kenny.exe 13000 -FIXED_FL -FL 60 -MAX 100 ../data/orig/sawsweep_380_60.pcm $OUTDIR/out_n… 13 ../Release/kenny.exe ../data/orig/bottlenecks.txt -FIXED_FL -FL 60 -MAXRATE 32000 ../data/orig/saws… 14 ../Release/kenny.exe 13000 -INIT_RATE 32000 -FIXED_FL -FL 60 -MAX 100 ../data/orig/sawsweep_380_60.… 16 ../Release/kenny.exe 13000 -FIXED_FL -FL 30 -MAX 100 ../data/orig/longspeech.pcm $OUTDIR/out_napi_1… 17 ../Release/kenny.exe ../data/orig/bottlenecks.txt -FIXED_FL -FL 30 -MAXRATE 32000 ../data/orig/long… 18 ../Release/kenny.exe 13000 -FIXED_FL -FL 30 -MAX 100 ../data/orig/longspeech.pcm $OUTDIR/out_napi_1… [all …]
|
/external/wpa_supplicant_8/wpa_supplicant/ |
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: $(OBJDIR) $(OBJS) $(OBJS3) 185 link.exe /out:wpasvc.exe $(LFLAGS) $(OBJS) $(OBJS3) $(LIBS) 187 wpa_cli.exe: $(OBJDIR) $(OBJS_c) 188 link.exe /out:wpa_cli.exe $(LFLAGS) $(OBJS_c) $(LIBS) 190 wpa_passphrase.exe: $(OBJDIR) $(OBJS_p) 191 link.exe /out:wpa_passphrase.exe $(LFLAGS) $(OBJS_p) $(LIBS) [all …]
|
/external/selinux/python/sepolgen/tests/ |
D | audit.txt | 2 …d=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 tty=(none) comm="sh" exe="/bin/bash" subj=us… 5 … euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 tty=(none) comm="vpnc-script" exe="/bin/bash" subj=us… 8 … euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 tty=(none) comm="vpnc-script" exe="/bin/bash" subj=us… 11 …d=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 tty=(none) comm="sh" exe="/bin/bash" subj=us… 14 … euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 tty=(none) comm="vpnc-script" exe="/bin/bash" subj=us… 17 … euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 tty=(none) comm="vpnc-script" exe="/bin/bash" subj=us… 20 … euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 tty=(none) comm="vpnc-script" exe="/bin/bash" subj=us… 23 … euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 tty=(none) comm="vpnc-script" exe="/bin/bash" subj=us… 26 … euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 tty=(none) comm="vpnc-script" exe="/bin/bash" subj=us… 29 … euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 tty=(none) comm="vpnc-script" exe="/bin/bash" subj=us… [all …]
|
/external/python/cpython3/Lib/distutils/tests/ |
D | test_spawn.py | 38 exe = os.path.join(tmpdir, 'foo.sh') 39 self.write_file(exe, '#!%s\nexit 1' % unix_shell) 41 exe = os.path.join(tmpdir, 'foo.bat') 42 self.write_file(exe, 'exit 1') 44 os.chmod(exe, 0o777) 45 self.assertRaises(DistutilsExecError, spawn, [exe]) 49 exe = os.path.join(tmpdir, 'foo.sh') 50 self.write_file(exe, '#!%s\nexit 0' % unix_shell) 52 exe = os.path.join(tmpdir, 'foo.bat') 53 self.write_file(exe, 'exit 0') [all …]
|
/external/icu/icu4c/source/samples/all/ |
D | samplecheck.bat | 41 set SAMPLE_BREAK=%ICU_SAMPLESDIR%\break\%ICU_ARCH%\%ICU_DBRL%\break.exe 42 set SAMPLE_CAL=%ICU_SAMPLESDIR%\cal\%ICU_ARCH%\%ICU_DBRL%\cal.exe 43 set SAMPLE_CASE=%ICU_SAMPLESDIR%\case\%ICU_ARCH%\%ICU_DBRL%\case.exe 44 set SAMPLE_CITER=%ICU_SAMPLESDIR%\citer\%ICU_ARCH%\%ICU_DBRL%\citer.exe 45 set SAMPLE_COLL=%ICU_SAMPLESDIR%\coll\%ICU_ARCH%\%ICU_DBRL%\coll.exe 46 set SAMPLE_CSDET=%ICU_SAMPLESDIR%\csdet\%ICU_ARCH%\%ICU_DBRL%\csdet.exe 47 set SAMPLE_DATE=%ICU_SAMPLESDIR%\date\%ICU_ARCH%\%ICU_DBRL%\date.exe 48 set SAMPLE_DATEFMT=%ICU_SAMPLESDIR%\datefmt\%ICU_ARCH%\%ICU_DBRL%\datefmt.exe 49 set SAMPLE_DTITVFMT=%ICU_SAMPLESDIR%\dtitvfmtsample\%ICU_ARCH%\%ICU_DBRL%\dtitvfmtsample.exe 50 set SAMPLE_DTPTNG=%ICU_SAMPLESDIR%\dtptngsample\%ICU_ARCH%\%ICU_DBRL%\dtptngsample.exe [all …]
|
/external/honggfuzz/linux/ |
D | arch.c | 145 for (x = 0; x < ARGS_MAX && x < run->global->exe.argc; x++) { in arch_launchChild() 146 if (run->global->exe.persistent || run->global->exe.fuzzStdin) { in arch_launchChild() 147 args[x] = run->global->exe.cmdline[x]; in arch_launchChild() 148 } else if (!strcmp(run->global->exe.cmdline[x], _HF_FILE_PLACEHOLDER)) { in arch_launchChild() 150 } else if (strstr(run->global->exe.cmdline[x], _HF_FILE_PLACEHOLDER)) { in arch_launchChild() 151 const char* off = strstr(run->global->exe.cmdline[x], _HF_FILE_PLACEHOLDER); in arch_launchChild() 152 snprintf(argData, sizeof(argData), "%.*s%s", (int)(off - run->global->exe.cmdline[x]), in arch_launchChild() 153 run->global->exe.cmdline[x], inputFile); in arch_launchChild() 156 args[x] = run->global->exe.cmdline[x]; in arch_launchChild() 162 run->global->exe.persistent ? "PERSISTENT_MODE" : inputFile); in arch_launchChild() [all …]
|
/external/honggfuzz/posix/ |
D | arch.c | 155 for (x = 0; x < ARGS_MAX && x < run->global->exe.argc; x++) { in arch_launchChild() 156 if (run->global->exe.persistent || run->global->exe.fuzzStdin) { in arch_launchChild() 157 args[x] = run->global->exe.cmdline[x]; in arch_launchChild() 158 } else if (!strcmp(run->global->exe.cmdline[x], _HF_FILE_PLACEHOLDER)) { in arch_launchChild() 160 } else if (strstr(run->global->exe.cmdline[x], _HF_FILE_PLACEHOLDER)) { in arch_launchChild() 161 const char* off = strstr(run->global->exe.cmdline[x], _HF_FILE_PLACEHOLDER); in arch_launchChild() 162 snprintf(argData, sizeof(argData), "%.*s%s", (int)(off - run->global->exe.cmdline[x]), in arch_launchChild() 163 run->global->exe.cmdline[x], inputFile); in arch_launchChild() 166 args[x] = run->global->exe.cmdline[x]; in arch_launchChild() 218 if (run->global->exe.persistent) { in arch_checkWait() [all …]
|
/external/boringssl/src/util/bot/go/ |
D | env.py | 41 exe = sys.argv[1] variable 42 if exe == 'python': 43 exe = sys.executable variable 47 if os.sep not in exe: 48 exe = bootstrap.find_executable(exe, [bootstrap.WORKSPACE]) variable 49 sys.exit(subprocess.call([exe] + sys.argv[2:], env=new))
|
/external/lzma/DOC/ |
D | installer.txt | 16 7zr.exe is reduced version of 7za.exe of 7-Zip. 17 7zr.exe supports only format with these codecs: LZMA, LZMA2, BCJ, BCJ2, ARM, Copy. 32 copy /b 7zSD.sfx + config.txt + archive.7z archive.exe 52 RunProgram Command for executing. Default value is "setup.exe". 81 RunProgram="setup.exe" 97 ExecuteFile="msiexec.exe" 124 copy /b 7zS2.sfx + archive.7z sfx.exe 126 When you run installer sfx module (sfx.exe) 132 You can send parameters to installer, and installer will transfer them to extracted .exe file. 138 bat, cmd, exe, inf, msi, cab (under Windows CE), html, htm [all …]
|
/external/toolchain-utils/go/patch/ |
D | go4.patch | 69 exe, err := buildTestProg(t, "testprogcgo", buildArg) 74 - got, err := testenv.CleanCmdEnv(exec.Command(exe, runArg)).CombinedOutput() 75 + got, err := testenv.CleanCmdEnv(goExecCmd(exe, runArg)).CombinedOutput() 126 exe, err := buildTestProg(t, binary) 131 - cmd := testenv.CleanCmdEnv(exec.Command(exe, name)) 132 + cmd := testenv.CleanCmdEnv(goExecCmd(exe, name)) 146 return target.exe, target.err 149 exe := filepath.Join(testprog.dir, name+".exe") 150 - cmd := exec.Command(testenv.GoToolPath(t), append([]string{"build", "-o", exe}, flags...)...) 151 + cmd := exec.Command(goCmd(t), append([]string{"build", "-o", exe}, flags...)...) [all …]
|
/external/libpcap/msdos/ |
D | makefile.dj | 47 TARGETS = msdos/bin2c.exe libpcap.a filtertest.exe findalldevstest.exe \ 48 nonblocktest.exe opentest.exe 62 filtertest.exe: tests/filtertest.c libpcap.a 66 findalldevstest.exe: tests/findalldevstest.c libpcap.a 70 nonblocktest.exe: tests/nonblocktest.c libpcap.a 74 opentest.exe: tests/opentest.c libpcap.a 78 msdos/pkt_stub.inc: msdos/bin2c.exe msdos/pkt_rx1.S 97 msdos/bin2c.exe: msdos/bin2c.c 98 $(CC) $*.c -o $*.exe
|
/external/zlib/src/win32/ |
D | Makefile.gcc | 74 all: $(STATICLIB) $(SHAREDLIB) $(IMPLIB) example.exe minigzip.exe example_d.exe minigzip_d.exe 76 test: example.exe minigzip.exe 80 testdll: example_d.exe minigzip_d.exe 100 example.exe: example.o $(STATICLIB) 104 minigzip.exe: minigzip.o $(STATICLIB) 108 example_d.exe: example.o $(IMPLIB) 112 minigzip_d.exe: minigzip.o $(IMPLIB) 165 -$(RM) *.exe
|