Home
last modified time | relevance | path

Searched refs:current_path (Results 1 – 4 of 4) sorted by relevance

/system/bt/test/
Drun_host_unit_tests.py64 current_path = os.path.abspath(os.getcwd())
65 while current_path and os.path.isdir(current_path):
66 soong_ui_bash_path = os.path.join(current_path, SOONG_UI_BASH)
75 parent_path = os.path.abspath(os.path.join(current_path, os.pardir))
76 if parent_path == current_path:
77 current_path = None
79 current_path = parent_path
/system/core/init/
Dparser.cpp169 std::string current_path = in ParseConfigDir() local
171 files.emplace_back(current_path); in ParseConfigDir()
/system/update_engine/
Domaha_request_action.cc495 string current_path; member
537 data->current_path += string("/") + element; in ParserHandlerStart()
548 if (data->current_path == "/response/app") { in ParserHandlerStart()
566 } else if (data->current_path == "/response/app/updatecheck") { in ParserHandlerStart()
577 } else if (data->current_path == "/response/daystart") { in ParserHandlerStart()
581 } else if (data->current_path == "/response/app/updatecheck/urls/url") { in ParserHandlerStart()
585 } else if (data->current_path == in ParserHandlerStart()
592 } else if (data->current_path == "/response/app/updatecheck/manifest") { in ParserHandlerStart()
596 } else if (data->current_path == in ParserHandlerStart()
614 data->current_path, path_suffix, base::CompareCase::SENSITIVE)) { in ParserHandlerEnd()
[all …]
/system/vold/
DFsCrypt.cpp174 auto const current_path = get_ce_key_current_path(directory_path); in fixate_user_ce_key() local
175 if (to_fix != current_path) { in fixate_user_ce_key()
176 LOG(DEBUG) << "Renaming " << to_fix << " to " << current_path; in fixate_user_ce_key()
177 if (rename(to_fix.c_str(), current_path.c_str()) != 0) { in fixate_user_ce_key()
178 PLOG(WARNING) << "Unable to rename " << to_fix << " to " << current_path; in fixate_user_ce_key()