Home
last modified time | relevance | path

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

/art/tools/jfuzz/
Drun_jfuzz_test_nightly.py38 cwd = os.path.dirname(os.path.realpath(__file__))
39 cmd = [cwd + '/run_jfuzz_test.py']
/art/
Dtest.py67 if subprocess.call(build_command.split(), cwd=ANDROID_BUILD_TOP):
/art/tools/
Dgenerate_cmake_lists.py71 …subprocess.check_output('build/soong/soong_ui.bash --make-mode', shell=True, cwd=ANDROID_BUILD_TOP)
/art/tools/build/
Dvar_cache.py103 cwd=_TOP)
/art/test/
Drun-test1106 cwd=`pwd`
1119 raw_cmd="$cwd/${run} --external-log-tags "${run_args[@]}" $@"
1125 --check-script="$cwd/check" \
1126 --expected-output="$cwd/expected.txt" \
1127 --logfile="$cwd/bisection_log.txt" \
/art/test/115-native-bridge/
Dnativebridge.cc461 char cwd[1024] = {'\0'}; in native_bridge_loadLibrary() local
462 if (getcwd(cwd, sizeof(cwd)) != nullptr) { in native_bridge_loadLibrary()
463 printf("Current working dir: %s\n", cwd); in native_bridge_loadLibrary()
/art/runtime/
Dclass_loader_context_test.cc435 static bool CreateRelativeString(const std::string& in, const char* cwd, std::string* out) { in CreateRelativeString() argument
436 int cwd_len = strlen(cwd); in CreateRelativeString()
437 if (!android::base::StartsWith(in, cwd) || (cwd_len < 1)) { in CreateRelativeString()
440 bool contains_trailing_slash = (cwd[cwd_len - 1] == '/'); in CreateRelativeString()
Doat_file_assistant_test.cc1024 std::string cwd = getcwd(buf, MAXPATHLEN); in MakePathRelative() local
1030 Split(cwd, '/', &cwd_path); in MakePathRelative()