Lines Matching defs:retval

747  * @retval 0            success
748 * @retval ENOMEM the array allocation failed
788 * @retval 0 success
789 * @retval ENOMEM the array allocation failed
906 * @retval 0 success
907 * @retval EEXIST the requested unit number is already allocated
908 * @retval ENOMEM memory allocation failure
1270 * @retval 0 success
1271 * @retval EEXIST the requested unit number is already allocated
1272 * @retval ENOMEM memory allocation failure
1315 * @retval 0 success
1413 int retval = 0;
1416 retval += BUS_PRINT_CHILD(dev, child);
1418 retval += device_printf(child, " not found\n");
1420 return (retval);
1530 * @retval 0 success
1531 * @retval non-zero a unit error code describing the error
1574 * @retval 0 success
1575 * @retval non-zero a device would not detach
1637 * @retval 0 success
1638 * @retval ENXIO no driver was found
1639 * @retval ENOMEM memory allocation failure
1640 * @retval non-zero some other unix error code
1718 * @retval 0 success
1719 * @retval ENXIO no driver was found
1720 * @retval ENOMEM memory allocation failure
1721 * @retval non-zero some other unix error code
1722 * @retval -1 Device already attached
1763 * @retval 0 success
1764 * @retval ENXIO no driver was found
1765 * @retval ENOMEM memory allocation failure
1766 * @retval non-zero some other unix error code
2013 int retval = 0;
2016 retval += device_printf(child, "<%s>", device_get_desc(child));
2018 retval += printf("%s", device_get_nameunit(child));
2021 return (retval);
2069 int retval = 0;
2071 retval += bus_print_child_header(dev, child);
2072 retval += bus_print_child_domain(dev, child);
2073 retval += bus_print_child_footer(dev, child);
2075 return (retval);
2302 * @retval 0 success
2303 * @retval ENXIO no driver was found
2304 * @retval ENOMEM memory allocation failure
2305 * @retval non-zero some other unix error code
2367 int retval;
2369 retval = device_print_prettyname(dev);
2371 retval += vprintf(fmt, ap);
2373 return (retval);
2379 * @retval 0 success
2380 * @retval EBUSY the device already has a driver attached
2381 * @retval ENOMEM a memory allocation failure occurred
2737 int retval = 0;
2739 retval += bus_print_child_header(dev, child);
2740 retval += printf("\n");
2742 return (retval);