/freebsd/usr.sbin/iovctl/ |
H A D | validate.c | 50 nvlist_t *subsystem, *empty_driver, *empty_iov; in find_config() local 52 subsystem = dnvlist_take_nvlist(config, device, NULL); in find_config() 54 if (subsystem != NULL) in find_config() 55 return (subsystem); in find_config() 65 subsystem = nvlist_create(NV_FLAG_IGNORE_CASE); in find_config() 66 if (subsystem == NULL) in find_config() 69 nvlist_move_nvlist(subsystem, DRIVER_CONFIG_NAME, empty_driver); in find_config() 70 nvlist_move_nvlist(subsystem, IOV_CONFIG_NAME, empty_iov); in find_config() 72 return (subsystem); in find_config() 97 apply_subsystem_defaults(nvlist_t *device_config, const char *subsystem, in apply_subsystem_defaults() argument [all …]
|
H A D | parse.c | 225 const char *subsystem, const nvlist_t *schema) in parse_device_config() argument 233 if (nvlist_exists(config, subsystem)) in parse_device_config() 235 subsystem); in parse_device_config() 263 errx(1, "%s: Invalid config key '%s'", subsystem, key); in parse_device_config() 268 nvlist_move_nvlist(config, subsystem, subsystem_config); in parse_device_config()
|
/freebsd/sys/net/ |
H A D | vnet.h | 332 enum sysinit_sub_id subsystem; member 339 #define VNET_SYSINIT(ident, subsystem, order, func, arg) \ argument 340 CTASSERT((subsystem) > SI_SUB_VNET && \ 341 (subsystem) <= SI_SUB_VNET_DONE); \ 343 subsystem, \ 348 SYSINIT(vnet_init_ ## ident, subsystem, order, \ 350 SYSUNINIT(vnet_init_ ## ident, subsystem, order, \ 353 #define VNET_SYSUNINIT(ident, subsystem, order, func, arg) \ argument 354 CTASSERT((subsystem) > SI_SUB_VNET && \ 355 (subsystem) <= SI_SUB_VNET_DONE); \ [all …]
|
H A D | vnet.c | 519 KASSERT(vs->subsystem > SI_SUB_VNET, ("vnet sysinit too early")); in vnet_register_sysinit() 524 if (vs2->subsystem > vs->subsystem) in vnet_register_sysinit() 526 if (vs2->subsystem == vs->subsystem && vs2->order > vs->order) in vnet_register_sysinit() 571 if (vs2->subsystem > vs->subsystem) in vnet_register_sysuninit() 573 if (vs2->subsystem == vs->subsystem && vs2->order > vs->order) in vnet_register_sysuninit() 621 curvnet->vnet_state = vs->subsystem; in vnet_sysinit() 640 curvnet->vnet_state = vs->subsystem; in vnet_sysuninit() 807 xprint(" %#08x %#08x\n", vs->subsystem, vs->order); in db_show_vnet_print_vs()
|
/freebsd/usr.sbin/fwget/ |
H A D | fwget.sh | 35 Usage: $(basename "$0") [options] [subsystem] 109 for subsystem in ${subsystems}; do 110 if [ ! -f "${LIBEXEC_PATH}"/"${subsystem}" ]; then 113 . "${LIBEXEC_PATH}"/"${subsystem}" 117 for subsystem in ${subsystems}; do 118 "${subsystem}"_search_packages
|
/freebsd/sys/sys/ |
H A D | kernel.h | 227 enum sysinit_sub_id subsystem; /* subsystem identifier */ member 261 #define C_SYSINIT(uniquifier, subsystem, order, func, ident) \ argument 268 subsystem, \ 276 #define C_SYSINIT(uniquifier, subsystem, order, func, ident) \ argument 278 subsystem, \ 287 #define SYSINIT(uniquifier, subsystem, order, func, ident) \ argument 288 C_SYSINIT(uniquifier, subsystem, order, \ 294 #define C_SYSUNINIT(uniquifier, subsystem, order, func, ident) \ argument 296 subsystem, \ 304 #define SYSUNINIT(uniquifier, subsystem, order, func, ident) \ argument [all …]
|
/freebsd/tools/kerneldoc/subsys/ |
H A D | notreviewed.dox | 9 * this kernel subsystem in another kernel subsystem you should search for 10 * precedence of use outside this subsystem. If the function is not used 11 * outside this subsystem you should ask on the mailinglists about it, else
|
/freebsd/libexec/rc/ |
H A D | rc.suspend | 36 subsystem=$1 67 /usr/bin/logger -t $subsystem suspend at `/bin/date +'%Y%m%d %H:%M:%S'` 72 if [ $subsystem = "apm" ]; then
|
H A D | rc.resume | 36 subsystem=$1 49 /usr/bin/logger -t $subsystem resumed at `/bin/date +'%Y%m%d %H:%M:%S'`
|
/freebsd/sys/netlink/ |
H A D | netlink_sysevent.c | 80 sysevent_write(struct sysevent_group *se, const char *subsystem, const char *type, in sysevent_write() argument 104 nlattr_add_string(&nw, NLSE_ATTR_SUBSYSTEM, subsystem); in sysevent_write() 141 sysevent_send(const char *system, const char *subsystem, const char *type, in sysevent_send() argument 153 sysevent_write(se, subsystem, type, data); in sysevent_send()
|
/freebsd/crypto/openssl/doc/internal/man3/ |
H A D | ossl_method_construct.pod | 56 calling the appropriate functions given by the subsystem specific 63 This function assumes that the subsystem method creator implements 65 subsystem destruct() method to decrement the reference count when 70 A central part of constructing a subsystem specific method is to give 89 NULL is a valid value and means that a subsystem default store 109 NULL is a valid value and means that a subsystem default store 122 Constructs a subsystem method for the given I<name> and the given 126 it possible for the subsystem constructor to keep a reference, which
|
/freebsd/sys/kern/ |
H A D | init_main.c | 176 if (a->subsystem < b->subsystem) in sysinit_compar() 178 if (a->subsystem > b->subsystem) in sysinit_compar() 292 if (sip->subsystem == SI_SUB_DUMMY) in mi_startup() 295 if (sip->subsystem > last) in mi_startup() 296 BOOTTRACE_INIT("sysinit 0x%7x", sip->subsystem); in mi_startup() 299 if (sip->subsystem > last && verbose_sysinit != 0) { in mi_startup() 301 printf("subsystem %x\n", sip->subsystem); in mi_startup() 331 last = sip->subsystem; in mi_startup() 896 xprint(" %#08x %#08x\n", sip->subsystem, sip->order); in db_show_print_syinit()
|
/freebsd/sys/contrib/device-tree/Bindings/display/ |
H A D | st,stih4xx.txt | 21 - sti-display-subsystem: Master device for DRM sub-components 25 - compatible: "st,sti-display-subsystem" 29 must be a child of sti-display-subsystem 45 must be a child of sti-display-subsystem 57 must be a child of sti-display-subsystem 74 must be a child of sti-display-subsystem 87 must be a child of sti-display-subsystem 102 must be a child of sti-display-subsystem 175 sti-display-subsystem { 176 compatible = "st,sti-display-subsystem";
|
/freebsd/sbin/devd/ |
H A D | dhclient.conf | 11 action "service dhclient quietstart $subsystem"; 18 action "service dhclient quietstart $subsystem";
|
H A D | hyperv.conf | 100 action "/usr/libexec/hyperv/hyperv_vfup $subsystem"; 106 action "/usr/libexec/hyperv/hyperv_vfattach $subsystem 0";
|
/freebsd/contrib/libfido2/fuzz/ |
H A D | udev.c | 78 const char *subsystem, const char *devtype) in __wrap_udev_device_get_parent_with_subsystem_devtype() argument 81 fido_log_debug("%s", subsystem); /* XXX consume */ in __wrap_udev_device_get_parent_with_subsystem_devtype() 180 const char *subsystem) in __wrap_udev_enumerate_add_match_subsystem() argument 183 fido_log_debug("%s:", subsystem); in __wrap_udev_enumerate_add_match_subsystem()
|
/freebsd/sys/contrib/device-tree/Bindings/timer/ |
H A D | qcom,msm-timer.txt | 6 properties specify which subsystem the timers are paired with. 8 "qcom,kpss-timer" - krait subsystem 9 "qcom,scss-timer" - scorpion subsystem
|
/freebsd/contrib/wpa/wpa_supplicant/systemd/ |
H A D | wpa_supplicant.service.arg.in | 3 Requires=sys-subsystem-net-devices-%i.device 4 After=sys-subsystem-net-devices-%i.device
|
H A D | wpa_supplicant-wired.service.arg.in | 3 Requires=sys-subsystem-net-devices-%i.device 4 After=sys-subsystem-net-devices-%i.device
|
H A D | wpa_supplicant-nl80211.service.arg.in | 3 Requires=sys-subsystem-net-devices-%i.device 4 After=sys-subsystem-net-devices-%i.device
|
/freebsd/sys/contrib/device-tree/Bindings/sound/ |
H A D | sprd-mcdt.txt | 4 transmission between audio subsystem and other AP/CP subsystem. It
|
/freebsd/sys/contrib/device-tree/Bindings/media/ |
H A D | imx.txt | 12 - compatible : "fsl,imx-capture-subsystem"; 18 capture-subsystem { 19 compatible = "fsl,imx-capture-subsystem";
|
/freebsd/crypto/openssh/regress/ |
H A D | channel-timeout.sh | 126 (grep -vi subsystem.*sftp $OBJ/sshd_proxy.orig; 138 (grep -vi subsystem.*sftp $OBJ/sshd_proxy.orig; 151 (grep -vi subsystem.*sftp $OBJ/sshd_proxy.orig;
|
/freebsd/sys/contrib/device-tree/Bindings/clock/ |
H A D | marvell,pxa168.txt | 3 The PXA168 clock subsystem generates and supplies clock to various 11 - reg: physical base address of the clock subsystem and length of memory mapped
|
H A D | marvell,pxa910.txt | 3 The PXA910 clock subsystem generates and supplies clock to various 11 - reg: physical base address of the clock subsystem and length of memory mapped
|