Home
last modified time | relevance | path

Searched refs:exit_code (Results 1 – 10 of 10) sorted by relevance

/test/vts/drivers/shell/
DShellDriver.cpp63 result->exit_code = errno; in ExecShellCommandPopen()
76 result->exit_code = -1; in ExecShellCommandPopen()
87 result->exit_code = pclose(output_fp) / 256; in ExecShellCommandPopen()
111 int exit_code = system(ss.str().c_str()) / 256; in ExecShellCommandNohup() local
112 result->exit_code = exit_code; in ExecShellCommandNohup()
144 int exit_code = result->exit_code; in ExecShellCommand() local
145 responseMessage->add_exit_code(result->exit_code); in ExecShellCommand()
148 return exit_code; in ExecShellCommand()
DShellDriver.h32 int exit_code; member
/test/vts-testcase/security/poc/host/
DSecurityPoCKernelTest.py184 exit_code = result[const.EXIT_CODE]
185 asserts.skipIf(exit_code == config.ExitCode.POC_TEST_SKIP,
187 asserts.assertFalse(exit_code == config.ExitCode.POC_TEST_FAIL,
/test/vts/utils/python/common/
Dcmd_utils.py144 stdout, stderr, exit_code = zip(*results)
145 return {STDOUT: stdout, STDERR: stderr, EXIT_CODE: exit_code}
/test/vts/testcases/template/llvmfuzzer_test/
Dllvmfuzzer_test.py243 exit_code = result[const.EXIT_CODE]
244 if exit_code == config.ExitCode.FUZZER_TEST_FAIL:
247 elif exit_code != config.ExitCode.FUZZER_TEST_PASS:
/test/vts-testcase/fuzz/template/libfuzzer_test/
Dlibfuzzer_test.py272 exit_code = result[const.EXIT_CODE]
273 if exit_code == config.ExitCode.FUZZER_TEST_FAIL:
277 elif exit_code != config.ExitCode.FUZZER_TEST_PASS:
/test/vts/runners/host/tcp_client/
Dvts_tcp_client.py454 exit_code = -1
467 exit_code = resp.exit_code
473 const.EXIT_CODE: exit_code
/test/vts/agents/hal/
DAgentRequestHandler.cpp441 for (const auto& exit_code : driver_control_response_message.exit_code()) { local
442 system_control_response_message->add_exit_code(exit_code);
/test/vts/proto/
DVtsDriverControlMessage.proto142 repeated int32 exit_code = 1003; field
DAndroidSystemControlMessage.proto181 repeated int32 exit_code = 2003; field