/external/chromium/chrome/browser/ |
browser_util_win.cc | 22 std::wstring exe = exe_path.value(); local 23 std::replace(exe.begin(), exe.end(), '\\', '!'); 24 std::transform(exe.begin(), exe.end(), exe.begin(), tolower); 25 exe = L"Global\\" + exe; 28 handle = CreateEvent(NULL, TRUE, TRUE, exe.c_str());
|
/external/chromium_org/tools/traceline/traceline/ |
assembler_unittest.sh | 7 ./assembler_unittest.exe | ndisasm -u - | cut -c 11-
|
/system/core/adb/ |
get_my_path_linux.c | 22 void get_my_path(char *exe, size_t maxLen) 25 snprintf(proc, sizeof proc, "/proc/%d/exe", getpid()); 26 int err = readlink(proc, exe, maxLen - 1); 28 exe[err] = '\0'; 30 exe[0] = '\0';
|
get_my_path_windows.c | 21 void get_my_path(char *exe, size_t maxLen) 26 if (GetModuleFileName(NULL, exe, maxLen) > 0) { 27 r = strrchr(exe, '\\'); 31 exe[0] = '\0';
|
get_my_path_freebsd.c | 26 get_my_path(char *exe, size_t maxLen) 32 int err = readlink(proc, exe, maxLen - 1); 34 exe[err > 0 ? err : 0] = '\0';
|
/system/core/fastboot/ |
util_windows.c | 39 void get_my_path(char exe[PATH_MAX]) 43 GetModuleFileName( NULL, exe, PATH_MAX-1 ); 44 exe[PATH_MAX-1] = 0; 45 r = strrchr( exe, '\\' );
|
/external/chromium_org/chrome/browser/ |
browser_util_win.cc | 22 std::wstring exe = exe_path.value(); local 23 std::replace(exe.begin(), exe.end(), '\\', '!'); 24 std::transform(exe.begin(), exe.end(), exe.begin(), tolower); 25 exe = L"Global\\" + exe; 28 handle = CreateEvent(NULL, TRUE, TRUE, exe.c_str());
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/tests/ |
test_spawn.py | 34 exe = os.path.join(tmpdir, 'foo.sh') 35 self.write_file(exe, '#!/bin/sh\nexit 1') 36 os.chmod(exe, 0777) 38 exe = os.path.join(tmpdir, 'foo.bat') 39 self.write_file(exe, 'exit 1') 41 os.chmod(exe, 0777) 42 self.assertRaises(DistutilsExecError, spawn, [exe]) 46 exe = os.path.join(tmpdir, 'foo.sh') 47 self.write_file(exe, '#!/bin/sh\nexit 0') 48 os.chmod(exe, 0777 [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/tests/ |
test_spawn.py | 34 exe = os.path.join(tmpdir, 'foo.sh') 35 self.write_file(exe, '#!/bin/sh\nexit 1') 36 os.chmod(exe, 0777) 38 exe = os.path.join(tmpdir, 'foo.bat') 39 self.write_file(exe, 'exit 1') 41 os.chmod(exe, 0777) 42 self.assertRaises(DistutilsExecError, spawn, [exe]) 46 exe = os.path.join(tmpdir, 'foo.sh') 47 self.write_file(exe, '#!/bin/sh\nexit 0') 48 os.chmod(exe, 0777 [all...] |
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/d3d1x/tools/ |
fxc | 11 exe="$dir/fxc.exe" 13 exec $emu "$exe" "/?" 15 exec $emu "$exe" "$@"
|
/external/mesa3d/src/gallium/state_trackers/d3d1x/tools/ |
fxc | 11 exe="$dir/fxc.exe" 13 exec $emu "$exe" "/?" 15 exec $emu "$exe" "$@"
|
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/parsers/tasm/tests/exe/ |
tasm_exe_test.sh | 2 ${srcdir}/out_test.sh tasm_test modules/parsers/tasm/tests/exe "tasm-compat parser" "-f dosexe -p tasm" ""
|
/external/chromium_org/third_party/openssl/openssl/crypto/des/ |
makefile.bc | 16 .obj.exe: 17 $(CC) $(LFLAGS) -e$*.exe $*.obj libdes.lib 19 all: $(LIB) destest.exe rpw.exe des.exe speed.exe 21 # "make clean": use a directory containing only libdes .exe and .obj files... 23 del *.exe 45 destest.exe: destest.obj libdes.lib 46 rpw.exe: rpw.obj libdes.li [all...] |
/external/openssl/crypto/des/ |
makefile.bc | 16 .obj.exe: 17 $(CC) $(LFLAGS) -e$*.exe $*.obj libdes.lib 19 all: $(LIB) destest.exe rpw.exe des.exe speed.exe 21 # "make clean": use a directory containing only libdes .exe and .obj files... 23 del *.exe 45 destest.exe: destest.obj libdes.lib 46 rpw.exe: rpw.obj libdes.li [all...] |
/external/chromium_org/tools/gyp/test/win/ |
gyptest-link-tsaware.py | 22 def GetHeaders(exe): 23 return test.run_dumpbin('/headers', test.built_file_path(exe, chdir=CHDIR)) 26 if 'Terminal Server Aware' in GetHeaders('test_tsaware_no.exe'): 30 if 'Terminal Server Aware' not in GetHeaders('test_tsaware_yes.exe'):
|
gyptest-link-aslr.py | 22 def HasDynamicBase(exe): 23 full_path = test.built_file_path(exe, chdir=CHDIR) 28 if not HasDynamicBase('test_aslr_default.exe'): 30 if HasDynamicBase('test_aslr_no.exe'): 32 if not HasDynamicBase('test_aslr_yes.exe'):
|
gyptest-link-fixed-base.py | 22 def GetHeaders(exe): 23 full_path = test.built_file_path(exe, chdir=CHDIR) 26 # For exe, default is fixed, for dll, it's not fixed. 27 if 'Relocations stripped' not in GetHeaders('test_fixed_default_exe.exe'): 33 if 'Relocations stripped' in GetHeaders('test_fixed_no.exe'): 37 if 'Relocations stripped' not in GetHeaders('test_fixed_yes.exe'):
|
/external/qemu-pc-bios/vgabios/tests/lfbprof/ |
Makefile | 3 lfbprof.exe: lfbprof.c lfbprof.h
|
/sdk/build/ |
tools.windows.atree | 31 bin/dmtracedump.exe strip tools/dmtracedump.exe 47 bin/emulator.exe strip tools/emulator.exe 48 bin/emulator-arm.exe strip tools/emulator-arm.exe 49 bin/emulator-x86.exe strip tools/emulator-x86.exe 50 bin/emulator-mips.exe strip tools/emulator-mips.exe [all...] |
/development/build/ |
sdk-windows-x86.atree | 35 bin/adb.exe strip platform-tools/adb.exe 36 bin/fastboot.exe strip platform-tools/fastboot.exe 49 bin/aapt.exe strip build-tools/${PLATFORM_NAME}/aapt.exe 52 bin/aidl.exe strip build-tools/${PLATFORM_NAME}/aidl.exe 57 bin/dexdump.exe strip build-tools/${PLATFORM_NAME}/dexdump.exe [all...] |
/external/stlport/test/eh/ |
intel.mak | 14 RSC=rc.exe 15 CPP=icl.exe 16 F90=fl32.exe 31 LINK32=link.exe 40 $(CPP) $(CPP_PROJ) $(Dep_stl) -o eh_test.exe $(CPP_LIBS) 41 .\eh_test.exe 46 -@erase "$(OUTDIR)\*.exe" 50 .exe.out: 53 .cpp.exe:
|
/external/webrtc/src/modules/audio_coding/codecs/isac/fix/test/QA/ |
runiSACRate.txt | 8 ../Release/kenny.exe 13000 -FIXED_FL -FL 30 -MAX 100 ../data/orig/sawsweep_380_60.pcm $OUTDIR/out_napi_1.pcm > $LOGG 9 ../Release/kenny.exe ../data/orig/bottlenecks.txt -FIXED_FL -FL 30 -MAXRATE 32000 ../data/orig/sawsweep_380_60.pcm $OUTDIR/out_napi_2.pcm >> $LOGG 10 ../Release/kenny.exe 13000 -FIXED_FL -FL 30 -MAX 100 ../data/orig/sawsweep_380_60.pcm $OUTDIR/out_napi_3.pcm >> $LOGG 11 ../Release/kenny.exe ../data/orig/bottlenecks.txt -FIXED_FL -FL 30 -MAXRATE 32000 ../data/orig/sawsweep_380_60.pcm $OUTDIR/out_napi_4.pcm >> $LOGG 12 ../Release/kenny.exe 13000 -FIXED_FL -FL 60 -MAX 100 ../data/orig/sawsweep_380_60.pcm $OUTDIR/out_napi_5.pcm >> $LOGG 13 ../Release/kenny.exe ../data/orig/bottlenecks.txt -FIXED_FL -FL 60 -MAXRATE 32000 ../data/orig/sawsweep_380_60.pcm $OUTDIR/out_napi_6.pcm >> $LOGG 14 ../Release/kenny.exe 13000 -INIT_RATE 32000 -FIXED_FL -FL 60 -MAX 100 ../data/orig/sawsweep_380_60.pcm $OUTDIR/out_napi_7.pcm >> $LOGG 16 ../Release/kenny.exe 13000 -FIXED_FL -FL 30 -MAX 100 ../data/orig/longspeech.pcm $OUTDIR/out_napi_11.pcm >> $LOGG 17 ../Release/kenny.exe ../data/orig/bottlenecks.txt -FIXED_FL -FL 30 -MAXRATE 32000 ../data/orig/longspeech.pcm $OUTDIR/out_napi_12.pcm >> $LOGG 18 ../Release/kenny.exe 13000 -FIXED_FL -FL 30 -MAX 100 ../data/orig/longspeech.pcm $OUTDIR/out_napi_13.pcm >> $LOG [all...] |
/external/chromium/base/test/ |
perf_test_suite.cc | 28 FilePath exe; local 29 PathService::Get(base::FILE_EXE, &exe); 30 log_path = exe.ReplaceExtension(FILE_PATH_LITERAL("log"));
|
/external/chromium_org/base/test/ |
perf_test_suite.cc | 27 FilePath exe; local 28 PathService::Get(FILE_EXE, &exe); 29 log_path = exe.ReplaceExtension(FILE_PATH_LITERAL("log"));
|
/ndk/ |
ndk-gdb-py.cmd | 2 rem This is a Windows cmd.exe script used to invoke the NDK-specific Python executable 6 "%NDK_ROOT%prebuilt/%NDK_WIN_HOST%/bin/python.exe" -u "%~dp0ndk-gdb.py" SHELL=cmd %*
|