Searched refs:retval (Results 1 - 25 of 869) sorted by path

1234567891011>>

/freebsd-11-stable/bin/date/
H A Ddate.c67 int retval; variable
200 exit(retval);
H A Dextern.h33 extern int retval;
H A Dnetdate.c63 * Returns 0 on success. Returns > 0 on failure, setting retval to 2;
80 return (retval = 2);
90 return (retval = 2);
180 return (retval = 2);
/freebsd-11-stable/bin/mkdir/
H A Dmkdir.c143 int first, last, retval; local
148 retval = 1;
183 retval = 0;
191 retval = 0;
195 retval = 2;
198 retval = 0;
208 return (retval);
/freebsd-11-stable/bin/pax/
H A Dfile_subs.c551 int retval = -1; local
588 retval = -1;
597 retval = 0;
615 return(retval);
/freebsd-11-stable/cddl/usr.sbin/dtrace/tests/tools/
H A Ddtest.sh25 local dflags exe exstatus pid retval status
28 retval=0
59 retval=1
62 retval=1
78 retval=1
83 retval=1
87 return $retval
/freebsd-11-stable/cddl/usr.sbin/zfsd/
H A Dcase_file.cc1057 bool retval = true; local
1120 retval = (zpool_vdev_attach(zhp, oldstr.c_str(), path, nvroot,
1122 if (retval)
1131 return (retval);
/freebsd-11-stable/contrib/amd/amd/
H A Damfs_nfsl.c97 char *retval; local
118 retval = nfs_ops.fs_match(fo);
121 retval = nfs_ops.fs_match(fo);
124 retval = amfs_link_ops.fs_match(fo);
126 return retval;
H A Dconf_parse.y52 static int retval;
114 retval = set_conf_kv(header_section, $1, $3);
115 if (retval != 0) {
124 retval = set_conf_kv(header_section, $1, $3);
125 if (retval != 0) {
134 retval = set_conf_kv(header_section, $1, $3);
135 if (retval != 0) {
H A Dmapc.c471 int retval; local
477 retval = regcomp(&re, pattern, REG_ICASE);
478 if (retval != 0) {
483 regerror(retval, &re, errstr, 256);
905 int retval; local
908 retval = regexec(&k->re, key, 0, NULL, 0);
909 if (retval == 0) { /* succeeded */
915 regerror(retval, &k->re, errstr, 256);
H A Dops_cdfs.c105 int genflags, cdfs_flags, retval; local
213 retval = mount_fs(&mnt, genflags, (caddr_t) &cdfs_args, 0, type, 0, NULL, mnttab_file_name, on_autofs);
215 return retval;
H A Dreaddir.c101 nfsentry *retval = (nfsentry *) NULL; local
107 return retval;
112 return retval;
117 return retval;
172 retval = &chain[0];
174 return retval;
193 retval = &chain[0];
196 return retval;
526 am_entry3 *retval = (am_entry3 *) NULL; local
532 return retval;
[all...]
H A Dsun2amd.c75 int pos, line = 0, retval = 1; local
133 retval = 0;
136 return retval;
146 FILE *retval = NULL; local
148 if ((retval = fopen(path,mode)) == NULL) {
152 return retval;
175 int opt, retval = 1; local
199 retval = sun2amd_convert(sun_in,amd_out);
202 exit(retval);
H A Dsun_map.c129 char *retval = NULL, *str_start, *str_end, *src_end; local
134 return retval;
151 retval = (char*)xmalloc(total_size);
152 memset(retval, 0, total_size);
162 (void)strncpy(retval, src, first_half);
163 (void)strncat(retval, sub, sub_size);
164 (void)strncat(retval, str_end + 1, second_half);
166 if (strstr(retval, str) != NULL) {
172 if ((tmp = sun_strsub(retval, str, sub)) != NULL) {
173 XFREE(retval);
195 char *retval = NULL, *tmp = NULL, *tmp2 = NULL; local
507 char *retval = NULL; local
[all...]
H A Dsun_map_parse.y424 struct sun_entry *retval = NULL;
434 retval = (struct sun_entry*)sun_entry_list->first;
441 return retval;
/freebsd-11-stable/contrib/amd/hlfsd/
H A Dstubs.c304 int retval = 0; local
367 retval = 1; /* could not get real home dir (or uid 0 user) */
369 retval = 0;
378 exit(retval);
/freebsd-11-stable/contrib/apr/dso/unix/
H A Ddso.c190 void *retval = NULL;
209 retval = NSAddressOfSymbol(symbol);
210 if (retval == NULL) {
214 *ressym = retval;
219 void *retval;
222 retval = dlsym(handle->handle, symbol);
225 void *retval = dlsym(handle->handle, (char *)symname);
227 void *retval = dlsym(handle->handle, symname);
230 if (retval == NULL) {
235 *ressym = retval;
[all...]
/freebsd-11-stable/contrib/apr/threadproc/unix/
H A Dthread.c203 apr_status_t retval)
205 thd->exitval = retval;
211 APR_DECLARE(apr_status_t) apr_thread_join(apr_status_t *retval,
218 *retval = thd->exitval;
/freebsd-11-stable/contrib/binutils/bfd/
H A Delf-bfd.h666 (bfd *, asection *, int *retval);
H A Delf-eh-frame.c1538 bfd_boolean retval; local
1598 retval = bfd_set_section_contents (abfd, sec->output_section,
1602 return retval;
H A Delf.c5175 int retval = index;
5177 if ((*bed->elf_backend_section_from_bfd_section) (abfd, asect, &retval))
5178 return retval;
5170 int retval = index; local
H A Delf32-score.c2789 int *retval)
2793 *retval = SHN_SCORE_SCOMMON;
2787 _bfd_score_elf_section_from_bfd_section(bfd *abfd ATTRIBUTE_UNUSED, asection *sec, int *retval) argument
H A Delf64-ppc.c7149 int retval;
7151 retval = get_tls_mask (&toc_tls, NULL, NULL,
7154 if (retval == 0)
7156 if (retval > 1 && toc_tls != NULL)
10241 int retval;
10243 retval = get_tls_mask (&toc_tls, &toc_symndx, &toc_addend,
10245 if (retval == 0)
10262 if (retval == 2)
10268 else if (retval == 3)
7145 int retval; local
10237 int retval; local
H A Delfxx-ia64.c342 PARAMS ((bfd *abfd, asection *sec, int *retval));
5790 elfNN_hpux_backend_section_from_bfd_section (abfd, sec, retval)
5793 int *retval;
5797 *retval = SHN_IA_64_ANSI_COMMON;
/freebsd-11-stable/contrib/binutils/binutils/
H A Dnm.c1169 bfd_boolean retval = TRUE;
1201 retval = FALSE;
1210 return retval;
1503 int retval;
1638 retval = 0;
1648 retval++;
1662 exit (retval);
1663 return retval;
1162 bfd_boolean retval = TRUE; local
1489 int retval; local

Completed in 320 milliseconds

1234567891011>>