HomeSort by relevance Sort by last modified time
    Searched refs:exe (Results 1 - 25 of 821) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /system/core/adb/
get_my_path_linux.cpp 24 void get_my_path(char *exe, size_t maxLen)
27 snprintf(proc, sizeof proc, "/proc/%d/exe", getpid());
28 int err = readlink(proc, exe, maxLen - 1);
30 exe[err] = '\0';
32 exe[0] = '\0';
get_my_path_windows.cpp 23 void get_my_path(char *exe, size_t maxLen)
28 if (GetModuleFileName(NULL, exe, maxLen) > 0) {
29 r = strrchr(exe, '\\');
33 exe[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, '\\' );
  /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/mesa3d/src/gallium/state_trackers/d3d1x/tools/
fxc 11 exe="$dir/fxc.exe"
13 exec $emu "$exe" "/?"
15 exec $emu "$exe" "$@"
  /external/boringssl/src/util/bot/go/
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))
  /development/build/
sdk-windows-x86.atree 35 bin/adb.exe strip platform-tools/adb.exe
36 bin/fastboot.exe strip platform-tools/fastboot.exe
41 bin/sqlite3.exe strip platform-tools/sqlite3.exe
44 bin/dmtracedump.exe strip platform-tools/dmtracedump.exe
47 bin/hprof-conv.exe strip platform-tools/hprof-conv.exe
    [all...]
  /cts/hostsidetests/theme/
generate_images.sh 42 exe="$ANDROID_BUILD_TOP/cts/hostsidetests/theme/run_theme_capture_device.py"
55 python $exe $themeApkPath $outDir
  /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/ltrace/testsuite/ltrace.torture/
arm-singlestep.exp 24 set exe [ltraceCompile {} [ltraceSource c {
39 ltraceMatch [ltraceRun -L -xbar+baz $exe] {
  /frameworks/rs/
rsCppUtils.cpp 54 bool rsuExecuteCommand(const char *exe, int nArgs, const char * const *args) {
56 ALOGV("Invoking %s with args '%s'", exe, joined.get());
62 ALOGE("Fork of \"%s\" failed with error %s", exe, strerror(errno));
75 execv(exe, (char * const *)args);
86 ALOGE("Waitpid of \"%s\" failed with error %s", exe,
95 ALOGE("Child process \"%s\" terminated with status %d", exe, status);
  /external/cmockery/cmockery_0_1_2/windows/
makefile 20 # Select Start->Run and run "cmd.exe" to open the command line.
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 \
    [all...]
  /external/zlib/src/watcom/
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)
  /external/lldb/test/benchmarks/disassembly/
TestDoAttachThenDisassembly.py 18 self.exe = lldb.bmExecutable
20 self.exe = self.lldbHere
29 self.run_lldb_attach_then_disassembly(self.exe, self.count)
32 def run_lldb_attach_then_disassembly(self, exe, count):
33 target = self.dbg.CreateTarget(exe)
37 popen = subprocess.Popen([exe, self.lldbOption],
  /external/icu/icu4c/source/samples/uresb/
resources.mak 7 GENRB = ..\..\..\bin64\genrb.exe
9 GENRB = ..\..\..\bin\genrb.exe
  /external/lldb/test/
bench.py 21 # dotest.py invocation with no '-e exe-path' uses lldb as the inferior program,
48 dest='exe',
62 '-e "%s"' % opts.exe if opts.exe else '')
  /external/sonivox/arm-fm-22k/host_src/
arm-fm-22k.mak 10 CC = C:\Program Files\GNUARM\bin\arm-elf-gcc.exe
11 AS = C:\Program Files\GNUARM\bin\arm-elf-as.exe
12 LD = C:\Program Files\GNUARM\bin\arm-elf-gcc.exe
13 AR = C:\Program Files\GNUARM\bin\arm-elf-ar.exe
  /external/sonivox/arm-hybrid-22k/host_src/
arm-hybrid-22k.mak 10 CC = C:\Program Files\GNUARM\bin\arm-elf-gcc.exe
11 AS = C:\Program Files\GNUARM\bin\arm-elf-as.exe
12 LD = C:\Program Files\GNUARM\bin\arm-elf-gcc.exe
13 AR = C:\Program Files\GNUARM\bin\arm-elf-ar.exe
  /external/sonivox/arm-wt-22k/host_src/
arm-wt-22k.mak 10 CC = C:\Program Files\GNUARM\bin\arm-elf-gcc.exe
11 AS = C:\Program Files\GNUARM\bin\arm-elf-as.exe
12 LD = C:\Program Files\GNUARM\bin\arm-elf-gcc.exe
13 AR = C:\Program Files\GNUARM\bin\arm-elf-ar.exe
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/
idle.bat 4 start "IDLE" "%CURRDIR%..\..\pythonw.exe" "%CURRDIR%idle.pyw" %1 %2 %3 %4 %5 %6 %7 %8 %9
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/
idle.bat 4 start "IDLE" "%CURRDIR%..\..\pythonw.exe" "%CURRDIR%idle.pyw" %1 %2 %3 %4 %5 %6 %7 %8 %9
  /external/lldb/test/lang/objc/foundation/
TestSymbolTable.py 43 exe = os.path.join(os.getcwd(), "a.out")
44 self.runCmd("file " + exe, CURRENT_EXECUTABLE_SET)
46 target = self.dbg.CreateTarget(exe)
57 filespec = lldb.SBFileSpec(exe, False)
  /ndk/
ndk-build.cmd 2 rem This is a Windows cmd.exe script used to invoke the NDK-specific GNU Make executable
6 "%NDK_ROOT%prebuilt/%NDK_WIN_HOST%/bin/make.exe" -f "%NDK_ROOT%build/core/build-local.mk" SHELL=cmd %*
ndk-gdb-py.cmd 2 rem This is a Windows cmd.exe script used to invoke the NDK-specific Python executable
8 "%NDK_ROOT%prebuilt/%NDK_WIN_HOST%/bin/python.exe" -u "%~dp0ndk-gdb.py" %*

Completed in 640 milliseconds

1 2 3 4 5 6 7 8 91011>>