HomeSort by relevance Sort by last modified time
    Searched defs:status (Results 501 - 525 of 6808) sorted by null

<<21222324252627282930>>

  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/getpid/
1-1.c 70 int ret, status; local
165 ctlpid = waitpid(hispid, &status, 0);
170 if (!WIFEXITED(status) || WEXITSTATUS(status)) {
171 UNRESOLVED(status,
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/mq_notify/
2-1.c 48 int status; local
82 wait(&status);
84 return status;
9-1.c 47 int status; local
87 wait(&status);
89 return status;
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/mq_receive/
5-1.c 62 int status; local
64 wait(&status);
65 if (status) {
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_atfork/
1-2.c 114 int ret, status; local
163 ctl = waitpid(child, &status, 0);
169 if (!WIFEXITED(status) || (WEXITSTATUS(status) != PTS_PASS)) {
3-2.c 103 int ret, status; local
149 ctl = waitpid(child, &status, 0);
155 if (!WIFEXITED(status) || (WEXITSTATUS(status) != PTS_PASS)) {
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_attr_setschedparam/
1-1.c 41 void *status; local
84 pthread_join(thread, &status);
1-2.c 42 void *status; local
86 pthread_join(thread, &status);
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_barrierattr_getpshared/
2-1.c 71 int status = 0; local
181 if (wait(&status) != pid) {
186 if (!WIFEXITED(status)) {
191 if ((WEXITSTATUS(status) + serial) != LOOP_NUM) {
192 printf("status = %d\n", status);
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_cond_init/
4-1.c 113 int status = PTS_UNRESOLVED; local
139 status = WEXITSTATUS(child_status);
141 if (status == PTS_PASS)
145 return status;
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_create/
1-5.c 195 int status; local
205 ctrl = waitpid(child, &status, 0);
211 if (WIFEXITED(status)) { /* The process exited */
212 if (WEXITSTATUS(status) == 0) {
216 if (WEXITSTATUS(status) == PTS_UNRESOLVED) {
218 "The child process returned unresolved status");
224 WEXITSTATUS(status));
228 if (WIFSIGNALED(status))
230 WTERMSIG(status));
233 ("neither was it killed. (status = %i)\n"
    [all...]
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/sem_timedwait/
9-1.c 42 int pid, status; local
84 status = kill(pid, SIGABRT); // send signal to child
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/sem_unlink/
2-2.c 131 int ret, status; local
217 ctl = waitpid(p1, &status, 0);
223 if (!WIFEXITED(status) || (WEXITSTATUS(status) != 0)) {
227 ctl = waitpid(p2, &status, 0);
233 if (!WIFEXITED(status) || (WEXITSTATUS(status) != 0)) {
237 ctl = waitpid(p3, &status, 0);
243 if (!WIFEXITED(status) || (WEXITSTATUS(status) != 0))
    [all...]
3-1.c 132 int ret, status; local
197 ctl = waitpid(ch, &status, 0);
203 if (!WIFEXITED(status)) {
207 if (WEXITSTATUS(status) == 1) {
211 if (WEXITSTATUS(status) == 2) {
215 if (WEXITSTATUS(status) != 0) {
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/sem_wait/
7-1.c 39 int pid, status; local
81 status = kill(pid, SIGABRT); // send signal to child
  /external/ltp/testcases/open_posix_testsuite/stress/threads/
helper.c 92 int status; local
150 chk = waitpid(child, &status, 0);
152 perror("Got the wrong process image status");
173 if (!WIFEXITED(status)) {
175 if (WIFSIGNALED(status)) {
177 WTERMSIG(status));
183 if (WEXITSTATUS(status) == 0) {
186 printf("Test %s: returned %d\n", argv[2], WEXITSTATUS(status));
188 exit(WEXITSTATUS(status));
  /external/ltp/testcases/realtime/func/pi-tests/
test-skeleton.c 74 int i, killed, status; local
80 killed = waitpid(pid, &status, WNOHANG | WUNTRACED);
97 int status; local
112 termpid = TEMP_FAILURE_RETRY(waitpid(pid, &status, 0));
  /external/ltp/utils/sctp/lib/
connectx.c 85 int status; local
90 status = setsockopt(fd, SOL_SCTP, SCTP_SOCKOPT_CONNECTX, addrs,
93 /* Normalize status and set association id */
94 if (status > 0) {
96 *id = status;
101 if (status < 0 && errno != ENOPROTOOPT)
102 return status;
132 int status; local
146 status = getsockopt(fd, SOL_SCTP, SCTP_SOCKOPT_CONNECTX3,
148 if (status == 0 || errno == EINPROGRESS)
    [all...]
  /external/lzma/C/
Lzma86Dec.c 30 ELzmaStatus status; local
45 src + 1, LZMA_PROPS_SIZE, LZMA_FINISH_ANY, &status, &g_Alloc);
  /external/mesa3d/src/mesa/main/
getstring.c 316 * \return current context status
322 GLenum status = ctx->ResetStatus; local
328 return status;
  /external/mockftpserver/MockFtpServer/src/main/java/org/mockftpserver/stub/command/
StatCommandHandler.java 25 * CommandHandler for the STAT (Status) command. By default, return empty status information,
27 * pathname is specified. You can customize the returned status information by setting
28 * the <code>status</code> property.
44 private String status = ""; field in class:StatCommandHandler
60 sendReply(session, code, replyMessageKey, replyText, new String[]{status});
62 sendReply(session, status);
67 * Set the contents of the status to send back as the reply text for this command
69 * @param status - the status
    [all...]
  /external/mockftpserver/branches/1.x_Branch/src/main/java/org/mockftpserver/stub/command/
StatCommandHandler.java 25 * CommandHandler for the STAT (Status) command. By default, return empty status information,
27 * pathname is specified. You can customize the returned status information by setting
28 * the <code>status</code> property.
46 private String status = ""; field in class:StatCommandHandler
65 sendReply(session, code, replyMessageKey, replyText, new String[] { status });
68 sendReply(session, status);
73 * Set the contents of the status to send back as the reply text for this command
74 * @param status - the status
    [all...]
  /external/nanopb-c/examples/using_double_on_avr/
test_conversions.c 20 int status = 0; local
39 status = 1;
47 status = 1;
51 return status;
  /external/nanopb-c/examples/using_union_messages/
decode.c 48 bool status; local
52 status = pb_decode(&substream, fields, dest_struct);
54 return status;
65 bool status = false; local
70 status = decode_unionmessage_contents(&stream, MsgType1_fields, &msg);
76 status = decode_unionmessage_contents(&stream, MsgType2_fields, &msg);
82 status = decode_unionmessage_contents(&stream, MsgType3_fields, &msg);
86 if (!status)
  /external/opencv/cxcore/src/
cxalloc.cpp 127 CVStatus status = p_cvFree( ptr, p_cvAllocUserData ); local
128 if( status < 0 )
129 CV_ERROR( status, "Deallocation error" );

Completed in 400 milliseconds

<<21222324252627282930>>