Searched refs:retval (Results 476 - 500 of 774) sorted by relevance

<<11121314151617181920>>

/freebsd-13-stable/share/examples/scsi_target/
H A Dscsi_target.c425 int retval, i, oo; local
429 retval = kevent(kq_fd, NULL, 0, events, MAX_EVENTS, tptr);
430 if (retval < 0) {
439 } else if (retval > MAX_EVENTS) {
444 for (oo = i = 0; i < retval; i++) {
498 retval = work_atio(&ccb->atio);
501 retval = work_inot(&ccb->cin1);
520 if (retval == 0) {
/freebsd-13-stable/usr.sbin/certctl/
H A Dcertctl.sh298 retval=$?
300 exit $retval
/freebsd-13-stable/usr.sbin/sysrc/
H A Dsysrc333 retval=$SUCCESS
336 f_sysrc_service_configs $service files || retval=$? continue
351 [ "$slist" ] || retval=$?
369 exit $retval
/freebsd-13-stable/sys/dev/liquidio/
H A Dlio_main.c936 int retval = 0; local
952 retval = lio_setup_nic_devices(oct);
953 if (retval) {
960 return (retval);
966 return (retval);
1235 int num_iqueues, num_oqueues, retval; local
1293 retval = lio_send_soft_command(octeon_dev, sc);
1294 if (retval == LIO_IQ_SEND_FAILED) {
1296 retval);
1307 retval
2026 int retval; local
[all...]
H A Dlio_core.c414 int num_tx_descs, q, q_no, retval = 0; local
432 retval = lio_setup_droq(octeon_dev, q_no,
439 if (retval) {
461 retval = lio_setup_iq(octeon_dev, ifidx, q,
463 if (retval) {
/freebsd-13-stable/lib/libc/gen/
H A Dgetcap.c192 int myfd, eof, foundit, retval; local
247 retval = cdbget(capdbp, &record, name);
248 if (retval < 0) {
251 return (retval);
265 return (retval);
/freebsd-13-stable/contrib/tcpdump/
H A Dprint-ip.c101 uint32_t retval; local
128 UNALIGNED_MEMCPY(&retval, cp + len - 4, 4);
129 return retval;
133 UNALIGNED_MEMCPY(&retval, &ip->ip_dst, sizeof(uint32_t));
134 return retval;
/freebsd-13-stable/sys/dev/mvs/
H A Dmvs_pci.c475 int retval; local
477 retval = bus_print_child_header(dev, child);
478 retval += printf(" at channel %d",
480 retval += bus_print_child_footer(dev, child);
482 return (retval);
H A Dmvs_soc.c421 int retval; local
423 retval = bus_print_child_header(dev, child);
424 retval += printf(" at channel %d",
426 retval += bus_print_child_footer(dev, child);
428 return (retval);
/freebsd-13-stable/sys/dev/aic7xxx/
H A Daic7xxx_inline.h545 u_int retval; local
547 retval = 0;
552 retval |= AHC_RUN_QOUTFIFO;
562 retval |= AHC_RUN_TQINFIFO;
565 return (retval);
/freebsd-13-stable/contrib/llvm-project/llvm/tools/llvm-xray/
H A Dxray-graph.cpp375 double retval = 0; local
381 retval = 0.0;
384 retval = static_cast<double>(Count);
387 retval =
392 return retval;
/freebsd-13-stable/contrib/openbsm/bin/auditreduce/
H A Dauditreduce.c650 int retval, status; local
825 retval = cap_enter();
826 if (retval != 0 && errno != ENOSYS)
858 retval = cap_enter();
859 if (retval != 0 && errno != ENOSYS)
/freebsd-13-stable/contrib/mandoc/
H A Dread.c431 int gzerrnum, retval; local
486 retval = -1;
502 retval = 0;
520 if (retval == -1) {
524 return retval;
/freebsd-13-stable/sys/mips/mediatek/
H A Dmtk_gpio_v1.c417 int retval; local
425 retval = mtk_gpio_pin_set_direction(sc, pin,
427 if (retval == 0)
428 retval = mtk_gpio_pin_set_invert(sc, pin,
432 return (retval);
H A Dmtk_gpio_v2.c407 int retval; local
415 retval = mtk_gpio_pin_set_direction(sc, pin,
417 if (retval == 0)
418 retval = mtk_gpio_pin_set_invert(sc, pin,
422 return (retval);
/freebsd-13-stable/sys/dev/sound/pci/hda/
H A Dhdacc.c568 int retval; local
570 retval = bus_print_child_header(dev, child);
571 retval += printf(" at nid %d", fg->nid);
572 retval += bus_print_child_footer(dev, child);
574 return (retval);
/freebsd-13-stable/sys/dev/mii/
H A Dmii.c190 int retval; local
193 retval = bus_print_child_header(dev, child);
194 retval += printf(" PHY %d", ma->mii_phyno);
195 retval += bus_print_child_footer(dev, child);
197 return (retval);
/freebsd-13-stable/crypto/heimdal/lib/roken/
H A Dgetcap.c291 int retval; local
298 retval = cdbget(capdbp, &record, name);
299 if (retval < 0) {
302 return (retval);
316 return (retval);
/freebsd-13-stable/usr.sbin/bhyve/
H A Duart_emul.c716 int retval; local
722 retval = uart_stdio_backend(sc);
724 retval = uart_tty_backend(sc, opts);
725 if (retval == 0)
728 return (retval);
/freebsd-13-stable/sys/netpfil/ipfw/
H A Dip_fw2.c115 "int", /* retval */
1362 int retval = 0; local
2713 * In general, here we set retval and terminate the
2734 * the packet must be dropped (set retval,
2764 retval = IP_FW_DENY;
2815 retval = 0; /* accept */
2828 retval = IP_FW_DUMMYNET;
2840 retval = (cmd->opcode == O_DIVERT) ?
3006 retval = IP_FW_DENY;
3057 retval
[all...]
H A Dip_fw_nat.c299 int ldt, retval, found; local
304 retval = 0;
366 retval = LibAliasOutTry(t->lib, c,
368 if (retval == PKT_ALIAS_OK) {
381 retval = LibAliasIn(t->lib, c,
384 retval = LibAliasOut(t->lib, c,
396 if (retval == PKT_ALIAS_ERROR ||
398 (retval == PKT_ALIAS_UNRESOLVED_FRAGMENT ||
399 (retval == PKT_ALIAS_IGNORED &&
407 if (retval
[all...]
/freebsd-13-stable/sys/xen/xenbus/
H A Dxenbusb.c863 int retval = 0; local
865 retval += bus_print_child_header(dev, child);
866 retval += printf(" at %s", ivars->xd_node);
867 retval += bus_print_child_footer(dev, child);
869 return (retval);
/freebsd-13-stable/lib/libtacplus/
H A Dtaclib.c830 int retval; local
838 retval = 0;
865 retval = -1;
874 retval = -1;
882 retval = -1;
899 retval = -1;
909 retval = -1;
921 retval = -1;
932 retval = -1;
939 return retval;
[all...]
/freebsd-13-stable/usr.sbin/uhsoctl/
H A Duhsoctl.c585 int n, error, retval = 0; local
626 retval = -2;
632 retval = -2;
655 retval = retval ? retval : 0;
658 retval = -1;
662 retval = strncmp(buf, resp, l);
665 fprintf(stderr, "SYNC_RETVAL=%d\n", retval);
667 return (retval);
[all...]
/freebsd-13-stable/usr.bin/patch/
H A Dpch.c275 int indent, retval; local
295 retval = ED_DIFF;
300 retval = 0;
367 retval = ED_DIFF;
376 retval = UNI_DIFF;
393 retval = (*(s - 1) == '*' ? NEW_CONTEXT_DIFF : CONTEXT_DIFF);
402 retval = NORMAL_DIFF;
407 if (retval == UNI_DIFF) {
418 if (retval != 0) {
421 * retval, pat
[all...]

Completed in 299 milliseconds

<<11121314151617181920>>