Searched refs:status (Results 1 - 25 of 165) sorted by relevance

1234567

/seL4-test-master/projects/musllibc/src/process/
H A Dwait.c3 pid_t wait(int *status) argument
5 return waitpid((pid_t)-1, status, 0);
H A Dwaitpid.c5 pid_t waitpid(pid_t pid, int *status, int options) argument
7 return syscall_cp(SYS_wait4, pid, status, options, 0);
/seL4-test-master/projects/musllibc/src/unistd/
H A D_exit.c4 _Noreturn void _exit(int status) argument
6 _Exit(status);
H A Dfaccessat.c52 int status; local
54 __syscall(SYS_wait4, pid, &status, __WCLONE, 0);
55 } while (!WIFEXITED(status) && !WIFSIGNALED(status));
56 if (WIFEXITED(status))
57 ret = errors[WEXITSTATUS(status)];
/seL4-test-master/tools/nanopb/tests/enum_minmax/
H A Denumminmax_unittests.c6 int status = 0; local
15 return status;
/seL4-test-master/projects/musllibc/src/linux/
H A Dwait3.c6 pid_t wait3(int *status, int options, struct rusage *usage) argument
8 return wait4(-1, status, options, usage);
H A Dwait4.c6 pid_t wait4(pid_t pid, int *status, int options, struct rusage *usage) argument
8 return syscall(SYS_wait4, pid, status, options, usage);
/seL4-test-master/projects/musllibc/src/stdio/
H A Dpclose.c7 int status, r; local
10 while ((r=__syscall(SYS_wait4, pid, &status, 0, 0)) == -EINTR);
12 return status;
/seL4-test-master/tools/nanopb/tests/enum_to_string/
H A Denum_to_string.c7 int status = 0; local
14 if (status != 0)
17 return status;
/seL4-test-master/tools/nanopb/examples/cmake_simple/
H A Dsimple.c11 bool status; local
31 status = pb_encode(&stream, SimpleMessage_fields, &message);
35 if (!status)
56 status = pb_decode(&stream, SimpleMessage_fields, &message);
59 if (!status)
/seL4-test-master/tools/nanopb/examples/simple/
H A Dsimple.c11 bool status; local
31 status = pb_encode(&stream, SimpleMessage_fields, &message);
35 if (!status)
56 status = pb_decode(&stream, SimpleMessage_fields, &message);
59 if (!status)
/seL4-test-master/tools/seL4/elfloader-tool/src/binaries/efi/
H A Defi_init.c46 unsigned long status; local
62 status = bts->allocate_pool(EFI_LOADER_DATA, map_size, (void **)&memory_map);
64 if (status != EFI_SUCCESS)
65 return status;
67 status = bts->get_memory_map(&map_size, memory_map, &key, &desc_size, &desc_version);
68 if (status == EFI_BUFFER_TOO_SMALL) {
75 if (status != EFI_SUCCESS){
77 return status;
80 status = bts->exit_boot_services(__application_handle, key);
81 return status;
[all...]
/seL4-test-master/tools/nanopb/tests/cxx_descriptor/
H A Dmessage_descriptor.cc15 int status = 0; local
26 if (status != 0) fprintf(stdout, "\n\nSome tests FAILED!\n");
28 return status;
/seL4-test-master/projects/musllibc/src/legacy/
H A Derr.c25 _Noreturn void verr(int status, const char *fmt, va_list ap) argument
28 exit(status);
31 _Noreturn void verrx(int status, const char *fmt, va_list ap) argument
34 exit(status);
53 _Noreturn void err(int status, const char *fmt, ...) argument
57 verr(status, fmt, ap);
61 _Noreturn void errx(int status, const char *fmt, ...) argument
65 verrx(status, fmt, ap);
/seL4-test-master/tools/nanopb/examples/using_union_messages/
H A Ddecode.c47 bool status; local
51 status = pb_decode(&substream, messagetype, dest_struct);
53 return status;
64 bool status = false; local
69 status = decode_unionmessage_contents(&stream, MsgType1_fields, &msg);
75 status = decode_unionmessage_contents(&stream, MsgType2_fields, &msg);
81 status = decode_unionmessage_contents(&stream, MsgType3_fields, &msg);
85 if (!status)
/seL4-test-master/tools/nanopb/tests/fuzztest/
H A Dfuzzstub.c22 bool status; local
26 status = pb_decode(&stream, alltypes_static_AllTypes_fields, msg);
28 if (!status && assert_success)
35 assert(status);
39 return status;
45 bool status; local
53 status = pb_decode(&stream, alltypes_pointer_AllTypes_fields, msg);
56 assert(status);
63 return status;
69 bool status; local
116 bool status; local
166 bool status; local
[all...]
/seL4-test-master/tools/nanopb/tests/regression/issue_253/
H A Dshort_array.c7 int status = 0; local
22 return status;
/seL4-test-master/tools/nanopb/examples/cmake_relpath/
H A Dsimple.c11 bool status; local
32 status = pb_encode(&stream, SimpleMessage_fields, &message);
36 if (!status)
57 status = pb_decode(&stream, SimpleMessage_fields, &message);
60 if (!status)
/seL4-test-master/kernel/src/arch/arm/object/
H A Dinterrupt.c45 exception_t status = Arch_checkIRQ(irq_w); local
46 if (status != EXCEPTION_NONE) {
47 return status;
63 if (lu_ret.status != EXCEPTION_NONE) {
66 return lu_ret.status;
71 status = ensureEmptySlot(destSlot);
72 if (status != EXCEPTION_NONE) {
75 return status;
88 exception_t status = Arch_checkIRQ(irq_w); local
91 if (status !
[all...]
/seL4-test-master/kernel/include/object/
H A Dcap.h10 exception_t status; member in struct:deriveCap_ret
/seL4-test-master/tools/nanopb/tests/oneof/
H A Ddecode_oneof.c15 int status = 0; local
51 return status;
59 int status = 0; local
88 return status;
114 int status = 0; local
118 status = test_oneof_1(&stream, option);
120 if (status != 0)
121 return status;
124 status = test_oneof_2(&stream, option);
126 if (status !
[all...]
/seL4-test-master/tools/nanopb/tests/regression/issue_247/
H A Dpadding.c8 int status = 0; local
30 return status;
/seL4-test-master/kernel/src/arch/riscv/object/
H A Dinterrupt.c57 exception_t status = Arch_checkIRQ(irq_w); local
58 if (status != EXCEPTION_NONE) {
59 return status;
69 if (lu_ret.status != EXCEPTION_NONE) {
72 return lu_ret.status;
77 status = ensureEmptySlot(destSlot);
78 if (status != EXCEPTION_NONE) {
81 return status;
/seL4-test-master/tools/nanopb/tests/anonymous_oneof/
H A Ddecode_oneof.c15 int status = 0; local
51 return status;
77 int status = 0; local
81 status = test_oneof_1(&stream, option);
83 if (status != 0)
84 return status;
/seL4-test-master/tools/nanopb/tests/regression/issue_322/
H A Ddefaults.c7 int status = 0; local
21 return status;
26 int status = 0; local
31 status += check_defaults(&msg);
39 status += check_defaults(&msg);
42 return status;

Completed in 111 milliseconds

1234567