Lines Matching refs:c_str
135 eth.SetArgs({ path_to_linker, helper.c_str(), nullptr }); in TEST()
136 …eth.Run([&]() { execve(path_to_linker, eth.GetArgs(), eth.GetEnv()); }, 0, expected_output.c_str()… in TEST()
151 eth.SetArgs({ path_to_linker, helper.c_str(), nullptr }); in TEST()
152 …eth.Run([&]() { execve(path_to_linker, eth.GetArgs(), eth.GetEnv()); }, 0, expected_output.c_str()… in TEST()
162 …]() { execve(path_to_linker, eth.GetArgs(), eth.GetEnv()); }, EXIT_FAILURE, error_message.c_str()); in TEST()
171 chmod(helper.c_str(), 0755); // TODO: "x" lost in CTS, b/34945607 in TEST()
173 eth.SetArgs({ helper.c_str(), nullptr }); in TEST()
174 eth.Run([&]() { execve(helper.c_str(), eth.GetArgs(), eth.GetEnv()); }, 0, nullptr); in TEST()
183 chmod(helper.c_str(), 0755); // TODO: "x" lost in CTS, b/34945607 in TEST()
185 eth.SetArgs({ helper.c_str(), nullptr }); in TEST()
186 eth.Run([&]() { execve(helper.c_str(), eth.GetArgs(), eth.GetEnv()); }, 0, nullptr); in TEST()
198 chmod(helper.c_str(), 0755); in TEST()
200 eth.SetArgs({ helper.c_str(), nullptr }); in TEST()
201 eth.Run([&]() { execve(helper.c_str(), eth.GetArgs(), eth.GetEnv()); }, 0, "12345"); in TEST()
210 chmod(helper.c_str(), 0755); in TEST()
212 eth.SetArgs({ helper.c_str(), nullptr }); in TEST()
213 eth.SetEnv({ env.c_str(), nullptr }); in TEST()
219 eth.Run([&]() { execve(helper.c_str(), eth.GetArgs(), eth.GetEnv()); }, 0, "54321"); in TEST()
240 chmod(helper.c_str(), 0755); in TEST()
242 eth.SetArgs({ helper.c_str(), nullptr }); in TEST()
243 …eth.Run([&]() { execve(helper.c_str(), eth.GetArgs(), eth.GetEnv()); }, EXIT_FAILURE, error_messag… in TEST()
284 chmod(helper.c_str(), 0755); in TEST()
286 eth.SetArgs({ helper.c_str(), nullptr }); in TEST()
287 eth.SetEnv({ env.c_str(), nullptr }); in TEST()
288 eth.Run([&]() { execve(helper.c_str(), eth.GetArgs(), eth.GetEnv()); }, 0, "12345"); in TEST()
307 chmod(helper.c_str(), 0755); in TEST()
309 eth.SetArgs({ helper.c_str(), nullptr }); in TEST()
310 eth.SetEnv({ env.c_str(), env2.c_str(), nullptr }); in TEST()
311 eth.Run([&]() { execve(helper.c_str(), eth.GetArgs(), eth.GetEnv()); }, 0, "54321"); in TEST()
337 chmod(helper.c_str(), 0755); in TEST()
339 eth.SetArgs({ helper.c_str(), nullptr }); in TEST()
340 eth.SetEnv({ env.c_str(), nullptr }); in TEST()
341 …eth.Run([&]() { execve(helper.c_str(), eth.GetArgs(), eth.GetEnv()); }, EXIT_FAILURE, error_messag… in TEST()
350 eth.SetArgs({ "readelf", "-SW", path.c_str(), nullptr }); in RelocationsTest()