Searched refs:error_msg (Results 1 – 6 of 6) sorted by relevance
/bionic/linker/ |
D | linker_config_test.cpp | 147 std::string error_msg; in run_linker_config_smoke_test() local 152 &error_msg)) << error_msg; in run_linker_config_smoke_test() 154 ASSERT_TRUE(error_msg.empty()); in run_linker_config_smoke_test() 256 std::string error_msg; in TEST() local 261 &error_msg)); in TEST() 265 error_msg); in TEST() 300 std::string error_msg; in TEST() local 306 &error_msg)) << error_msg; in TEST() 308 ASSERT_TRUE(config != nullptr) << error_msg; in TEST() 309 ASSERT_TRUE(error_msg.empty()) << error_msg; in TEST()
|
D | linker_config.cpp | 73 int next_token(std::string* name, std::string* value, std::string* error_msg) { in next_token() argument 102 *error_msg = std::string("invalid format: ") + in next_token() 185 std::string* error_msg) { in parse_config_file() argument 189 *error_msg = std::string("error reading file \"") + in parse_config_file() 287 *error_msg = create_error_msg(ld_config_file_path, in parse_config_file() 466 std::string* error_msg) { in read_binary_config() argument 470 if (!parse_config_file(ld_config_file_path, binary_realpath, &property_map, error_msg)) { in read_binary_config() 494 *error_msg = std::string("error reading version file \"") + in read_binary_config() 508 *error_msg = std::string("invalid version \"") + version_file + "\": \"" + content +"\""; in read_binary_config() 528 *error_msg = create_error_msg(ld_config_file_path, in read_binary_config() [all …]
|
D | linker_config.h | 171 std::string* error_msg);
|
D | linker.cpp | 3453 std::string error_msg; in init_default_namespaces() local 3462 &error_msg)) { in init_default_namespaces() 3463 if (!error_msg.empty()) { in init_default_namespaces() 3467 error_msg.c_str()); in init_default_namespaces()
|
/bionic/tests/ |
D | utils.h | 177 const std::string* error_msg = nullptr) { 180 if (error_msg == nullptr) { 181 error_msg = &error; 183 ASSERT_EQ(pid, TEMP_FAILURE_RETRY(waitpid(pid, &status, 0))) << *error_msg; 185 ASSERT_TRUE(WIFEXITED(status)) << *error_msg; 186 ASSERT_EQ(expected_exit_status, WEXITSTATUS(status)) << *error_msg; 188 ASSERT_TRUE(WIFSIGNALED(status)) << *error_msg; 189 ASSERT_EQ(-expected_exit_status, WTERMSIG(status)) << *error_msg; 259 std::string error_msg("Test output:\n" + output_); in Run() 260 AssertChildExited(pid, expected_exit_status, &error_msg); in Run()
|
D | signal_test.cpp | 775 static constexpr char error_msg[] = in TEST() local 791 << "rt_tgsigqueueinfo failed: " << strerror(errno) << error_msg; in TEST() 794 << error_msg; in TEST() 798 << "rt_tgsigqueueinfo failed: " << strerror(errno) << error_msg; in TEST() 801 << error_msg; in TEST()
|