Searched refs:subsystem (Results 1 - 24 of 24) sorted by last modified time

/freebsd-10.0-release/crypto/heimdal/lib/ipc/
H A Dheim_ipc.defs44 subsystem mheim_ipc 1;
H A Dheim_ipc_async.defs44 subsystem mheim_aipc 201;
H A Dheim_ipc_reply.defs44 subsystem heim_ipc 101;
/freebsd-10.0-release/crypto/openssh/contrib/aix/
H A Dbuildbff.sh264 echo Creating SRC sshd subsystem.
/freebsd-10.0-release/sys/net/
H A Dvnet.c184 * Global lists of subsystem constructor and destructors for vnets. They are
519 KASSERT(vs->subsystem > SI_SUB_VNET, ("vnet sysinit too early"));
524 if (vs2->subsystem > vs->subsystem)
526 if (vs2->subsystem == vs->subsystem && vs2->order > vs->order)
569 if (vs2->subsystem > vs->subsystem)
571 if (vs2->subsystem == vs->subsystem
[all...]
H A Dvnet.h49 * destructors to be run for each network stack subsystem as virtual
344 enum sysinit_sub_id subsystem; member in struct:vnet_sysinit
351 #define VNET_SYSINIT(ident, subsystem, order, func, arg) \
353 subsystem, \
358 SYSINIT(vnet_init_ ## ident, subsystem, order, \
360 SYSUNINIT(vnet_init_ ## ident, subsystem, order, \
363 #define VNET_SYSUNINIT(ident, subsystem, order, func, arg) \
365 subsystem, \
370 SYSINIT(vnet_uninit_ ## ident, subsystem, order, \
372 SYSUNINIT(vnet_uninit_ ## ident, subsystem, orde
[all...]
/freebsd-10.0-release/sys/dev/oce/
H A Doce_hw.h862 * all use the MBX_SUBSYSTEM_COMMON subsystem code.
970 uint32_t subsystem:8; member in struct:mbx_hdr::__anon9106::__anon9107
982 uint32_t subsystem:8;
999 uint32_t subsystem:8; member in struct:mbx_hdr::__anon9106::__anon9108
1008 uint32_t subsystem:8;
1624 uint8_t subsystem; member in struct:mbx_lancer_common_write_object::__anon9165::__anon9167
2149 * These opcodes use the MBX_SUBSYSTEM_LOWLEVEL subsystem code.
2173 /* Opcodes used for DCBX subsystem. */
2187 /* Opcodes used for Vendor subsystem. */
2331 * These opcodes all use the MBX_SUBSYSTEM_NIC subsystem cod
[all...]
H A Doce_mbox.c194 * @param subsys subsystem
207 hdr->u0.req.subsystem = subsys;
/freebsd-10.0-release/sys/dev/mly/
H A Dmlyreg.h1003 u_int8_t subsystem:4; member in struct:mly_ioctl_param_subsystemdata
/freebsd-10.0-release/sys/dev/isp/
H A DDriverManual.txt241 subsystem.
322 this HBA with this platform's SCSI subsystem. Examining either the
329 itself with this platform's SCSI subsystem. One assumed action for this
330 is the registry of a function that the SCSI subsystem for this platform
359 SCSI subsystem. In other platforms, the machine dependent code has to
379 informs the SCSI subsystem for this platform that a command is complete.
439 out to the SCSI subsystem after a return from it's calling isp_intr is
/freebsd-10.0-release/sys/dev/acpica/
H A Dacpi.c94 /* Global mutex for locking access to the ACPI subsystem. */
488 /* Start up the ACPI CA subsystem. */
3305 * Debugging/bug-avoidance. Disable ACPI subsystem components.
3540 acpi_UserNotify(const char *subsystem, ACPI_HANDLE h, uint8_t notify) argument
3546 if (subsystem == NULL)
3555 devctl_notify("ACPI", subsystem, handle_buf.Pointer, notify_buf);
H A Dacpivar.h343 void acpi_UserNotify(const char *subsystem, ACPI_HANDLE h,
/freebsd-10.0-release/sys/cam/
H A DREADME.quirks61 causes FreeBSD to only send 10-byte commands. Since the CAM subsystem
/freebsd-10.0-release/sys/cam/ctl/
H A DREADME.ctl.txt22 CTL is a disk and processor device emulation subsystem originally written
/freebsd-10.0-release/sys/kern/
H A Dinit_main.c193 * boot time initialization. It also allows substitution of subsystem
221 * their subsystem (primary key) and order (secondary key).
225 if ((*sipp)->subsystem < (*xipp)->subsystem ||
226 ((*sipp)->subsystem == (*xipp)->subsystem &&
249 if ((*sipp)->subsystem == SI_SUB_DUMMY)
252 if ((*sipp)->subsystem == SI_SUB_DONE)
256 if ((*sipp)->subsystem > last) {
258 last = (*sipp)->subsystem;
[all...]
H A Dkern_linker.c197 * their subsystem (primary key) and order (secondary key).
204 if ((*sipp)->subsystem < (*xipp)->subsystem ||
205 ((*sipp)->subsystem == (*xipp)->subsystem &&
221 if ((*sipp)->subsystem == SI_SUB_DUMMY)
247 * by their subsystem (primary key) and order (secondary key).
254 if ((*sipp)->subsystem > (*xipp)->subsystem ||
255 ((*sipp)->subsystem
[all...]
H A Dsubr_bus.c606 devctl_notify_f(const char *system, const char *subsystem, const char *type, argument
614 if (subsystem == NULL)
615 return; /* BOGUS! Must specify subsystem. */
619 len += strlen(" subsystem=") + strlen(subsystem);
629 snprintf(msg, len, "!system=%s subsystem=%s type=%s %s\n",
630 system, subsystem, type, data);
632 snprintf(msg, len, "!system=%s subsystem=%s type=%s\n",
633 system, subsystem, type);
638 devctl_notify(const char *system, const char *subsystem, cons argument
[all...]
/freebsd-10.0-release/sys/sys/
H A Dkernel.h114 SI_SUB_MAC = 0x2180000, /* TrustedBSD MAC subsystem */
116 SI_SUB_MAC_LATE = 0x21D0000, /* TrustedBSD MAC subsystem */
128 SI_SUB_MBUF = 0x2700000, /* mbuf subsystem */
135 SI_SUB_DTRACE = 0x3020000, /* DTrace subsystem */
217 enum sysinit_sub_id subsystem; /* subsystem identifier*/ member in struct:sysinit
218 enum sysinit_elem_order order; /* init order within subsystem*/
235 #define C_SYSINIT(uniquifier, subsystem, order, func, ident) \
237 subsystem, \
244 #define SYSINIT(uniquifier, subsystem, orde
[all...]
/freebsd-10.0-release/etc/
H A Ddevd.conf41 match "subsystem" "!usbus[0-9]+";
43 action "/etc/pccard_ether $subsystem start";
56 action "/etc/rc.d/dhclient quietstart $subsystem";
76 action "/etc/rc.d/dhclient quietstart $subsystem";
120 match "subsystem" "CDEV";
129 match "subsystem" "CDEV";
159 match "subsystem" "DEVICE";
217 match "subsystem" "ACAD";
226 match "subsystem" "Thermal";
266 match "subsystem" "Suspen
[all...]
H A Drc.resume37 subsystem=$1
55 /usr/bin/logger -t $subsystem resumed at `/bin/date +'%Y%m%d %H:%M:%S'`
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
/freebsd-10.0-release/contrib/apr/
H A Dlibapr.mak168 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" /MACHINE:X86 /opt:ref
397 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" /MACHINE:X86
626 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" /MACHINE:X86 /opt:ref
855 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" /MACHINE:X86
1084 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" /MACHINE:X64 /opt:ref
1313 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" /MACHINE:X64
/freebsd-10.0-release/contrib/subversion/
H A Dbuild.conf1032 description = Test the wc-ng database subsystem
1040 description = Test the wc-ng pristine text storage subsystem
/freebsd-10.0-release/contrib/gdb/gdb/
H A Dexc_request.defs32 subsystem exc 2400;

Completed in 233 milliseconds