Searched refs:retcode (Results 1 - 25 of 134) sorted by relevance

123456

/netbsd-current/external/bsd/openldap/dist/tests/data/
H A Dretcode.conf1 # slapo-retcode standard track response codes configuration example
18 retcode-item "cn=success" 0x00
20 retcode-item "cn=success w/ delay" 0x00 sleeptime=2
22 retcode-item "cn=operationsError" 0x01
23 retcode-item "cn=protocolError" 0x02
24 retcode-item "cn=timeLimitExceeded" 0x03 op=search
25 retcode-item "cn=sizeLimitExceeded" 0x04 op=search
26 retcode-item "cn=compareFalse" 0x05 op=compare
27 retcode-item "cn=compareTrue" 0x06 op=compare
28 retcode
[all...]
H A Dslapd-retcode.conf30 #retcodemod#moduleload retcode.la
46 overlay retcode
47 retcode-parent "ou=RetCodes,dc=example,dc=com"
48 include @DATADIR@/retcode.conf
50 retcode-item "cn=Unsolicited" 0x00 unsolicited="0"
51 retcode-item "cn=Notice of Disconnect" 0x00 unsolicited="1.3.6.1.4.1.1466.20036"
52 retcode-item "cn=Pre-disconnect" 0x34 flags="pre-disconnect"
53 retcode-item "cn=Post-disconnect" 0x34 flags="post-disconnect"
/netbsd-current/external/gpl3/gdb.old/dist/sim/testsuite/sim/cris/c/
H A Dex1.c37 int retcode; local
41 retcode = pthread_create (&th_a, NULL, process, (void *) "a");
42 if (retcode != 0)
43 fprintf (stderr, "create a failed %d\n", retcode);
44 retcode = pthread_create (&th_b, NULL, process, (void *) "b");
45 if (retcode != 0)
46 fprintf (stderr, "create b failed %d\n", retcode);
47 retcode = pthread_join (th_a, &retval);
48 if (retcode != 0)
49 fprintf (stderr, "join a failed %d\n", retcode);
[all...]
H A Dthread3.c28 int retcode; local
32 retcode = pthread_create (&th_a, NULL, process, (void *) "a");
33 if (retcode != 0)
35 retcode = pthread_create (&th_b, NULL, process, (void *) "b");
36 if (retcode != 0)
38 retcode = pthread_join (th_a, &retval);
39 if (retcode != 0)
41 retcode = pthread_join (th_b, &retval);
42 if (retcode != 0)
H A Dclone1.c33 int retcode; local
39 retcode = pipe (pip);
41 if (retcode != 0)
43 fprintf (stderr, "Bad pipe %d\n", retcode);
56 if ((retcode = read (pip[0], buf, 1)) != 1)
58 fprintf (stderr, "Bad read 1: %d\n", retcode);
62 retcode = read (pip[0], buf, 2);
63 if (retcode == 1)
65 retcode = read (pip[0], buf+1, 1);
66 if (retcode !
[all...]
H A Dclone5.c27 int retcode; local
30 retcode = clone (process, (char *) stack + sizeof (stack) - 64, 0, "cba");
31 if (retcode == -1 && errno == ENOSYS)
H A Drtsigprocmask1.c29 int retcode; local
37 retcode = pthread_create (&th_a, NULL, process, NULL);
38 if (retcode != 0)
42 retcode
46 if (retcode == ENOSYS)
H A Dthread4.c35 int retcode; local
39 retcode = pthread_create (&th_a, NULL, process, NULL);
44 retcode = pthread_cancel (th_a);
45 retcode = pthread_join (th_a, &retval);
46 if (retcode != 0)
H A Dpipe6.c48 int retcode; local
54 retcode = pipe (pip);
56 if (retcode != 0)
58 fprintf (stderr, "Bad pipe %d\n", retcode);
83 while ((retcode = read (pip[0], buf, 1)) == 0)
86 if (retcode != 1)
88 fprintf (stderr, "Bad read 1: %d\n", retcode);
100 retcode = waitpid (pid, &st, __WALL);
102 if (retcode != pid || !WIFEXITED (st))
104 fprintf (stderr, "Bad wait %d:%d %x\n", pid, retcode, s
[all...]
H A Dpipe2.c62 int retcode; local
73 retcode = pipe (pip);
75 if (retcode != 0)
77 fprintf (stderr, "Bad pipe %d\n", retcode);
102 while ((retcode = read (pip[0], buf, 1)) == 0)
105 if (retcode != 1)
107 fprintf (stderr, "Bad read 1: %d\n", retcode);
115 while ((retcode = read (pip[0], buf, 1)) == 0)
118 if (retcode != 1)
120 fprintf (stderr, "Bad read 2: %d\n", retcode);
[all...]
H A Dsig9.c26 int retcode; local
31 retcode = pthread_join (th_a, &retval);
32 if (retcode != 0 || retval != NULL)
H A Dthread5.c39 int retcode; local
47 retcode = pthread_create (&th_a, NULL, process, NULL);
48 if (retcode != 0)
72 retcode = pthread_join (th_a, &retval);
73 if (retcode != 0)
/netbsd-current/external/gpl3/gdb/dist/sim/testsuite/cris/c/
H A Dex1.c37 int retcode; local
41 retcode = pthread_create (&th_a, NULL, process, (void *) "a");
42 if (retcode != 0)
43 fprintf (stderr, "create a failed %d\n", retcode);
44 retcode = pthread_create (&th_b, NULL, process, (void *) "b");
45 if (retcode != 0)
46 fprintf (stderr, "create b failed %d\n", retcode);
47 retcode = pthread_join (th_a, &retval);
48 if (retcode != 0)
49 fprintf (stderr, "join a failed %d\n", retcode);
[all...]
H A Dthread3.c28 int retcode; local
32 retcode = pthread_create (&th_a, NULL, process, (void *) "a");
33 if (retcode != 0)
35 retcode = pthread_create (&th_b, NULL, process, (void *) "b");
36 if (retcode != 0)
38 retcode = pthread_join (th_a, &retval);
39 if (retcode != 0)
41 retcode = pthread_join (th_b, &retval);
42 if (retcode != 0)
H A Dclone1.c33 int retcode; local
39 retcode = pipe (pip);
41 if (retcode != 0)
43 fprintf (stderr, "Bad pipe %d\n", retcode);
56 if ((retcode = read (pip[0], buf, 1)) != 1)
58 fprintf (stderr, "Bad read 1: %d\n", retcode);
62 retcode = read (pip[0], buf, 2);
63 if (retcode == 1)
65 retcode = read (pip[0], buf+1, 1);
66 if (retcode !
[all...]
H A Dclone5.c27 int retcode; local
30 retcode = clone (process, (char *) stack + sizeof (stack) - 64, 0, "cba");
31 if (retcode == -1 && errno == ENOSYS)
H A Drtsigprocmask1.c29 int retcode; local
37 retcode = pthread_create (&th_a, NULL, process, NULL);
38 if (retcode != 0)
42 retcode
46 if (retcode == ENOSYS)
H A Dthread4.c35 int retcode; local
39 retcode = pthread_create (&th_a, NULL, process, NULL);
44 retcode = pthread_cancel (th_a);
45 retcode = pthread_join (th_a, &retval);
46 if (retcode != 0)
H A Dpipe6.c48 int retcode; local
54 retcode = pipe (pip);
56 if (retcode != 0)
58 fprintf (stderr, "Bad pipe %d\n", retcode);
83 while ((retcode = read (pip[0], buf, 1)) == 0)
86 if (retcode != 1)
88 fprintf (stderr, "Bad read 1: %d\n", retcode);
100 retcode = waitpid (pid, &st, __WALL);
102 if (retcode != pid || !WIFEXITED (st))
104 fprintf (stderr, "Bad wait %d:%d %x\n", pid, retcode, s
[all...]
H A Dpipe2.c62 int retcode; local
73 retcode = pipe (pip);
75 if (retcode != 0)
77 fprintf (stderr, "Bad pipe %d\n", retcode);
102 while ((retcode = read (pip[0], buf, 1)) == 0)
105 if (retcode != 1)
107 fprintf (stderr, "Bad read 1: %d\n", retcode);
115 while ((retcode = read (pip[0], buf, 1)) == 0)
118 if (retcode != 1)
120 fprintf (stderr, "Bad read 2: %d\n", retcode);
[all...]
H A Dsig9.c26 int retcode; local
31 retcode = pthread_join (th_a, &retval);
32 if (retcode != 0 || retval != NULL)
/netbsd-current/sys/fs/nfs/client/
H A Dnlminfo.h39 int retcode; /* return code for lock requests */ member in struct:nlminfo
/netbsd-current/sys/external/bsd/drm/dist/bsd-core/
H A Ddrm_fops.c63 int retcode; local
90 retcode = -dev->driver->open(dev, priv);
91 if (retcode != 0) {
94 return retcode;
116 int retcode; local
129 retcode = devfs_set_cdevpriv(priv, drm_close);
130 if (retcode != 0) {
132 return retcode;
147 retcode = -dev->driver->open(dev, priv);
148 if (retcode !
[all...]
/netbsd-current/external/mit/libuv/dist/src/unix/
H A Dgetnameinfo.c52 req->retcode = uv__getaddrinfo_translate_error(err);
65 assert(req->retcode == 0);
66 req->retcode = UV_EAI_CANCELED;
67 } else if (req->retcode == 0) {
73 req->getnameinfo_cb(req, req->retcode, host, service);
107 req->retcode = 0;
119 return req->retcode;
/netbsd-current/external/mit/libuv/dist/src/win/
H A Dgetnameinfo.c56 req->retcode = uv__getaddrinfo_translate_error(ret);
69 req->retcode = uv_translate_sys_error(GetLastError());
82 req->retcode = uv_translate_sys_error(GetLastError());
100 assert(req->retcode == 0);
101 req->retcode = UV_EAI_CANCELED;
102 } else if (req->retcode == 0) {
108 req->getnameinfo_cb(req, req->retcode, host, service);
143 req->retcode = 0;
155 return req->retcode;

Completed in 132 milliseconds

123456