Searched defs:status (Results 1 - 23 of 23) sorted by relevance

/ndk/tests/device/test-wait/jni/
H A Dtest_wait.c37 int status; local
60 wait(&status);
62 printf("Child Exit Code: %d\n", WEXITSTATUS(status));
89 printf("Child Exit Code: %d\n", WEXITSTATUS(status));
113 wait3(&status, 0, &usage);
115 printf("Child Exit Code: %d\n", WEXITSTATUS(status));
140 wait4(cpid, &status, 0, &usage);
141 //__wait4(cpid, &status, 0, &usage); // This function will work, the above which is delcared will not.
143 printf("Child Exit Code: %d\n", WEXITSTATUS(status));
/ndk/sources/host-tools/make-3.81/
H A Damiga.c36 int status; local
75 status = SystemTags (buffer,
82 status = 20;
85 if (status == 5)
86 status = 0;
88 return status;
H A Dvmsfunctions.c147 int status; local
198 status = sys$parse (&Fab);
199 if (!(status & 1))
203 status = sys$assign (&DevDesc, &DevChan, 0, 0);
204 if (!(status & 1))
222 status = sys$qiow (0, DevChan, IO$_ACCESS, &iosb, 0, 0,
225 if (!(status & 1))
227 status = iosb[0];
228 if (!(status & 1))
231 status
[all...]
H A Dremote-cstms.c68 int status;
123 status = Customs_Host (EXPORT_SAME, &permit);
124 if (status != RPC_SUCCESS)
127 Rpc_ErrorMessage (status)));
152 Rpc_Stat status;
193 status = Rpc_Call (sock, &sin, (Rpc_Proc) CUSTOMS_IMPORT,
200 if (status != RPC_SUCCESS)
206 Rpc_ErrorMessage (status));
268 /* Get the status of a dead remote child. Block waiting for one to die
269 if BLOCK is nonzero. Set *EXIT_CODE_PTR to the exit status, *SIGNAL_PT
67 int status; local
150 Rpc_Stat status; local
[all...]
H A Dvmsjobs.c30 vmsWaitForChildren(int *status) argument
36 *status = 0;
40 *status = sys$wflor (32, vms_jobsefnmask);
119 int status; local
245 int status; local
247 short int status, count; member in struct:__anon181
254 status= sys$assign(&inputDsc,&chan,0,0);
255 if (!(status&SS$_NORMAL)) {
256 lib$signal(status);
260 status
305 int status; local
[all...]
H A Dalloca.c357 struct stk_stat status; local
363 step is to get the stack status structure. We could do this
367 STKSTAT (&status);
371 trailer = (struct stk_trailer *) (status.current_address
372 + status.current_size
H A Darscan.c52 int status, i;
66 status = lbr$set_module (&VMS_lib_idx, rfa, &bufdesc,
68 if (! (status & 1))
70 error (NILF, _("lbr$set_module failed to extract module info, status = %d"),
71 status);
149 int status;
151 status = lbr$ini_control (&VMS_lib_idx, &func, &type, 0);
153 if (! (status & 1))
155 error (NILF, _("lbr$ini_control failed with status = %d"),status);
51 int status, i; local
148 int status; local
[all...]
H A Dfile.c367 int status;
373 status = 0;
376 status = unlink (f->name);
377 if (status < 0 && errno == ENOENT)
401 if (status < 0)
365 int status; local
H A Dremake.c86 int status = -1;
169 if ((x != 0 || file->updated) && status < 1)
175 status = file->update_status;
198 status = 0;
269 return status;
288 register int status = 0;
309 status |= update_file_1 (f, depth);
316 if (status != 0 && !keep_going_flag)
317 return status;
324 status
85 int status = -1; local
286 register int status = 0; local
[all...]
H A Djob.c122 # define WAIT_NOHANG(status) waitpid (-1, (status), WNOHANG)
128 # define WAIT_NOHANG(status) wait3 ((status), WNOHANG, (struct rusage *) 0)
377 /* Write an error message describing the exit status given in
443 /* Reap all dead children, storing the returned status and the new command
454 WAIT_T status;
541 /* A remote status command failed miserably. Punt. */
552 vmsWaitForChildren (&status);
557 pid = WAIT_NOHANG (&status);
450 WAIT_T status; local
[all...]
H A Dmain.c84 static void clean_jobserver PARAMS ((int status));
171 /* Nonzero means ignore status codes returned by commands
181 /* Nonzero means don't remake anything; just return a nonzero status
336 -q, --question Run no commands; exit status says if up to date.\n"),
1819 int status;
1881 status = update_goal_chain (read_makefiles);
1884 switch (status)
2097 int status;
2102 pid = wait (&status);
2105 exit (WIFEXITED(status)
1815 int status; local
2093 int status; local
2143 int status; local
2982 clean_jobserver(int status) argument
3034 die(int status) argument
[all...]
/ndk/sources/android/support/tests/minitest/
H A Dminitest.cc192 const char* status; local
195 status = "OK";
199 status = "FAIL";
203 printf("[ %9s ] %s.%s\n", status, info->test_name, info->case_name);
/ndk/sources/host-tools/sed-4.2.1/lib/
H A Derror.c70 extern void __error (int status, int errnum, const char *message, ...)
72 extern void __error_at_line (int status, int errnum, const char *file_name,
136 error_tail (int status, int errnum, const char *message, va_list args) argument
217 if (status)
218 exit (status);
225 Exit with status STATUS if it is nonzero. */
227 error (int status, int errnum, const char *message, ...) argument
255 error_tail (status, errnum, message, args);
271 error_at_line (int status, int errnum, const char *file_name,
323 error_tail (status, errnu
270 error_at_line(int status, int errnum, const char *file_name, unsigned int line_number, const char *message, ...) argument
[all...]
H A Dalloca.c345 struct stk_stat status; local
351 step is to get the stack status structure. We could do this
355 STKSTAT (&status);
359 trailer = (struct stk_trailer *) (status.current_address
360 + status.current_size
/ndk/sources/cxx-stl/llvm-libc++/libcxx/src/
H A Dstring.cpp362 int status = sprintf_like(&s[0], available + 1, fmt, a); local
363 if ( status >= 0 )
365 size_type used = static_cast<size_type>(status);
/ndk/sources/third_party/googletest/googletest/src/
H A Dgtest-port.cc93 const kern_return_t status = task_threads(task, &thread_list, &thread_count); local
94 if (status == KERN_SUCCESS) {
116 const int status = local
119 if (status == EOK) {
H A Dgtest-death-test.cc187 m << "Exited with exit status " << exit_code;
192 m << "Exited with exit status " << WEXITSTATUS(exit_code);
250 // then exits with status 1.
383 int status() const { return status_; } function in class:testing::internal::DeathTestImpl
407 // The exit status of the child process.
455 << "unexpected status byte ("
468 // Writes a status byte to the child's status file descriptor, then
515 // status: The exit status o
[all...]
/ndk/sources/cxx-stl/gabi++/src/
H A Dcxxabi_defines.h129 ContainedStatus status; member in struct:__cxxabiv1::__UpcastInfo
/ndk/sources/third_party/googletest/googletest/test/
H A Dgtest-port_test.cc328 const int status = pthread_create(&thread_id, &attr, &ThreadFunc, &mutex); local
330 ASSERT_EQ(0, status);
H A Dgtest-death-test_test.cc216 // On Windows, the process's exit code is the same as its exit status,
227 // Returns the exit status of a process that calls _exit(2) with a
235 int status; local
236 waitpid(child_pid, &status, 0);
237 return status;
240 // Returns the exit status of a process that raises a given signal.
242 // instead the exit status of a process that exits normally with exit
251 int status; local
252 waitpid(child_pid, &status, 0);
253 return status;
872 MockDeathTest(MockDeathTestFactory *parent, TestRole role, int status, bool passed) argument
917 SetParameters(bool create, DeathTest::TestRole role, int status, bool passed) argument
[all...]
/ndk/sources/host-tools/make-3.81/glob/
H A Dglob.c371 int status;
860 status = glob (dirname,
864 if (status != 0)
865 return status;
889 status = glob_in_dir (filename, dirs.gl_pathv[i],
893 if (status == GLOB_NOMATCH)
897 if (status != 0)
901 return status;
1001 status = glob_in_dir (filename, dirname, flags, errfunc, pglob);
1002 if (status !
370 int status; local
[all...]
/ndk/sources/host-tools/sed-4.2.1/sed/
H A Dexecute.c1390 Return exit status if caller should quit, -1 otherwise. */
1838 int status;
1860 status = EXIT_SUCCESS;
1863 status = execute_program(the_program, &input);
1864 if (status == -1)
1865 status = EXIT_SUCCESS;
1885 status = 2;
1887 return status;
1830 int status; local
/ndk/sources/third_party/googletest/googletest/include/gtest/internal/
H A Dgtest-type-util.h69 int status = 0; local
75 char* const readable_name = __cxa_demangle(name, 0, 0, &status);
76 const std::string name_str(status == 0 ? readable_name : name);

Completed in 905 milliseconds