Searched refs:subsystem (Results 1 - 25 of 29) sorted by relevance

12

/freebsd-11-stable/etc/devd/
H A Dhyperv.conf7 match "subsystem" "CDEV";
15 match "subsystem" "CDEV";
23 match "subsystem" "CDEV";
31 match "subsystem" "CDEV";
101 action "/usr/libexec/hyperv/hyperv_vfup $subsystem";
107 action "/usr/libexec/hyperv/hyperv_vfattach $subsystem 0";
/freebsd-11-stable/etc/
H A Drc.suspend37 subsystem=$1
55 /usr/bin/logger -t $subsystem suspend at `/bin/date +'%Y%m%d %H:%M:%S'`
60 if [ $subsystem = "apm" ]; then
H A Drc.resume37 subsystem=$1
55 /usr/bin/logger -t $subsystem resumed at `/bin/date +'%Y%m%d %H:%M:%S'`
H A Ddevd.conf44 match "subsystem" "!(usbus|wlan)[0-9]+";
46 action "/etc/pccard_ether $subsystem start";
59 action "/etc/rc.d/dhclient quietstart $subsystem";
78 action "/etc/rc.d/dhclient quietstart $subsystem";
122 match "subsystem" "CDEV";
131 match "subsystem" "CDEV";
140 match "subsystem" "CDEV";
149 match "subsystem" "CDEV";
161 match "subsystem" "DEVICE";
219 match "subsystem" "ACA
[all...]
/freebsd-11-stable/usr.sbin/iovctl/
H A Dvalidate.c53 nvlist_t *subsystem, *empty_driver, *empty_iov; local
55 subsystem = dnvlist_take_nvlist(config, device, NULL);
57 if (subsystem != NULL)
58 return (subsystem);
68 subsystem = nvlist_create(NV_FLAG_IGNORE_CASE);
69 if (subsystem == NULL)
72 nvlist_move_nvlist(subsystem, DRIVER_CONFIG_NAME, empty_driver);
73 nvlist_move_nvlist(subsystem, IOV_CONFIG_NAME, empty_iov);
75 return (subsystem);
94 * subsystem i
100 apply_subsystem_defaults(nvlist_t *device_config, const char *subsystem, const nvlist_t *device_defaults) argument
170 const nvlist_t *subsystem, *schema, *config; local
[all...]
H A Dparse.c199 * the key/value pair to the correct subsystem in the config.
203 const char *subsystem, const nvlist_t *schema)
211 if (nvlist_exists(config, subsystem))
213 subsystem);
241 errx(1, "%s: Invalid config key '%s'", subsystem, key);
246 nvlist_move_nvlist(config, subsystem, subsystem_config);
202 parse_device_config(const ucl_object_t *top, nvlist_t *config, const char *subsystem, const nvlist_t *schema) argument
/freebsd-11-stable/sys/net/
H A Dvnet.h49 * destructors to be run for each network stack subsystem as virtual
303 enum sysinit_sub_id subsystem; member in struct:vnet_sysinit
310 #define VNET_SYSINIT(ident, subsystem, order, func, arg) \
311 CTASSERT((subsystem) > SI_SUB_VNET && \
312 (subsystem) <= SI_SUB_VNET_DONE); \
314 subsystem, \
319 SYSINIT(vnet_init_ ## ident, subsystem, order, \
321 SYSUNINIT(vnet_init_ ## ident, subsystem, order, \
324 #define VNET_SYSUNINIT(ident, subsystem, order, func, arg) \
325 CTASSERT((subsystem) > SI_SUB_VNE
[all...]
H A Dvnet.c182 * Global lists of subsystem constructor and destructors for vnets. They are
478 KASSERT(vs->subsystem > SI_SUB_VNET, ("vnet sysinit too early"));
483 if (vs2->subsystem > vs->subsystem)
485 if (vs2->subsystem == vs->subsystem && vs2->order > vs->order)
528 if (vs2->subsystem > vs->subsystem)
530 if (vs2->subsystem == vs->subsystem
[all...]
/freebsd-11-stable/sys/sys/
H A Dkernel.h106 SI_SUB_MAC = 0x2180000, /* TrustedBSD MAC subsystem */
108 SI_SUB_MAC_LATE = 0x21D0000, /* TrustedBSD MAC subsystem */
119 SI_SUB_MBUF = 0x2700000, /* mbuf subsystem */
129 SI_SUB_DTRACE = 0x3020000, /* DTrace subsystem */
216 enum sysinit_sub_id subsystem; /* subsystem identifier*/ member in struct:sysinit
217 enum sysinit_elem_order order; /* init order within subsystem*/
234 #define C_SYSINIT(uniquifier, subsystem, order, func, ident) \
236 subsystem, \
243 #define SYSINIT(uniquifier, subsystem, orde
[all...]
/freebsd-11-stable/contrib/apr-util/test/
H A DMakefile.win120 LDFLAGS = /nologo /debug /subsystem:console /incremental:no
121 SHLDFLAGS = /nologo /dll /debug /subsystem:windows /incremental:no
/freebsd-11-stable/sys/kern/
H A Dinit_main.c216 * boot time initialization. It also allows substitution of subsystem
244 * their subsystem (primary key) and order (secondary key).
248 if ((*sipp)->subsystem < (*xipp)->subsystem ||
249 ((*sipp)->subsystem == (*xipp)->subsystem &&
272 if ((*sipp)->subsystem == SI_SUB_DUMMY)
275 if ((*sipp)->subsystem == SI_SUB_DONE)
279 if ((*sipp)->subsystem > last && verbose_sysinit != 0) {
281 last = (*sipp)->subsystem;
[all...]
H A Dkern_linker.c206 * their subsystem (primary key) and order (secondary key).
213 if ((*sipp)->subsystem < (*xipp)->subsystem ||
214 ((*sipp)->subsystem == (*xipp)->subsystem &&
230 if ((*sipp)->subsystem == SI_SUB_DUMMY)
256 * by their subsystem (primary key) and order (secondary key).
263 if ((*sipp)->subsystem > (*xipp)->subsystem ||
264 ((*sipp)->subsystem
[all...]
H A Dsubr_bus.c651 devctl_notify_f(const char *system, const char *subsystem, const char *type, argument
659 if (subsystem == NULL)
660 return; /* BOGUS! Must specify subsystem. */
664 len += strlen(" subsystem=") + strlen(subsystem);
674 snprintf(msg, len, "!system=%s subsystem=%s type=%s %s\n",
675 system, subsystem, type, data);
677 snprintf(msg, len, "!system=%s subsystem=%s type=%s\n",
678 system, subsystem, type);
683 devctl_notify(const char *system, const char *subsystem, cons argument
[all...]
/freebsd-11-stable/contrib/ntp/sntp/libevent/build-aux/
H A Dar-lib132 | -subsystem* | -SUBSYSTEM* \
/freebsd-11-stable/contrib/sqlite3/tea/win/
H A Dmakefile.vc290 conlflags = $(lflags) -subsystem:console
291 guilflags = $(lflags) -subsystem:windows
/freebsd-11-stable/sys/dev/ocs_fc/
H A Dsli4.c614 req->hdr.subsystem = SLI4_SUBSYSTEM_COMMON;
1701 reset->hdr.subsystem = SLI4_SUBSYSTEM_COMMON;
1785 cqv0->hdr.subsystem = SLI4_SUBSYSTEM_COMMON;
1824 cqv2->hdr.subsystem = SLI4_SUBSYSTEM_COMMON;
1906 cq->hdr.subsystem = SLI4_SUBSYSTEM_COMMON;
1945 modify_delay->hdr.subsystem = SLI4_SUBSYSTEM_COMMON;
2000 eq->hdr.subsystem = SLI4_SUBSYSTEM_COMMON;
2069 eq->hdr.subsystem = SLI4_SUBSYSTEM_COMMON;
2105 req->hdr.subsystem = SLI4_SUBSYSTEM_LOWLEVEL;
2133 hdr->subsystem
[all...]
/freebsd-11-stable/contrib/llvm-project/lld/COFF/
H A DDriver.cpp400 parseSubsystem(arg->getValue(), &config->subsystem,
550 assert(config->subsystem != IMAGE_SUBSYSTEM_UNKNOWN &&
551 "must handle /subsystem before calling this");
554 return mangle(config->subsystem == IMAGE_SUBSYSTEM_WINDOWS_GUI
558 if (config->subsystem == IMAGE_SUBSYSTEM_WINDOWS_GUI) {
579 // Note that link.exe infers the subsystem from the presence of these
590 "; defaulting to /subsystem:console");
1351 // Handle /subsystem
1353 parseSubsystem(arg->getValue(), &config->subsystem, &config->majorOSVersion,
1712 // Windows specific -- if no /subsystem i
[all...]
H A DConfig.h89 WindowsSubsystem subsystem = llvm::COFF::IMAGE_SUBSYSTEM_UNKNOWN; member in struct:lld::coff::Configuration
/freebsd-11-stable/crypto/openssh/contrib/aix/
H A Dbuildbff.sh264 echo Creating SRC sshd subsystem.
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/StructuredData/DarwinLog/
H A DStructuredDataDarwinLog.cpp159 "subsystem" // subsystem of the log message
413 " subsystem | // message's subsystem\n"
453 {LLDB_OPT_SET_ALL, false, "subsystem", 's', OptionParser::eNoArgument,
455 "Include the subsystem in the message header when displaying "
656 // subsystem |
1732 llvm::StringRef subsystem; local
1733 if (event.GetValueForKeyAsString("subsystem", subsystem)
[all...]
/freebsd-11-stable/sys/dev/acpica/
H A Dacpivar.h349 void acpi_UserNotify(const char *subsystem, ACPI_HANDLE h,
/freebsd-11-stable/sys/dev/oce/
H A Doce_hw.h894 * all use the MBX_SUBSYSTEM_COMMON subsystem code.
1002 uint32_t subsystem:8; member in struct:mbx_hdr::__anon7356::__anon7357
1014 uint32_t subsystem:8;
1031 uint32_t subsystem:8; member in struct:mbx_hdr::__anon7356::__anon7358
1040 uint32_t subsystem:8;
1678 uint8_t subsystem; member in struct:mbx_lancer_common_write_object::__anon7415::__anon7417
2203 * These opcodes use the MBX_SUBSYSTEM_LOWLEVEL subsystem code.
2227 /* Opcodes used for DCBX subsystem. */
2241 /* Opcodes used for Vendor subsystem. */
2385 * These opcodes all use the MBX_SUBSYSTEM_NIC subsystem cod
[all...]
/freebsd-11-stable/contrib/apr/
H A Dlibapr.mak176 LINK32_FLAGS=kernel32.lib advapi32.lib ws2_32.lib mswsock.lib ole32.lib shell32.lib rpcrt4.lib /nologo /base:"0x6EEC0000" /subsystem:windows /dll /incremental:no /pdb:"$(OUTDIR)\libapr-1.pdb" /debug /out:"$(OUTDIR)\libapr-1.dll" /implib:"$(OUTDIR)\libapr-1.lib" /opt:ref
420 LINK32_FLAGS=kernel32.lib advapi32.lib ws2_32.lib mswsock.lib ole32.lib shell32.lib rpcrt4.lib /nologo /base:"0x6EEC0000" /subsystem:windows /dll /incremental:no /pdb:"$(OUTDIR)\libapr-1.pdb" /debug /out:"$(OUTDIR)\libapr-1.dll" /implib:"$(OUTDIR)\libapr-1.lib"
664 LINK32_FLAGS=kernel32.lib advapi32.lib ws2_32.lib mswsock.lib ole32.lib shell32.lib rpcrt4.lib /nologo /base:"0x6EEC0000" /subsystem:windows /dll /incremental:no /pdb:"$(OUTDIR)\libapr-1.pdb" /debug /out:"$(OUTDIR)\libapr-1.dll" /implib:"$(OUTDIR)\libapr-1.lib" /opt:ref
908 LINK32_FLAGS=kernel32.lib advapi32.lib ws2_32.lib mswsock.lib ole32.lib shell32.lib rpcrt4.lib /nologo /base:"0x6EEC0000" /subsystem:windows /dll /incremental:no /pdb:"$(OUTDIR)\libapr-1.pdb" /debug /out:"$(OUTDIR)\libapr-1.dll" /implib:"$(OUTDIR)\libapr-1.lib"
/freebsd-11-stable/sys/dev/mly/
H A Dmlyreg.h1003 u_int8_t subsystem:4; member in struct:mly_ioctl_param_subsystemdata
/freebsd-11-stable/contrib/subversion/
H A Dbuild.conf1290 description = Test the wc-ng database subsystem
1299 description = Test the wc-ng pristine text storage subsystem

Completed in 591 milliseconds

12