Home
last modified time | relevance | path

Searched refs:cwd (Results 1 – 17 of 17) sorted by relevance

/system/bt/gd/os/host/
Dparameter_provider.cc30 char cwd[PATH_MAX] = {}; in ConfigFilePath() local
31 if (getcwd(cwd, sizeof(cwd)) == nullptr) { in ConfigFilePath()
35 return std::string(cwd) + "/bt_config.conf"; in ConfigFilePath()
/system/core/adb/coverage/
Dreport.sh13 /proc/self/cwd/system/core/adb \
20 /proc/self/cwd/system/core/adb \
Dshow.sh8 BASE_PATH=/proc/self/cwd/system/core/adb
/system/core/adb/
Dadb_utils.cpp70 char* cwd = getcwd(nullptr, 0); in getcwd() local
71 if (cwd != nullptr) *s = cwd; in getcwd()
72 free(cwd); in getcwd()
73 return (cwd != nullptr); in getcwd()
Dadb_utils.h34 bool getcwd(std::string* cwd);
/system/bt/gd/
Dsetup.py41 completed_process = subprocess.run(cmd, cwd=os.getcwd())
49 subprocess.run(cmd, cwd=acts_framework_dir, check=True)
/system/testing/gtest_extras/
DOptions.cpp170 char* cwd = getcwd(nullptr, 0); in SetXmlFile() local
171 if (cwd == nullptr) { in SetXmlFile()
178 xml_file = std::string(cwd) + '/' + xml_file; in SetXmlFile()
179 free(cwd); in SetXmlFile()
/system/timezone/
Ddownload-iana-files.py133 ftp.cwd('tz/releases')
Dupdate-tzdata.py245 subprocess.check_call([update_test_files_script], cwd=testing_data_dir)
/system/bt/test/
Drun_host_unit_tests.py146 p = subprocess.Popen(build_cmd, cwd=ANDROID_BUILD_TOP, env=os.environ.copy())
/system/bt/gd/cert/
Dgd_base_test.py81 cwd=get_gd_root(),
Dgd_device.py199 cwd=get_gd_root(),
351 cwd=os.path.join(get_gd_root()))
363 cwd=os.path.join(get_gd_root()))
/system/sepolicy/prebuilts/api/29.0/public/
Dperfprofd.te98 # use the fallback cwd code, do not spam the log. But ensure this is correctly
/system/sepolicy/prebuilts/api/28.0/public/
Dperfprofd.te96 # use the fallback cwd code, do not spam the log. But ensure this is correctly
/system/testing/gtest_extras/tests/
DOptionsTest.cpp492 char* cwd = getcwd(nullptr, 0); in TEST_F() local
493 std::string expected_file(cwd); in TEST_F()
495 free(cwd); in TEST_F()
/system/libufdt/utils/src/
Dmkdtboimg.py794 cwd = os.getcwd()
796 dest='dtbdir', default=cwd)
/system/extras/simpleperf/scripts/
Dtest_monitor.py142 self.test_proc = subprocess.Popen(args, cwd=self.test_dir, env=env)