Home
last modified time | relevance | path

Searched refs:subsystem (Results 1 – 25 of 224) sorted by relevance

123456789

/freebsd/usr.sbin/iovctl/
H A Dvalidate.c50 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 Dparse.c225 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 Dvnet.h332 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 Dvnet.c519 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 Dfwget.sh35 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 Dkernel.h227 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 Dnotreviewed.dox9 * 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 Drc.suspend36 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 Drc.resume36 subsystem=$1
49 /usr/bin/logger -t $subsystem resumed at `/bin/date +'%Y%m%d %H:%M:%S'`
/freebsd/sys/netlink/
H A Dnetlink_sysevent.c80 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 Dossl_method_construct.pod56 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 Dinit_main.c176 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 Dst,stih4xx.txt21 - 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 Ddhclient.conf11 action "service dhclient quietstart $subsystem";
18 action "service dhclient quietstart $subsystem";
H A Dhyperv.conf100 action "/usr/libexec/hyperv/hyperv_vfup $subsystem";
106 action "/usr/libexec/hyperv/hyperv_vfattach $subsystem 0";
/freebsd/contrib/libfido2/fuzz/
H A Dudev.c78 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 Dqcom,msm-timer.txt6 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 Dwpa_supplicant.service.arg.in3 Requires=sys-subsystem-net-devices-%i.device
4 After=sys-subsystem-net-devices-%i.device
H A Dwpa_supplicant-wired.service.arg.in3 Requires=sys-subsystem-net-devices-%i.device
4 After=sys-subsystem-net-devices-%i.device
H A Dwpa_supplicant-nl80211.service.arg.in3 Requires=sys-subsystem-net-devices-%i.device
4 After=sys-subsystem-net-devices-%i.device
/freebsd/sys/contrib/device-tree/Bindings/sound/
H A Dsprd-mcdt.txt4 transmission between audio subsystem and other AP/CP subsystem. It
/freebsd/sys/contrib/device-tree/Bindings/media/
H A Dimx.txt12 - compatible : "fsl,imx-capture-subsystem";
18 capture-subsystem {
19 compatible = "fsl,imx-capture-subsystem";
/freebsd/crypto/openssh/regress/
H A Dchannel-timeout.sh126 (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 Dmarvell,pxa168.txt3 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 Dmarvell,pxa910.txt3 The PXA910 clock subsystem generates and supplies clock to various
11 - reg: physical base address of the clock subsystem and length of memory mapped

123456789