Searched refs:return_code (Results 1 - 25 of 32) sorted by relevance

12

/fuchsia/zircon/system/utest/race-tests/
H A Drace-tests.cpp32 // process -- as reported by zx_object_get_info()'s return_code field --
54 EXPECT_TRUE(info1.return_code == 100 ||
55 info1.return_code == 200);
64 EXPECT_EQ(info1.return_code, info2.return_code);
/fuchsia/zircon/system/dev/misc/tpm/
H A Dtpm-commands.h33 uint32_t return_code; member in struct:tpm_resp_header
H A Dtpm.cpp75 resp->hdr.return_code != htobe32(TPM_SUCCESS)) {
99 resp.hdr.return_code != htobe32(TPM_SUCCESS)) {
/fuchsia/zircon/system/utest/spawn/
H A Dlauncher.c31 return proc_info.return_code;
/fuchsia/zircon/system/dev/tee/optee/
H A Doptee-message.h38 uint32_t return_code; member in struct:optee::MessageHeader
226 uint32_t return_code() const { return header()->return_code; } function in class:OpenSessionMessage
287 void set_return_code(uint32_t return_code) { argument
289 header()->return_code = return_code;
H A Doptee-smc.h117 static constexpr bool IsReturnRpc(uint32_t return_code) { argument
118 return (return_code != tee::kSmc32ReturnUnknownFunction) &&
119 ((return_code & kReturnRpcPrefixMask) == kReturnRpcPrefix);
125 static constexpr uint32_t GetRpcFunctionCode(uint32_t return_code) { argument
126 ZX_DEBUG_ASSERT_MSG(IsReturnRpc(return_code), "Return code must contain the RPC prefix!");
127 return return_code & kReturnRpcFunctionMask;
H A Doptee-client.cpp144 out_session->return_code = TEEC_ERROR_BAD_PARAMETERS;
160 out_session->return_code = TEEC_ERROR_COMMUNICATION;
167 out_session->return_code = message.return_code();
173 out_session->return_code,
H A Doptee-message.cpp88 header()->return_code = TEEC_ERROR_BAD_PARAMETERS;
/fuchsia/zircon/system/ulib/runtests-utils/
H A Dposix-run-test.cpp113 int return_code = WEXITSTATUS(status); local
115 return_code ? FAILED_NONZERO_RETURN_CODE : SUCCESS;
116 return fbl::make_unique<Result>(path, launch_status, return_code);
H A Dfuchsia-run-test.cpp339 if (proc_info.return_code == 0) {
344 path, proc_info.return_code);
346 proc_info.return_code);
367 if (result->return_code == 0) {
377 if (result->return_code == 0) {
398 if (result->return_code == 0) {
409 if (result->return_code == 0) {
421 if (result->return_code == 0) {
438 if (result->return_code == 0) {
453 if (result->return_code
[all...]
H A Ddiscover-and-run-tests.cpp325 result->name.c_str(), result->return_code);
/fuchsia/zircon/system/public/zircon/device/
H A Dtee.h71 uint32_t return_code; member in struct:tee_ioctl_session
/fuchsia/zircon/system/utest/vdso-variant/
H A Dvdso-variant.c59 return info.return_code;
/fuchsia/zircon/system/ulib/runtests-utils/include/runtests-utils/
H A Druntests-utils.h58 int64_t return_code; // Only valid if launch_status == SUCCESS or FAILED_NONZERO_RETURN_CODE. member in struct:runtests::Result
66 : name(name_arg), launch_status(launch_status_arg), return_code(return_code_arg) {}
/fuchsia/zircon/system/utest/biotime/
H A Dbiotime-test.cpp38 ASSERT_EQ(proc_info.return_code, 0);
/fuchsia/zircon/kernel/arch/arm64/hypervisor/
H A Del2.S212 .macro guest_exit return_code
216 mov x9, \return_code
230 .macro entry_sync return_code
232 guest_exit \return_code
254 .macro entry_irq return_code
256 guest_exit \return_code
/fuchsia/zircon/system/dev/bluetooth/bt-hci-broadcom/
H A Dbt-hci-broadcom.c47 uint8_t return_code; member in struct:__anon222
182 if (event->return_code != 0) {
183 zxlogf(ERROR, "bcm_hci_send_command got command complete error %u\n", event->return_code);
/fuchsia/zircon/system/ulib/tee-client-api/
H A Dtee-client-api.c122 result = session_result.return_code;
/fuchsia/zircon/system/uapp/namespace/
H A Dnamespace.c130 return info.return_code;
/fuchsia/zircon/system/utest/launchpad/
H A Dlaunchpad.c111 EXPECT_EQ(info.return_code, 0, "shell exit status");
/fuchsia/zircon/system/utest/stdio/
H A Dstdio.c141 ASSERT_EQ(proc_info.return_code, 0, "lsusb must return 0");
/fuchsia/zircon/system/public/zircon/syscalls/
H A Dobject.h82 int64_t return_code; member in struct:zx_info_process
88 // If true, the process has exited and |return_code| is valid.
/fuchsia/zircon/system/uapp/aslr-analysis/
H A Dmain.cpp256 return proc_info.return_code;
/fuchsia/zircon/system/ulib/fs-management/
H A Dlaunch.cpp117 if (!info.exited || info.return_code != 0) {
/fuchsia/zircon/system/utest/runtests-utils/
H A Dfuchsia-run-test.cpp158 EXPECT_EQ(0, result->return_code);

Completed in 124 milliseconds

12