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

1 2 3 4 5 6 7 8 91011>>

  /bionic/tests/
getcwd_test.cpp 23 TEST(getcwd, auto_full) {
26 char* cwd = getcwd(NULL, 0);
33 TEST(getcwd, auto_reasonable) {
36 char* cwd = getcwd(NULL, PATH_MAX);
43 TEST(getcwd, auto_too_small) {
46 char* cwd = getcwd(NULL, 1);
51 TEST(getcwd, auto_too_large) {
54 char* cwd = getcwd(NULL, static_cast<size_t>(-1));
59 TEST(getcwd, manual_too_small) {
63 char* cwd = getcwd(tiny_buf, sizeof(tiny_buf))
    [all...]
  /external/lldb/test/functionalities/process_launch/
print_cwd.cpp 9 fprintf(stdout, "stdout: %s\n", getcwd(buffer, 1024));
10 fprintf(stderr, "stderr: %s\n", getcwd(buffer, 1024));
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/chromium_org/tools/gyp/test/variables/commands/repeated_multidir/
print_cwd_basename.py 10 print os.path.basename(os.getcwd())
  /external/chromium_org/chrome/test/chromeos/autotest/files/client/deps/page_cycler_dep/
page_cycler_dep.py 19 pwd = os.getcwd()
  /external/chromium_org/chrome/test/chromeos/autotest/files/client/deps/perf_data_dep/
perf_data_dep.py 21 pwd = os.getcwd()
  /external/chromium_org/chrome/test/chromeos/autotest/files/client/deps/pyauto_dep/
pyauto_dep.py 21 pwd = os.getcwd()
  /external/chromium_org/chrome/test/chromeos/autotest/files/client/deps/telemetry_dep/
telemetry_dep.py 21 pwd = os.getcwd()
  /external/chromium_org/build/
inverse_depth.py 12 return os.path.relpath(os.getcwd(), os.path.abspath(depth))
  /external/chromium_org/chrome/test/chromeos/autotest/files/client/deps/chrome_test/
chrome_test.py 16 pwd = os.getcwd()
  /external/chromium_org/native_client_sdk/src/libraries/nacl_io/syscalls/
getcwd.c 13 * hook the internal calls to getcwd. However, we need to intercept it here
14 * since gtest call getcwd in a static constructor which general runs before
17 char* getcwd(char* buf, size_t size) { function
  /external/fonttools/MetaTools/
buildChangeLog.py 6 os.path.join(os.getcwd(), sys.argv[0]))))
  /external/lldb/test/functionalities/exec/
TestExec.py 29 source = os.path.join (os.getcwd(), "main.cpp")
30 o_file = os.path.join (os.getcwd(), "main.o")
42 source = os.path.join (os.getcwd(), "main.cpp")
43 o_file = os.path.join (os.getcwd(), "main.o")
44 dsym_path = os.path.join (os.getcwd(), "a.out.dSYM")
53 exe = os.path.join (os.getcwd(), "a.out")
63 process = target.LaunchSimple(None, None, os.getcwd())
  /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...]
  /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")
  /external/chromium_org/third_party/closure_compiler/build/
outputs.py 13 resource_path = os.path.join(os.getcwd(), resource)
  /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/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")
  /external/lldb/test/lang/c/shared_lib/
TestSharedLib.py 44 self.runCmd("settings set target.env-vars " + self.dylibPath + "=" + os.environ["LD_LIBRARY_PATH"] + ":" + os.getcwd())
46 self.runCmd("settings set target.env-vars " + self.dylibPath + "=" + os.getcwd())
50 exe = os.path.join(os.getcwd(), "a.out")
  /external/lldb/test/lang/c/shared_lib_stripped_symbols/
TestSharedLibStrippedSymbols.py 44 self.runCmd("settings set target.env-vars " + self.dylibPath + "=" + os.environ["LD_LIBRARY_PATH"] + ":" + os.getcwd())
46 self.runCmd("settings set target.env-vars " + self.dylibPath + "=" + os.getcwd())
50 exe = os.path.join(os.getcwd(), "a.out")
  /external/deqp/android/scripts/
launch.py 11 curDir = os.getcwd()
  /external/lldb/test/attic/
dotest.pl 36 my $dir = getcwd;
  /external/ltrace/testsuite/ltrace.minor/
count-record.c 38 getcwd (buffer, BUF_SIZE);
  /external/lldb/examples/customization/pwd-cd-and-system/
utils.py 32 Holder.swap(os.getcwd())
34 print "Current working directory: %s" % os.getcwd()
  /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")

Completed in 780 milliseconds

1 2 3 4 5 6 7 8 91011>>