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

1 2 3

  /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...]
  /src/tests/lib/libc/sys/
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_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_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_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_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_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_issetugid.c 49 int sta; local in function:check
75 (void)wait(&sta);
77 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_msgsnd.c 82 int id, sta; local in function:ATF_TC_BODY
108 (void)wait(&sta);
110 if (WIFEXITED(sta) != 0 || WIFSIGNALED(sta) == 0)
223 int id, rv, sta; local in function:ATF_TC_BODY
246 (void)wait(&sta);
248 if (WIFEXITED(sta) == 0 || WIFSIGNALED(sta) != 0)
270 int id, sta; local in function:ATF_TC_BODY
311 (void)wait(&sta);
    [all...]
t_setrlimit.c 184 int fd, sta; local in function:ATF_TC_BODY
217 (void)wait(&sta);
220 if (WIFEXITED(sta) == 0 || WEXITSTATUS(sta) != EXIT_SUCCESS)
251 int sta; local in function:ATF_TC_BODY
290 (void)wait(&sta);
292 if (WIFEXITED(sta) == 0 || WEXITSTATUS(sta) != EXIT_SUCCESS)
305 int fd, i, rv, sta; local in function:ATF_TC_BODY
338 (void)wait(&sta);
354 int fd, i, rv, sta; local in function:ATF_TC_BODY
414 int sta; local in function:ATF_TC_BODY
    [all...]
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_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_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)
  /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/tests/lib/libc/gen/
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_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_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_pause.c 80 int sta; local in function:ATF_TC_BODY
101 (void)wait(&sta);
103 if (WIFSIGNALED(sta) == 0 || WTERMSIG(sta) != SIGKILL)
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_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/sys/arch/sparc/sparc/
cache.c 121 sta(i, ASI_CONTROL, 0);
154 sta(0, ASI_ICACHECLR, 0);
156 sta(0, ASI_DCACHECLR, 0);
159 sta(SRMMU_PCR, ASI_SRMMU, pcr | MS1_PCR_DCE | MS1_PCR_ICE);
182 sta(0x80000000, ASI_ICACHECLR, 0); /* Unlock */
183 sta(0, ASI_ICACHECLR, 0); /* clear */
187 sta(0x80000000, ASI_DCACHECLR, 0);
188 sta(0, ASI_DCACHECLR, 0);
192 sta(SRMMU_PCR, ASI_SRMMU, pcr | VIKING_PCR_DCE | VIKING_PCR_ICE);
230 sta(i, ASI_DCACHETAG, 0)
    [all...]

Completed in 23 milliseconds

1 2 3