Searched refs:retval (Results 276 - 300 of 774) sorted by relevance

<<11121314151617181920>>

/freebsd-13-stable/usr.sbin/bsdconfig/mouse/
H A Denable103 retval=$?
110 if [ $retval -eq $DIALOG_OK ]; then
/freebsd-13-stable/usr.sbin/efidp/
H A Defidp.c65 uint8_t *retval; local
72 retval = malloc(len);
74 red = read(fd, retval + off, len - off);
81 *rv = retval;
/freebsd-13-stable/usr.bin/bc/
H A Dscan.l56 #define YY_INPUT(buf,retval,max) \
57 (retval = bc_yyinput(buf, max))
/freebsd-13-stable/lib/libc/net/
H A Dnscache.c51 __nss_cache_handler(void *retval, void *mdata, va_list ap) argument
57 __nss_common_cache_read(void *retval, void *mdata, va_list ap) argument
136 res = cache_info->unmarshal_func(buffer, buffer_size, retval,
161 __nss_common_cache_write(void *retval, void *mdata, va_list ap) argument
198 res = cache_info->marshal_func(buffer, &size, retval, ap_new,
263 __nss_mp_cache_read(void *retval, void *mdata, va_list ap) argument
309 res = cache_info->unmarshal_func(buffer, buffer_size, retval,
331 __nss_mp_cache_write(void *retval, void *mdata, va_list ap) argument
369 res = cache_info->marshal_func(buffer, &size, retval, ap_new,
395 __nss_mp_cache_write_submit(void *retval, voi argument
415 __nss_mp_cache_end(void *retval, void *mdata, va_list ap) argument
[all...]
H A Dgetproto.c53 files_getprotobynumber(void *retval, void *mdata, va_list ap) argument
91 *((struct protoent **)retval) = pptr;
/freebsd-13-stable/sys/dev/ocs_fc/
H A Docs_io.c428 int retval = -1; local
440 retval = 0;
443 retval = 0;
446 retval = 0;
449 retval = 0;
452 retval = 0;
455 retval = 0;
458 retval = 0;
461 retval = 0;
464 retval
[all...]
H A Docs_node.h183 uint32_t retval = 0; local
185 if (node->sport->enable_ini) retval |= (1U << 3);
186 if (node->sport->enable_tgt) retval |= (1U << 2);
187 if (node->init) retval |= (1U << 1);
188 if (node->targ) retval |= (1U << 0);
189 return (ocs_node_enable_e) retval;
/freebsd-13-stable/sys/mips/atheros/
H A Dapb.c486 int retval = 0; local
489 retval += printf(" at");
491 retval += resource_list_print_type(rl, "mem", SYS_RES_MEMORY, "%#jx");
492 retval += resource_list_print_type(rl, "irq", SYS_RES_IRQ, "%jd");
494 return (retval);
500 int retval = 0; local
502 retval += bus_print_child_header(bus, child);
503 retval += apb_print_all_resources(child);
505 retval += printf(" flags %#x", device_get_flags(child));
506 retval
[all...]
/freebsd-13-stable/contrib/dialog/samples/
H A Deditbox-utf833 retval=$?
/freebsd-13-stable/sys/dev/evdev/
H A Duinput.h41 int32_t retval; member in struct:uinput_ff_upload
48 int32_t retval; member in struct:uinput_ff_erase
/freebsd-13-stable/contrib/openresolv/
H A Dlibc.in240 retval=0
249 retval=$(($retval + $?))
252 exit $retval
/freebsd-13-stable/sys/amd64/vmm/intel/
H A Dvmx_msr.c83 uint32_t zeros_mask, uint32_t *retval)
112 *retval &= ~(1 << i);
116 *retval |= 1 << i;
119 *retval &= ~(1 << i);
121 *retval |= 1 << i;
123 *retval &= ~(1 << i); /* b(iii) */
125 *retval &= ~(1 << i);
127 *retval |= 1 << i;
82 vmx_set_ctlreg(int ctl_reg, int true_ctl_reg, uint32_t ones_mask, uint32_t zeros_mask, uint32_t *retval) argument
/freebsd-13-stable/sys/cam/ctl/
H A Dctl_backend_ramdisk.c592 int retval = 0; local
597 retval = ctl_backend_ramdisk_gls(io);
607 retval = CTL_RETVAL_COMPLETE;
612 retval = CTL_RETVAL_COMPLETE;
615 return (retval);
745 int retval = 0; local
790 retval = CTL_RETVAL_COMPLETE;
794 return (retval);
823 int retval; local
825 retval
861 int retval; local
939 int retval; local
[all...]
/freebsd-13-stable/usr.sbin/bsdconfig/console/
H A Dttys92 local retval=$?
95 if [ $retval -eq $DIALOG_OK ]; then
102 return $retval
/freebsd-13-stable/usr.sbin/bsdconfig/security/
H A Dsecurity121 local retval=$?
126 [ $retval -eq $DIALOG_OK ] && f_dialog_default_store "$menu_choice"
128 return $retval
/freebsd-13-stable/usr.sbin/fifolog/lib/
H A Dfifolog_reader.c60 const char *retval; local
68 retval = fifolog_int_open(&fr->ff, fname, 0);
69 if (retval != NULL)
70 err(1, "%s", retval);
137 const char *retval; local
157 retval = fifolog_int_findend(fr->ff, &s);
158 if (retval != NULL)
159 err(1, "%s", retval);
/freebsd-13-stable/usr.sbin/nscd/
H A Dcachelib.c136 hashtable_index_t retval; local
141 retval = 0;
143 retval = (127 * retval + (unsigned char)hp->key[i]) %
146 return retval;
479 struct cache_ *retval; local
484 retval = calloc(1, sizeof(*retval));
485 assert(retval != NULL);
488 memcpy(&retval
928 struct cache_mp_write_session_ *retval; local
1056 struct cache_mp_read_session_ *retval; local
[all...]
/freebsd-13-stable/sys/contrib/ncsw/inc/
H A Derror_ext.h459 #define CHECK_INIT_PARAMETERS_RETURN_VALUE(handle, f_check, retval)
471 #define CHECK_INIT_PARAMETERS_RETURN_VALUE(handle, f_check, retval) \
476 return (retval); \
485 #define SANITY_CHECK_RETURN_VALUE(_cond, _err, retval)
498 #define SANITY_CHECK_RETURN_VALUE(_cond, _err, retval) \
502 return (retval); \
/freebsd-13-stable/usr.sbin/bsdconfig/
H A Dbsdconfig298 local retval=$?
303 [ $retval -eq $DIALOG_OK ] && f_dialog_default_store "$menu_choice"
305 return $retval
395 retval=$?
397 f_dprintf "retval=%u mtag=[%s]" $retval "$mtag"
399 if [ $retval -eq $DIALOG_HELP ]; then
402 elif [ $retval -ne $DIALOG_OK ]; then
/freebsd-13-stable/tools/tools/build_option_survey/
H A Doption_survey.sh26 echo retval $a
34 echo retval $a
43 echo retval $a
62 echo retval $a
72 echo retval $a
83 echo retval $a
/freebsd-13-stable/sys/powerpc/powermac/
H A Dgrackle.c149 u_int32_t retval = 0xffffffff; local
162 return (retval);
168 retval = (in8rb(caoff));
171 retval = (in16rb(caoff));
174 retval = (in32rb(caoff));
180 return (retval);
/freebsd-13-stable/contrib/libpcap/
H A Dsockutils.c700 int retval; local
702 retval = getaddrinfo(host, port, hints, addrinfo);
703 if (retval != 0)
707 get_gai_errstring(errbuf, errbuflen, "", retval,
1288 int retval; local
1295 retval = getaddrinfo(token, NULL, &hints, &addrinfo);
1296 if (retval != 0)
1301 retval, token, NULL);
1521 int retval; /* Variable that keeps the return value; */ local
1523 retval
1610 int retval; local
[all...]
/freebsd-13-stable/sbin/fsck_msdosfs/
H A Dfat.c226 cl_t retval; local
229 retval = le16dec(p);
232 retval >>= 4;
233 retval &= CLUST12_MASK;
235 if (retval >= (CLUST_BAD & CLUST12_MASK))
236 retval |= ~CLUST12_MASK;
238 return (retval);
283 cl_t retval; local
286 retval = le16dec(p) & CLUST16_MASK;
288 if (retval >
322 cl_t retval; local
464 cl_t retval; local
[all...]
/freebsd-13-stable/sys/kern/
H A Dkern_conf.c354 int ref, retval; local
360 retval = dsw->d_gianttrick->d_open(dev, oflags, devtype, td);
363 return (retval);
370 int ref, retval; local
376 retval = dsw->d_gianttrick->d_fdopen(dev, oflags, td, fp);
379 return (retval);
386 int ref, retval; local
392 retval = dsw->d_gianttrick->d_close(dev, fflag, devtype, td);
395 return (retval);
421 int ref, retval; local
437 int ref, retval; local
453 int ref, retval; local
469 int ref, retval; local
485 int ref, retval; local
502 int ref, retval; local
520 int ref, retval; local
[all...]
/freebsd-13-stable/sys/dev/acpi_support/
H A Dacpi_asus_wmi.c270 UINT32 arg0, UINT32 arg1, UINT32 *retval);
272 UINT32 dev_id, UINT32 *retval);
274 UINT32 dev_id, UINT32 ctrl_param, UINT32 *retval);
596 UINT32 arg0, UINT32 arg1, UINT32 *retval)
615 if (retval)
616 *retval = result;
622 UINT32 dev_id, UINT32 *retval)
626 sc->dsts_id, dev_id, 0, retval));
631 UINT32 dev_id, UINT32 ctrl_param, UINT32 *retval)
635 ASUS_WMI_METHODID_DEVS, dev_id, ctrl_param, retval));
595 acpi_asus_wmi_evaluate_method(device_t wmi_dev, int method, UINT32 arg0, UINT32 arg1, UINT32 *retval) argument
621 acpi_wpi_asus_get_devstate(struct acpi_asus_wmi_softc *sc, UINT32 dev_id, UINT32 *retval) argument
630 acpi_wpi_asus_set_devstate(struct acpi_asus_wmi_softc *sc, UINT32 dev_id, UINT32 ctrl_param, UINT32 *retval) argument
[all...]

Completed in 277 milliseconds

<<11121314151617181920>>