HomeSort by relevance Sort by last modified time
    Searched defs:ret (Results 226 - 250 of 7945) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_condattr_getpshared/
1-2.c 38 int ret, i, pshared; local
48 ret =
51 if (ret != 0) {
54 ret);
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_condattr_setpshared/
1-1.c 45 int ret, i, pshared; local
55 ret =
58 if (ret != 0) {
61 ret);
1-2.c 45 int ret, i, pshared; local
55 ret =
58 if (ret != 0) {
61 ret);
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_create/
4-1.c 31 int ret; local
33 ret = pthread_create(&new_th, NULL, a_thread_func, NULL);
34 if (ret) {
35 fprintf(stderr, "pthread_create(): %s\n", strerror(ret));
39 ret = pthread_join(new_th, NULL);
40 if (ret) {
41 fprintf(stderr, "pthread_join(): %s\n", strerror(ret));
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_detach/
1-1.c 44 int ret; local
72 ret = pthread_join(new_th, NULL);
77 if (ret == 0) {
80 } else if (ret == EINVAL) {
2-1.c 43 int ret; local
71 ret = pthread_cancel(new_th);
73 if (ret != 0) {
74 if (ret == ESRCH) {
3-1.c 43 int ret; local
65 ret = pthread_detach(new_th);
71 if (ret != 0) {
72 if ((ret != ESRCH) || (ret != EINVAL)) {
4-1.c 48 int ret; local
70 ret = pthread_detach(new_th);
76 if (ret != EINVAL) {
77 if (ret == ESRCH) {
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_join/speculative/
6-1.c 48 int ret; local
58 ret = pthread_join(new_th, NULL);
59 if (ret != EINVAL) {
61 "but is: %d instead.\n", ret);
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_mutexattr_gettype/speculative/
3-1.c 32 int type, ret; local
38 ret = pthread_mutexattr_gettype(&mta, &type);
40 switch (ret) {
48 printf("Test FAILED: Expected EINVAL, but got: %d\n", ret);
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_mutexattr_setprotocol/
3-1.c 30 int ret; local
44 ret = pthread_mutexattr_setprotocol(&mta, protocol);
45 if ((ret == ENOTSUP) || (ret == EINVAL)) {
51 ret);
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_mutexattr_settype/
7-1.c 33 int ret; local
49 ret = pthread_mutexattr_settype(&mta, invalid_type);
51 if (ret != EINVAL) {
53 ret);
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_once/
1-1.c 39 int ret; local
46 ret = pthread_once(&once_control, an_init_func);
47 if (ret != 0) {
53 ret = pthread_once(&once_control, an_init_func);
54 if (ret != 0) {
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/sem_unlink/
4-2.c 52 * UNRESOLVED(ret, descr);
53 * where descr is a description of the error and ret is an int
86 int ret; local
93 ret = sem_unlink(SEM_NAME);
95 if (ret != -1) {
  /external/mesa3d/src/loader/
pci_id_driver_map.c 36 int ret; local
38 ret = drmCommandWriteRead(fd, DRM_NOUVEAU_GETPARAM, &gp, sizeof(gp));
39 if (ret)
  /external/mesa3d/src/mesa/drivers/dri/nouveau/
nouveau_surface.c 40 int ret, cpp = _mesa_get_format_bytes(format); local
69 ret = nouveau_bo_new(context_dev(ctx), flags, 0,
72 assert(!ret);
  /external/perf_data_converter/src/quipper/
run_command_test.cc 51 int ret = RunCommand({"/doesnt-exist/not-bin/true"}, &output); local
53 EXPECT_EQ(-1, ret);
  /external/perfetto/src/traced/probes/filesystem/
range_tree.cc 23 std::set<std::string> ret; local
28 ret.emplace(x->ToString());
29 return ret;
  /external/selinux/libselinux/src/
disable.c 14 int fd, ret; local
30 ret = write(fd, buf, strlen(buf));
32 if (ret < 0)
setenforce.c 14 int fd, ret; local
29 ret = write(fd, buf, strlen(buf));
31 if (ret < 0)
  /external/tensorflow/tensorflow/core/kernels/
adjust_contrast_op_benchmark_test.cc 31 Node* ret; local
35 .Finalize(g, &ret));
  /external/toybox/toys/android/
setenforce.c 23 int state, ret; local
30 ret = security_setenforce(state);
31 if (ret == -1) perror_msg("Couldn't set enforcing status to '%s'", new);
  /external/valgrind/gdbserver_tests/
fork_chain.c 23 int ret; local
25 while((ret = waitpid(pid, &status, 0)) != pid) {
  /external/valgrind/memcheck/tests/
post-syscall.c 21 int ret; local
29 ret = nanosleep(&req, &rem);
31 if (ret != -1 || errno != EINTR) {
  /external/valgrind/none/tests/solaris/
block_all_signals.c 30 pid_t ret; local
33 while ((ret = waitpid(pid, &status, 0)) != pid) {

Completed in 210 milliseconds

1 2 3 4 5 6 7 8 91011>>