• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /freebsd-13-stable/sys/powerpc/ofw/

Lines Matching refs:package

89 static ssize_t ofw_real_getproplen(ofw_t, phandle_t package, 
91 static ssize_t ofw_real_getprop(ofw_t, phandle_t package, const char *propname,
93 static int ofw_real_nextprop(ofw_t, phandle_t package, const char *previous,
95 static int ofw_real_setprop(ofw_t, phandle_t package, const char *propname,
101 static ssize_t ofw_real_package_to_path(ofw_t, phandle_t package, char *buf,
521 /* Return the package handle that corresponds to an instance handle. */
531 cell_t package;
534 args.name = IN((cell_t)(uintptr_t)"instance-to-package");
547 return (OUT(args.package));
550 /* Get the length of a property of a package. */
552 ofw_real_getproplen(ofw_t ofw, phandle_t package, const char *propname)
559 cell_t package;
570 args.package = IN(package);
582 /* Get the value of a property of a package. */
584 ofw_real_getprop(ofw_t ofw, phandle_t package, const char *propname, void *buf,
592 cell_t package;
605 args.package = IN(package);
622 /* Get the next property of a package. */
624 ofw_real_nextprop(ofw_t ofw, phandle_t package, const char *previous,
632 cell_t package;
644 args.package = IN(package);
659 /* Set the value of a property of a package. */
662 ofw_real_setprop(ofw_t ofw, phandle_t package, const char *propname,
670 cell_t package;
683 args.package = IN(package);
735 /* Return a package handle for the specified device. */
745 cell_t package;
763 return (OUT(args.package));
803 /* Return the fully qualified pathname corresponding to a package. */
805 ofw_real_package_to_path(ofw_t ofw, phandle_t package, char *buf, size_t len)
812 cell_t package;
818 args.name = IN((cell_t)(uintptr_t)"package-to-path");
824 args.package = IN(package);