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

1234

/netbsd-6-1-5-RELEASE/external/bsd/openldap/dist/tests/data/
H A Dretcode.conf1 # slapo-retcode standard track response codes configuration example
2 # OpenLDAP: pkg/ldap/tests/data/retcode.conf,v 1.5.2.5 2010/04/13 20:23:51 kurt Exp
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
[all...]
H A Dslapd-retcode.conf2 # OpenLDAP: pkg/ldap/tests/data/slapd-retcode.conf,v 1.4.2.8 2010/04/19 19:14:29 quanah Exp
32 #retcodemod#moduleload retcode.la
50 overlay retcode
51 retcode-parent "ou=RetCodes,dc=example,dc=com"
52 include @DATADIR@/retcode.conf
54 retcode-item "cn=Unsolicited" 0x00 unsolicited="0"
55 retcode-item "cn=Notice of Disconnect" 0x00 unsolicited="1.3.6.1.4.1.1466.20036"
56 retcode-item "cn=Pre-disconnect" 0x34 flags="pre-disconnect"
57 retcode-item "cn=Post-disconnect" 0x34 flags="post-disconnect"
/netbsd-6-1-5-RELEASE/external/gpl3/gdb/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)
H A Dsig12.c27 int retcode; local
/netbsd-6-1-5-RELEASE/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...]
H A Ddrm_agpsupport.c157 int retcode; local
162 retcode = agp_acquire(dev->agp->agpdev);
163 if (retcode)
164 return retcode;
255 int retcode; local
260 retcode = drm_agp_alloc(dev, &request);
265 return retcode;
282 int retcode; local
292 retcode = drm_agp_unbind_memory(entry->handle);
295 if (retcode
305 int retcode; local
319 int retcode; local
346 int retcode; local
391 int retcode; local
[all...]
H A Ddrm_drv.c583 int i, retcode; local
607 retcode = -dev->driver->load(dev,
614 if (retcode != 0)
626 retcode = ENOMEM;
637 retcode = drm_ctxbitmap_init(dev);
638 if (retcode != 0) {
681 return retcode;
700 int __unused retcode; local
702 retcode = drm_mtrr_del(0,
705 DRM_DEBUG("mtrr_del = %d", retcode);
785 int retcode = 0; local
823 int retcode = 0; local
962 int retcode = 0; local
[all...]
H A Ddrm_sysctl.c167 drm_sysctl_out(oldp, oldlenp, &len, y, z, &error, &retcode);
221 retcode = SYSCTL_OUT(req, buf, strlen(buf)); \
222 if (retcode) \
236 int retcode; variable
262 return retcode;
279 int retcode; variable
328 return retcode;
345 int retcode; variable
391 return retcode;
405 int retcode; variable
[all...]
/netbsd-6-1-5-RELEASE/external/gpl3/gdb/dist/gdb/testsuite/gdb.arch/
H A Di386-bp_permanent.exp64 set retcode [gdb_test_multiple "disassemble $function" "Disassemble function '$function'" {
73 if {$retcode != 0} {
/netbsd-6-1-5-RELEASE/external/gpl2/xcvs/dist/src/
H A Dno_diff.c31 int retcode = 0; local
56 retcode = RCS_cmp_file (vers->srcfile, vers->vn_user, NULL, NULL, options,
58 if (retcode == 0)
/netbsd-6-1-5-RELEASE/external/bsd/tmux/dist/
H A Dcmd-run-shell.c79 int retcode; local
111 if ((retcode = WEXITSTATUS(job->status)) != 0)
112 xasprintf(&msg, "'%s' returned %d", cmd, retcode);
114 retcode = WTERMSIG(job->status);
115 xasprintf(&msg, "'%s' terminated by signal %d", cmd, retcode);
H A Dcmd-if-shell.c104 exitdata.retcode = ctx->cmdclient->retcode;
/netbsd-6-1-5-RELEASE/sbin/raidctl/
H A Drf_configure.c145 int numscanned, val, r, c, retcode, aa, bb, cc; local
160 retcode = -1;
172 retcode = -1;
229 retcode = -1;
237 retcode = -1;
251 retcode = -1;
260 retcode = -1;
265 retcode = -1;
274 retcode = -1;
281 retcode
[all...]
/netbsd-6-1-5-RELEASE/sys/compat/linux/arch/alpha/
H A Dlinux_machdep.h84 unsigned int retcode[3]; member in struct:linux_sigframe
90 unsigned int retcode[3]; member in struct:linux_rt_sigframe
/netbsd-6-1-5-RELEASE/sys/dev/raidframe/
H A Drf_dagfuncs.c449 int i, retcode; local
451 retcode = 0;
459 retcode = rf_XorIntoBuffer(raidPtr, (RF_PhysDiskAddr_t *) node->params[i].p,
468 return (rf_GenericWakeupFunc(node, retcode)); /* call wake func
477 int i, retcode = 0; local
490 retcode = rf_bxor((char *) node->params[i + 1].p, (char *) node->results[0],
499 return (rf_GenericWakeupFunc(node, retcode)); /* call wake func
516 int i, retcode = 0; local
535 retcode = rf_bxor(srcbuf, destbuf, rf_RaidAddressToByte(raidPtr, pda->numSector));
543 return (rf_GenericWakeupFunc(node, retcode));
567 int length, retcode = 0; local
584 unsigned mask = sizeof(long) - 1, retcode = 0; local
[all...]
/netbsd-6-1-5-RELEASE/external/bsd/openldap/dist/servers/slapd/back-meta/
H A Dsearch.c91 meta_search_candidate_t retcode; local
103 retcode = META_SEARCH_BINDING;
124 retcode = META_SEARCH_CANDIDATE;
139 retcode = META_SEARCH_NEED_BIND;
184 if ( retcode != META_SEARCH_BINDING ) {
185 return retcode;
334 retcode = META_SEARCH_ERR;
355 retcode = META_SEARCH_ERR;
358 retcode = META_SEARCH_NOT_CANDIDATE;
365 return retcode;
381 meta_search_candidate_t retcode = META_SEARCH_NOT_CANDIDATE; local
452 meta_search_candidate_t retcode; local
916 meta_search_candidate_t retcode = META_SEARCH_UNDEFINED; local
1479 meta_search_candidate_t retcode; local
[all...]

Completed in 208 milliseconds

1234