Lines Matching refs:executable_path
3411 // Given an `executable_path` starting with "/apex/<name>/bin/, return
3414 static std::string get_ld_config_file_apex_path(const char* executable_path) {
3415 std::vector<std::string> paths = android::base::Split(executable_path, "/");
3439 bool is_linker_config_expected(const char* executable_path) {
3446 if (strcmp(executable_path, "/system/bin/init") == 0) {
3455 static std::string get_ld_config_file_path(const char* executable_path) {
3465 std::string path = get_ld_config_file_apex_path(executable_path);
3471 path.c_str(), executable_path);
3483 if (is_linker_config_expected(executable_path)) {
3497 std::vector<android_namespace_t*> init_default_namespaces(const char* executable_path) {
3523 std::string ld_config_file_path = get_ld_config_file_path(executable_path);
3527 if (!Config::read_binary_config(ld_config_file_path.c_str(), executable_path, g_is_asan, g_is_hwasan,
3531 ld_config_file_path.c_str(), executable_path, error_msg.c_str());