HomeSort by relevance Sort by last modified time
    Searched full:getcwd (Results 26 - 50 of 1235) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/lldb/test/functionalities/load_unload/
TestLoadUnload.py 40 new_dir = os.path.join(os.getcwd(), "hidden")
42 old_dylib = os.path.join(os.getcwd(), dylibName)
45 exe = os.path.join(os.getcwd(), "a.out")
53 self.runCmd("target modules search-paths add %s %s" % (os.getcwd(), new_dir))
60 substrs = [os.getcwd(), new_dir])
62 self.expect("target modules search-paths query %s" % os.getcwd(), "Image search path successfully transformed",
90 exe = os.path.join(os.getcwd(), "a.out")
99 new_dir = os.path.join(os.getcwd(), special_dir)
101 old_dylib = os.path.join(os.getcwd(), dylibName)
103 old_dSYM = os.path.join(os.getcwd(), dsymName
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/lib/gcc/x86_64-linux/4.6/include/ssp/
unistd.h 45 #undef getcwd macro
73 (char *__buf, size_t __size), getcwd);
76 getcwd (char *__buf, size_t __size) function
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/lib/gcc/x86_64-linux/4.8/include/ssp/
unistd.h 45 #undef getcwd macro
73 (char *__buf, size_t __size), getcwd);
76 getcwd (char *__buf, size_t __size) function
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/include/ssp/
unistd.h 45 #undef getcwd macro
73 (char *__buf, size_t __size), getcwd);
76 getcwd (char *__buf, size_t __size) function
  /external/deqp/android/scripts/
launch.py 11 curDir = os.getcwd()
  /external/linux-tools-perf/perf-3.12.0/tools/perf/util/
abspath.c 8 if (getcwd(cwd, PATH_MAX) == NULL)
  /ndk/tests/device/whole-static-libs/jni/
main.c 14 sprintf(buf, "%s/libbar.so", getcwd(NULL, 0));
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/tests/
test_archive_util.py 74 old_dir = os.getcwd()
87 old_dir = os.getcwd()
124 old_dir = os.getcwd()
139 old_dir = os.getcwd()
153 old_dir = os.getcwd()
164 old_dir = os.getcwd()
179 old_dir = os.getcwd()
193 old_dir = os.getcwd()
261 old_dir = os.getcwd()
284 current_dir = os.getcwd()
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/tests/
test_archive_util.py 74 old_dir = os.getcwd()
87 old_dir = os.getcwd()
124 old_dir = os.getcwd()
139 old_dir = os.getcwd()
153 old_dir = os.getcwd()
164 old_dir = os.getcwd()
179 old_dir = os.getcwd()
193 old_dir = os.getcwd()
261 old_dir = os.getcwd()
284 current_dir = os.getcwd()
    [all...]
  /external/lldb/test/functionalities/inferior-crashing/
TestInferiorCrashing.py 110 exe = os.path.join(os.getcwd(), "a.out")
123 exe = os.path.join(os.getcwd(), "a.out")
130 process = target.LaunchSimple(None, None, os.getcwd())
146 exe = os.path.join(os.getcwd(), "a.out")
158 exe = os.path.join(os.getcwd(), "a.out")
173 exe = os.path.join(os.getcwd(), "a.out")
203 exe = os.path.join(os.getcwd(), "a.out")
214 exe = os.path.join(os.getcwd(), "a.out")
  /external/lldb/test/functionalities/inferior-crashing/recursive-inferior/
TestRecursiveInferior.py 110 exe = os.path.join(os.getcwd(), "a.out")
127 exe = os.path.join(os.getcwd(), "a.out")
134 process = target.LaunchSimple(None, None, os.getcwd())
150 exe = os.path.join(os.getcwd(), "a.out")
162 exe = os.path.join(os.getcwd(), "a.out")
174 exe = os.path.join(os.getcwd(), "a.out")
202 exe = os.path.join(os.getcwd(), "a.out")
220 exe = os.path.join(os.getcwd(), "a.out")
  /external/lldb/test/functionalities/process_attach/
TestProcessAttach.py 49 exe = os.path.join(os.getcwd(), "a.out")
66 exe = os.path.join(os.getcwd(), "a.out")
  /external/lldb/test/lang/objc/objc-ivar-stripped/
TestObjCIvarStripped.py 30 exe = os.path.join(os.getcwd(), "a.out.stripped")
38 process = target.LaunchSimple (None, None, os.getcwd())
  /external/lldb/test/python_api/lldbutil/frame/
TestFrameUtils.py 28 exe = os.path.join(os.getcwd(), "a.out")
37 process = target.LaunchSimple(None, None, os.getcwd())
  /external/lldb/test/python_api/lldbutil/process/
TestPrintStackTraces.py 31 exe = os.path.join(os.getcwd(), "a.out")
40 process = target.LaunchSimple(["abc", "xyz"], None, os.getcwd())
  /external/lldb/test/python_api/process/io/
TestProcessIO.py 31 self.exe = os.path.join(os.getcwd(), "process_io")
41 process = target.LaunchSimple(None, None, os.getcwd())
  /external/lldb/test/source-manager/
TestSourceManager.py 46 exe = os.path.join(os.getcwd(), "a.out")
53 process = target.LaunchSimple(None, None, os.getcwd())
86 exe = os.path.join(os.getcwd(), "a.out")
102 self.runCmd("settings set target.source-map %s %s" % (os.getcwd(), os.path.join(os.getcwd(), "hidden")))
105 substrs = [os.getcwd(), os.path.join(os.getcwd(), "hidden")])
113 exe = os.path.join(os.getcwd(), "a.out")
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_py_compile.py 16 self.cwd_drive = os.path.splitdrive(os.getcwd())[0]
38 cwd = os.getcwd()
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_py_compile.py 16 self.cwd_drive = os.path.splitdrive(os.getcwd())[0]
38 cwd = os.getcwd()
  /external/lldb/test/functionalities/process_launch/
TestProcessLaunch.py 36 exe = os.path.join (os.getcwd(), "a.out")
41 in_file = os.path.join (os.getcwd(), "input-file.txt")
42 out_file = os.path.join (os.getcwd(), "output-test.out")
43 err_file = os.path.join (os.getcwd(), "output-test.err")
132 exe = os.path.join (os.getcwd(), "a.out")
139 my_working_dir_path = os.path.join(os.getcwd(), mywd)
  /external/lldb/test/functionalities/inferior-assert/
TestInferiorAssert.py 90 exe = os.path.join(os.getcwd(), "a.out")
107 exe = os.path.join(os.getcwd(), "a.out")
114 process = target.LaunchSimple(None, None, os.getcwd())
130 exe = os.path.join(os.getcwd(), "a.out")
142 exe = os.path.join(os.getcwd(), "a.out")
149 target.LaunchSimple(None, None, os.getcwd())
187 exe = os.path.join(os.getcwd(), "a.out")
194 target.LaunchSimple(None, None, os.getcwd())
208 exe = os.path.join(os.getcwd(), "a.out")
216 target.LaunchSimple(None, None, os.getcwd())
    [all...]
  /external/lldb/test/python_api/thread/
TestThreadAPI.py 123 exe = os.path.join(os.getcwd(), "a.out")
133 process = target.LaunchSimple(None, None, os.getcwd())
145 exe = os.path.join(os.getcwd(), "a.out")
155 process = target.LaunchSimple(None, None, os.getcwd())
170 exe = os.path.join(os.getcwd(), exe_name)
180 process = target.LaunchSimple(None, None, os.getcwd())
203 exe = os.path.join(os.getcwd(), exe_name)
213 process = target.LaunchSimple(None, None, os.getcwd())
244 exe = os.path.join(os.getcwd(), exe_name)
254 process = target.LaunchSimple(None, None, os.getcwd())
    [all...]
  /external/lldb/test/python_api/lldbutil/iter/
TestLLDBIterator.py 41 exe = os.path.join(os.getcwd(), "a.out")
50 process = target.LaunchSimple(None, None, os.getcwd())
72 exe = os.path.join(os.getcwd(), "a.out")
101 exe = os.path.join(os.getcwd(), "a.out")
110 process = target.LaunchSimple(None, None, os.getcwd())
  /external/lldb/test/api/check_public_api_headers/
TestPublicAPIHeaders.py 35 temp = os.path.join(os.getcwd(), self.template)
53 src = os.path.join(os.getcwd(), self.source)
62 exe = os.path.join(os.getcwd(), exe_name)
  /external/lldb/test/lang/c/global_variables/
TestGlobalVariables.py 34 self.runCmd("settings set target.env-vars " + self.dylibPath + "=" + os.environ["LD_LIBRARY_PATH"] + ":" + os.getcwd())
36 self.runCmd("settings set target.env-vars " + self.dylibPath + "=" + os.getcwd())
41 exe = os.path.join(os.getcwd(), "a.out")

Completed in 7826 milliseconds

12 3 4 5 6 7 8 91011>>