Searched refs:error_msg (Results 1 – 6 of 6) sorted by relevance
/bionic/tests/ |
D | utils.h | 162 const std::string* error_msg = nullptr) { 165 if (error_msg == nullptr) { 166 error_msg = &error; 168 ASSERT_EQ(pid, TEMP_FAILURE_RETRY(waitpid(pid, &status, 0))) << *error_msg; 170 ASSERT_TRUE(WIFEXITED(status)) << *error_msg; 171 ASSERT_EQ(expected_exit_status, WEXITSTATUS(status)) << *error_msg; 173 ASSERT_TRUE(WIFSIGNALED(status)) << *error_msg; 174 ASSERT_EQ(-expected_exit_status, WTERMSIG(status)) << *error_msg; 244 std::string error_msg("Test output:\n" + output_); in Run() 245 AssertChildExited(pid, expected_exit_status, &error_msg); in Run()
|
D | signal_test.cpp | 786 static constexpr char error_msg[] = in TEST() local 802 << "rt_tgsigqueueinfo failed: " << strerror(errno) << error_msg; in TEST() 805 << error_msg; in TEST() 809 << "rt_tgsigqueueinfo failed: " << strerror(errno) << error_msg; in TEST() 812 << error_msg; in TEST()
|
/bionic/linker/ |
D | linker_config_test.cpp | 144 std::string error_msg; in run_linker_config_smoke_test() local 149 &error_msg)) << error_msg; in run_linker_config_smoke_test() 151 ASSERT_TRUE(error_msg.empty()); in run_linker_config_smoke_test() 253 std::string error_msg; in TEST() local 258 &error_msg)); in TEST() 262 error_msg); in TEST() 297 std::string error_msg; in TEST() local 303 &error_msg)) << error_msg; in TEST() 305 ASSERT_TRUE(config != nullptr) << error_msg; in TEST() 306 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() 454 std::string* error_msg) { in read_binary_config() argument 458 if (!parse_config_file(ld_config_file_path, binary_realpath, &property_map, error_msg)) { in read_binary_config() 482 *error_msg = std::string("error reading version file \"") + in read_binary_config() 496 *error_msg = std::string("invalid version \"") + version_file + "\": \"" + content +"\""; in read_binary_config() 516 *error_msg = create_error_msg(ld_config_file_path, in read_binary_config() [all …]
|
D | linker_config.h | 165 std::string* error_msg);
|
D | linker.cpp | 4132 std::string error_msg; in init_default_namespaces() local 4141 &error_msg)) { in init_default_namespaces() 4142 if (!error_msg.empty()) { in init_default_namespaces() 4146 error_msg.c_str()); in init_default_namespaces()
|