HomeSort by: relevance | last modified time | path
    Searched defs:sta (Results 1 - 25 of 45) sorted by relevancy

1 2

  /src/tests/lib/libc/gen/
t_pause.c 80 int sta; local in function:ATF_TC_BODY
101 (void)wait(&sta);
103 if (WIFSIGNALED(sta) == 0 || WTERMSIG(sta) != SIGKILL)
t_alarm.c 82 int sta; local in function:ATF_TC_BODY
104 (void)wait(&sta);
106 if (WIFEXITED(sta) == 0 || WEXITSTATUS(sta) != EXIT_SUCCESS)
t_assert.c 75 int sta; local in function:ATF_TC_BODY
97 (void)wait(&sta);
99 if (WIFSIGNALED(sta) != 0 || WIFEXITED(sta) == 0)
113 int sta; local in function:ATF_TC_BODY
135 (void)wait(&sta);
137 if (WIFSIGNALED(sta) == 0 || WTERMSIG(sta) != SIGABRT)
t_closefrom.c 141 int sta; local in function:ATF_TC_BODY
155 (void)wait(&sta);
160 if (WIFEXITED(sta) == 0 || WEXITSTATUS(sta) != 0)
t_getgrent.c 127 int rv, sta; local in function:ATF_TC_BODY
162 (void)wait(&sta);
164 if (WIFEXITED(sta) == 0 || WEXITSTATUS(sta) != EXIT_SUCCESS)
t_nice.c 98 int sta; local in function:ATF_TC_BODY
131 (void)wait(&sta);
133 if (WIFEXITED(sta) == 0 || WEXITSTATUS(sta) != EXIT_SUCCESS)
  /src/tests/lib/libc/sys/
t_issetugid.c 49 int sta; local in function:check
75 (void)wait(&sta);
77 if (WIFEXITED(sta) == 0 || WEXITSTATUS(sta) != EXIT_SUCCESS)
t_chroot.c 56 int fd, sta; local in function:ATF_TC_BODY
93 (void)wait(&sta);
95 if (WIFEXITED(sta) == 0 || WEXITSTATUS(sta) != EXIT_SUCCESS)
144 int sta; local in function:ATF_TC_BODY
165 (void)wait(&sta);
167 if (WIFEXITED(sta) == 0 || WEXITSTATUS(sta) != EXIT_SUCCESS)
181 int fd, sta; local in function:ATF_TC_BODY
216 (void)wait(&sta);
267 int fd, sta; local in function:ATF_TC_BODY
    [all...]
t_getlogin.c 89 int sta; local in function:ATF_TC_BODY
112 (void)wait(&sta);
114 if (WIFEXITED(sta) == 0 || WEXITSTATUS(sta) != EXIT_SUCCESS)
130 int sta; local in function:ATF_TC_BODY
168 (void)wait(&sta);
170 if (WIFEXITED(sta) == 0 || WEXITSTATUS(sta) != EXIT_SUCCESS) {
172 if (WEXITSTATUS(sta) == EFAULT)
175 if (WEXITSTATUS(sta) == EINVAL
193 int sta; local in function:ATF_TC_BODY
    [all...]
t_getsid.c 83 int sta; local in function:ATF_TC_BODY
105 (void)wait(&sta);
107 if (WIFEXITED(sta) == 0 || WEXITSTATUS(sta) != EXIT_SUCCESS)
t_setuid.c 83 int rv, sta; local in function:ATF_TC_BODY
107 (void)wait(&sta);
109 if (WIFEXITED(sta) == 0 || WEXITSTATUS(sta) != EXIT_SUCCESS)
t_getgroups.c 101 int i, n, rv, sta; local in function:ATF_TC_BODY
126 (void)wait(&sta);
128 if (WIFEXITED(sta) == 0 || WEXITSTATUS(sta) != EXIT_SUCCESS)
t_getpid.c 62 int i, sta; local in function:ATF_TC_BODY
88 wpid = wait(&sta);
93 ATF_REQUIRE(WIFEXITED(sta) != 0);
95 if (WEXITSTATUS(sta) != EXIT_SUCCESS)
t_mkdir.c 115 int sta; local in function:ATF_TC_BODY
140 (void)wait(&sta);
142 if (WIFEXITED(sta) == 0 || WEXITSTATUS(sta) != EXIT_SUCCESS)
t_mkfifo.c 75 int sta, fd = -1; local in function:ATF_TC_BODY
101 (void)wait(&sta);
103 if (WIFSIGNALED(sta) == 0 || WTERMSIG(sta) != SIGKILL)
161 int fd, sta; local in function:ATF_TC_BODY
193 (void)wait(&sta);
195 if (WIFSIGNALED(sta) != 0 || WTERMSIG(sta) == SIGKILL)
t_nanosleep.c 136 int sta; local in function:ATF_TC_BODY
173 (void)wait(&sta);
175 if (WIFEXITED(sta) == 0 || WEXITSTATUS(sta) != EXIT_SUCCESS)
t_revoke.c 133 int fd, sta; local in function:ATF_TC_BODY
165 (void)wait(&sta);
167 if (WIFEXITED(sta) == 0 || WEXITSTATUS(sta) != EXIT_SUCCESS)
t_umask.c 70 int sta; local in function:ATF_TC_BODY
91 (void)wait(&sta);
93 if (WIFEXITED(sta) == 0 || WEXITSTATUS(sta) != EXIT_SUCCESS)
t_kill.c 56 int sta; local in function:ATF_TC_BODY
73 (void)wait(&sta);
75 if (WIFSIGNALED(sta) == 0 || WTERMSIG(sta) != sig[i])
88 int rv, sta; local in function:ATF_TC_BODY
111 (void)wait(&sta);
113 if (WIFEXITED(sta) == 0 || WEXITSTATUS(sta) != EXIT_SUCCESS) {
115 if (WEXITSTATUS(sta) == EINVAL)
118 if (WEXITSTATUS(sta) == ESRCH
138 int sta; local in function:ATF_TC_BODY
219 int i, sta; local in function:ATF_TC_BODY
266 int i, sta; local in function:ATF_TC_BODY
    [all...]
t_mlock.c 172 int sta; local in function:ATF_TC_BODY
196 if ((sta = mlock(buf, i)) != -1 || errno != EAGAIN) {
198 buf, i, sta, errno, strerror(errno));
207 (void)wait(&sta);
209 if (WIFEXITED(sta) == 0 || WEXITSTATUS(sta) != EXIT_SUCCESS)
t_mprotect.c 148 int sta, xp_support; local in function:ATF_TC_BODY
197 (void)wait(&sta);
201 ATF_REQUIRE(WIFEXITED(sta) != 0);
206 if (WEXITSTATUS(sta) != SIGSEGV) {
213 ATF_REQUIRE(WEXITSTATUS(sta) == SIGSEGV);
288 int sta; local in function:ATF_TC_BODY
309 (void)wait(&sta);
311 ATF_REQUIRE(WIFEXITED(sta) != 0);
312 ATF_REQUIRE(WEXITSTATUS(sta) == SIGSEGV);
330 int sta; local in function:ATF_TC_BODY
    [all...]
t_dup.c 284 int *buf, fd, sta; local in function:ATF_TC_BODY
334 (void)wait(&sta);
336 if (WIFEXITED(sta) == 0 || WEXITSTATUS(sta) != EXIT_SUCCESS) {
338 if (WEXITSTATUS(sta) == EX_OSERR)
341 if (WEXITSTATUS(sta) == EX_DATAERR)
  /src/tests/lib/libc/termios/
t_tcsetpgrp.c 50 int rv, sta; local in function:ATF_TC_BODY
75 (void)wait(&sta);
77 if (WIFEXITED(sta) == 0 || WEXITSTATUS(sta) != EXIT_SUCCESS)
  /src/sys/arch/sparc/sparc/
asm.h 97 #define sta(loc, asi, value) ({ \ macro
98 __asm volatile("sta %0,[%1]%2" : : \
  /src/tests/lib/libc/stdlib/
t_exit.c 60 int sta; local in function:ATF_TC_BODY
75 (void)wait(&sta);
77 if (WIFEXITED(sta) == 0 || WEXITSTATUS(sta) != EXIT_SUCCESS)
93 int sta; local in function:ATF_TC_BODY
103 (void)wait(&sta);
105 if (WIFEXITED(sta) == 0 || WEXITSTATUS(sta) != EXIT_SUCCESS)
118 int i, sta; local in function:ATF_TC_BODY
131 (void)wait(&sta);
146 int sta, fd = -1; local in function:ATF_TC_BODY
    [all...]

Completed in 32 milliseconds

1 2