Home
last modified time | relevance | path

Searched refs:base_path (Results 1 – 15 of 15) sorted by relevance

/aosp12/bionic/tools/versioner/src/
H A DDeclarationDatabase.h138 void dump(const std::string& base_path = "", FILE* out = stdout, unsigned indent = 0) const {
150 fprintf(out, "@ %s:%u:%u", StripPrefix(location.filename, base_path).str().c_str(),
181 void dump(const std::string& base_path = "", FILE* out = stdout) const {
193 it.second.dump(base_path, out, 4);
206 void dump(const std::string& base_path = "", FILE* out = stdout) const {
209 pair.second.dump(base_path, out);
/aosp12/system/core/libmodprobe/
H A Dlibmodprobe.cpp55 bool Modprobe::ParseDepCallback(const std::string& base_path, in ParseDepCallback() argument
63 prefix = base_path + "/"; in ParseDepCallback()
75 prefix = base_path + "/"; in ParseDepCallback()
321 for (const auto& base_path : base_paths) { in Modprobe() local
323 ParseCfg(base_path + "/modules.alias", alias_callback); in Modprobe()
325 auto dep_callback = std::bind(&Modprobe::ParseDepCallback, this, base_path, _1); in Modprobe()
326 ParseCfg(base_path + "/modules.dep", dep_callback); in Modprobe()
329 ParseCfg(base_path + "/modules.softdep", softdep_callback); in Modprobe()
332 ParseCfg(base_path + "/" + load_file, load_callback); in Modprobe()
335 ParseCfg(base_path + "/modules.options", options_callback); in Modprobe()
[all …]
/aosp12/frameworks/compile/slang/lit-tests/
H A Dlit.cfg16 config.base_path = os.getenv('ANDROID_BUILD_TOP')
24 config.test_exec_root = os.path.join(config.base_path, 'out', 'tests', 'slang', 'lit-tests')
51 …('rs-filecheck-wrapper.sh', 'RS_FILECHECK_WRAPPER', os.path.join(config.base_path, 'frameworks', '…
52 …filecheck-wrapper.sh', 'SCRIPTC_FILECHECK_WRAPPER', os.path.join(config.base_path, 'frameworks', '…
55 config.slang_includes = "-I " + os.path.join(config.base_path, 'frameworks', 'rs', 'script_api', 'i…
56 … + "-I " + os.path.join(config.base_path, 'external', 'clang', 'lib', 'Headers')
/aosp12/hardware/interfaces/boot/1.1/default/boot_control/
H A Dlibboot_control.cpp128 std::string base_path = control->misc_device(); in InitDefaultBootloaderControl() local
129 size_t last_path_sep = base_path.rfind('/'); in InitDefaultBootloaderControl()
133 base_path = base_path.substr(0, last_path_sep + 1) + "boot"; in InitDefaultBootloaderControl()
137 std::string partition_path = base_path + kSlotSuffixes[slot]; in InitDefaultBootloaderControl()
/aosp12/build/make/tools/releasetools/
H A Dtest_utils.py246 base_path = os.path.dirname(os.path.realpath(__file__)) variable
247 for dirpath, _, files in os.walk(base_path):
249 if dirpath == base_path and re.match('test_.*\\.py$', fn):
/aosp12/art/tools/
H A Drun-libcore-tests.py120 base_path = (ANDROID_PRODUCT_OUT + "/../..") if ANDROID_PRODUCT_OUT else "out/target"
121 base_path = os.path.normpath(base_path) # Normalize ".." components for readability.
/aosp12/frameworks/native/libs/vr/libpdx_default_transport/
H A Dpdx_tool.cpp106 void CallOnAllFiles(CallbackType callback, const std::string& base_path) { in CallOnAllFiles() argument
108 nftw(base_path.c_str(), callback, kMaxDepth, FTW_PHYS); in CallOnAllFiles()
/aosp12/hardware/qcom/sm7250/display/sdm/libs/core/drm/
H A Dhw_peripheral_drm.cpp793 DisplayError HWPeripheralDRM::GetPanelBrightnessBasePath(std::string *base_path) { in GetPanelBrightnessBasePath() argument
794 if (!base_path) { in GetPanelBrightnessBasePath()
804 *base_path = brightness_base_path_; in GetPanelBrightnessBasePath()
H A Dhw_peripheral_drm.h75 virtual DisplayError GetPanelBrightnessBasePath(std::string *base_path);
H A Dhw_device_drm.h131 virtual DisplayError GetPanelBrightnessBasePath(std::string *base_path) { in GetPanelBrightnessBasePath() argument
/aosp12/system/core/libmodprobe/include/modprobe/
H A Dmodprobe.h53 bool ParseDepCallback(const std::string& base_path, const std::vector<std::string>& args);
/aosp12/hardware/qcom/sm7250/display/sdm/libs/core/
H A Dhw_interface.h131 virtual DisplayError GetPanelBrightnessBasePath(std::string *base_path) = 0;
/aosp12/system/core/fs_mgr/libfiemap/
H A Dfiemap_writer_test.cpp302 static string ReadSplitFiles(const std::string& base_path, size_t num_files) { in ReadSplitFiles() argument
305 std::string path = base_path + android::base::StringPrintf(".%04d", i); in ReadSplitFiles()
/aosp12/system/core/fs_mgr/libsnapshot/
H A Dsnapshot.cpp2066 std::string base_path; in MapPartitionWithSnapshot() local
2067 if (!CreateLogicalPartition(params, &base_path)) { in MapPartitionWithSnapshot()
2075 paths->target_device = base_path; in MapPartitionWithSnapshot()
2131 source_device_path = base_path; in MapPartitionWithSnapshot()
/aosp12/frameworks/native/cmds/installd/
H A DInstalldNativeService.cpp1156 auto base_path = create_data_misc_ce_rollback_base_path(volume_uuid, user); in destroyCeSnapshotsNotSpecified() local
1158 std::unique_ptr<DIR, decltype(&closedir)> dir(opendir(base_path.c_str()), closedir); in destroyCeSnapshotsNotSpecified()
1160 return error(-1, "Failed to open rollback base dir " + base_path); in destroyCeSnapshotsNotSpecified()