Index: head/en_US.ISO8859-1/books/porters-handbook/uses/chapter.xml
===================================================================
--- head/en_US.ISO8859-1/books/porters-handbook/uses/chapter.xml (revision 48697)
+++ head/en_US.ISO8859-1/books/porters-handbook/uses/chapter.xml (revision 48698)
@@ -1,1530 +1,1548 @@
Using USES
Macros
An Introduction to USES
USES macros make it easy to declare
requirements and settings for a port. They can add
dependencies, change building behavior, add metadata to
packages, and so on, all by selecting simple, preset
values..
Each section in this chapter describes a possible value for
USES, along with its possible arguments.
Arguments are appeneded to the value after a colon
(:). Multiple arguments are separated by
commas (,).
Using Multiple Values
USES= bison perl
Adding an Argument
USES= gmake:lite
Adding Multiple Arguments
USES= drupal:7,theme
Mixing it All Together
USES= pgsql:9.3+ cpe python:2.7,build
+
+ 7z
+
+ Possible arguments: (none), p7zip,
+ partial
+
+ Extract using &man.7z.1; instead of &man.bsdtar.1; and sets
+ EXTRACT_SUFX=.7z. The
+ p7zip option forces a dependency on the
+ 7z from archivers/p7zip if the one from the base
+ system is not able to extract the files.
+ EXTRACT_SUFX is not changed if the
+ partial option is used, this can be used if
+ the main distribution file does not have a
+ .7z extension.
+
+
ada
Possible arguments: (none), 47,
49, 5
Depends on an Ada-capable
compiler, and sets CC accordingly. Defaults
to a gcc 4.9 based compiler, use
:47 to use the older
gcc 4.7 based one and
:5 to use the newer
gcc 5 based one.
autoreconf
Possible arguments: (none), build
Runs autoreconf. It encapsulates the
aclocal, autoconf,
autoheader, automake,
autopoint, and libtoolize
commands. Each command applies to
${CONFIGURE_WRKSRC}/configure.ac or its old
name, ${CONFIGURE_WRKSRC}/configure.in. If
configure.ac defines subdirectories with
their own configure.ac using
AC_CONFIG_SUBDIRS,
autoreconf will recursively update those as
well. The :build argument only adds build
time dependencies on those tools but does not run
autoreconf.
blaslapack
Possible arguments: (none), atlas,
netlib (default),
gotoblas, openblas
Adds dependencies on Blas / Lapack libraries.
bison
Possible arguments: (none), build,
run, both
Uses devel/bison By default,
with no arguments or with the build argument,
it implies bison is a build-time dependency,
run implies a run-time dependency, and
both implies both run-time and build-time
dependencies.
charsetfix
Possible arguments: (none)
Prevents the port from installing
charset.alias. This must be installed only
by converters/libiconv.
CHARSETFIX_MAKEFILEIN can be set to a path
relative to WRKSRC if
charset.alias is not installed by
${WRKSRC}/Makefile.in.
cmake
Possible arguments: (none), outsource,
run
Uses CMake for configuring and
building. With the outsource argument, an
out-of-source build will be performed. With the
run argument, a run-time dependency is
registered. For more information see .
compiler
Possible arguments: (none), c++14-lang,
c++11-lang, gcc-c++11-lib,
c++11-lib, c++0x,
c11, openmp,
nestedfct, features
Determines which compiler to use based on any given wishes.
Use c++14-lang if the port needs a
C++14-capable compiler, gcc-c++11-lib if the
port needs the g++ compiler with a C++11
library, or c++11-lib if the port needs
a C++11-ready standard library. If the port needs a compiler
understanding C++11, C++0X, C11, OpenMP, or nested functions,
the corresponding parameters can be used. Use
features to request a list of features
supported by the default compiler. After including
bsd.port.pre.mk the port can inspect the
results using these variables:
COMPILER_TYPE: the default compiler
on the system, either gcc or clang
ALT_COMPILER_TYPE: the alternative
compiler on the system, either gcc or clang. Only set if
two compilers are present in the base system.
COMPILER_VERSION: the first two
digits of the version of the default compiler.
ALT_COMPILER_VERSION: the first two
digits of the version of the alternative compiler, if
present.
CHOSEN_COMPILER_TYPE: the chosen
compiler, either gcc or clang
COMPILER_FEATURES: the features
supported by the default compiler. It currently lists the
C++ library.
cpe
Possible arguments: (none)
Include Common Platform Enumeration
(CPE) information in package manifest as a
CPE 2.3 formatted string. See the CPE
specification for details. To add
CPE information to a port, follow these
steps:
Search for the official CPE para for the software
product either by using the NVD's CPE
search engine or in the official
CPE dictionary (warning, very
large XML file). Do not ever
make up CPE data.
Add cpe to USES
and compare the result of make -V CPE_STR
to the CPE dictionary para. Continue one
step at a time until make -V CPE_STR is
correct.
If the product name (second field, defaults to
PORTNAME) is incorrect, define
CPE_PRODUCT.
If the vendor name (first field, defaults to
CPE_PRODUCT) is incorrect, define
CPE_VENDOR.
If the version field (third field, defaults to
PORTVERSION) is incorrect, define
CPE_VERSION.
If the update field (fourth field, defaults to empty) is
incorrect, define CPE_UPDATE.
If it is still not correct, check
Mk/Uses/cpe.mk for additional details,
or contact the &a.ports-secteam;.
Derive as much as possible of the CPE
name from existing variables such as
PORTNAME and
PORTVERSION. Use variable modifiers to
extract the relevant portions from these variables rather
than hardcoding the name.
Always run make -V
CPE_STR and check the output before committing
anything that changes PORTNAME or
PORTVERSION or any other variable which
is used to derive CPE_STR.
cran
Possible arguments: (none),
auto-plist
Uses the Comprehensive R Archive Network. Specify
auto-plist to automatically generate
pkg-plist.
desktop-file-utils
Possible arguments: (none)
Uses update-desktop-database from
devel/desktop-file-utils. An
extra post-install step will be run without interfering with any
post-install steps already in the port
Makefile. A line with @desktop-file-utils
will be added to the plist.
desthack
Possible arguments: (none)
Changes the behavior of GNU configure to properly support
DESTDIR in case the original software does
not.
display
Possible arguments: (none),
ARGS
Set up a virtual display environment. If the environment
variable DISPLAY is not set, then
Xvfb is added as a build dependency,
and CONFIGURE_ENV is extended with the port
number of the currently running instance of
Xvfb. The
ARGS
parameter defaults to install and controls
the phase around which to start and stop the virtual
display.
dos2unix
Possible arguments: (none)
The port has files with line endings in
DOS format which need to be converted. Several
variables can be set to control which files will be converted.
The default is to convert all files,
including binaries. See for
examples.
DOS2UNIX_REGEX: match file names
based on a regular expression.
DOS2UNIX_FILES: match literal file
names.
DOS2UNIX_GLOB: match file names based
on a glob pattern.
DOS2UNIX_WRKSRC: the directory from
which to start the conversions. Defaults to
${WRKSRC}.
drupal
Possible arguments: 6,
7, module,
theme
Automate installation of a port that is a
Drupal theme or module. Use with the
version of Drupal that the port is expecting. For example,
USES=drupal:6,module says that this port
creates a Drupal 6 module. A Drupal 7 theme can be specified
with USES=drupal:7,theme.
execinfo
Possible arguments: (none)
Add a library dependency on devel/libexecinfo if
libexecinfo.so is not present in the base
system.
fakeroot
Possible arguments: (none)
Changes some default behavior of build systems to allow
installing as a user. See for more
information on fakeroot.
fam
Possible arguments: (none), fam,
gamin
Uses a File Alteration Monitor as a library dependency,
either devel/fam or devel/gamin. End users can set
WITH_FAM_SYSTEM to specify their preference.
fmake
Possible arguments: (none)
Uses devel/fmake as a
build-time dependency.
fonts
Possible arguments: (none), fc,
fcfontsdir (default),
fontsdir, none
Adds a runtime dependency on tools needed to register fonts.
Depending on the argument, add a @fc ${FONTSDIR}
line, @fcfontsdir
${FONTSDIR} line, @fontsdir
${FONTSDIR} line, or no line if the argument is
none, to the plist.
FONTSDIR defaults to
${PREFIX}/share/fonts/${FONTNAME} and
FONTNAME to ${PORTNAME}.
Add FONTSDIR to PLIST_SUB
and SUB_LIST
fortran
Possible arguments: gcc (default),
ifort
Uses the Fortran compiler from either GNU or Intel.
fuse
Possible arguments: (none)
The port will depend on the FUSE library and handle the
dependency on the kernel module depending on the version of
&os;.
gecko
Possible arguments: libxul (default),
firefox, seamonkey,
thunderbird, build,
XY,
XY+
Add a dependency on different
gecko based applications. If
libxul is used, it is the only argument
allowed. When the argument is not libxul,
the firefox, seamonkey, or
thunderbird arguments can be used, along with
optional build and
XY/XY+
version arguments.
gettext
Possible arguments: (none)
Deprecated. Will include both gettext-runtime
and gettext-tools.
gettext-runtime
Possible arguments: (none), lib
(default), build,
run
Uses devel/gettext-runtime.
By default, with no arguments or with the lib
argument, implies a library dependency on
libintl.so. build and
run implies, respectively a build-time and a
run-time dependency on gettext.
gettext-tools
Possible arguments: (none), build
(default), run
Uses devel/gettext-tools. By
default, with no argument, or with the build
argument, a build time dependency on msgfmt
is registered. With the run argument, a
run-time dependency is registered.
ghostscript
Possible arguments: X,
build, run,
nox11
A specific version X can be used.
Possible versions are 7,
8, 9 (default), and
agpl. nox11 indicates
that the -nox11 version of the port is
required. build and run
add build- and run-time dependencies on
Ghostscript. The default is both
build- and run-time dependencies.
gmake
Possible arguments: (none), lite
Uses devel/gmake, or devel/gmake-lite if the
lite argument is used, as a build-time
dependency and sets up the environment to use
gmake as the default make
for the build.
gperf
Possible arguments: (none)
Add a buildtime dependency on devel/gperf if gperf
is not present in the base system.
gssapi
Possible arguments: (none), base
(default), heimdal, mit,
flags, bootstrap
Handle dependencies needed by consumers of the
GSS-API. Only libraries that provide the
Kerberos mechanism are available. By
default, or set to base, the
GSS-API library from the base system is used.
Can also be set to heimdal to use security/heimdal, or
mit to use security/krb5.
When the local Kerberos
installation is not in LOCALBASE, set
HEIMDAL_HOME (for heimdal)
or KRB5_HOME (for krb5) to
the location of the Kerberos
installation.
These variables are exported for the ports to use:
GSSAPIBASEDIR
GSSAPICPPFLAGS
GSSAPIINCDIR
GSSAPILDFLAGS
GSSAPILIBDIR
GSSAPILIBS
GSSAPI_CONFIGURE_ARGS
The flags option can be given alongside
base, heimdal, or
mit to automatically add
GSSAPICPPFLAGS,
GSSAPILDFLAGS, and
GSSAPILIBS to CFLAGS,
LDFLAGS, and LDADD,
respectively. For example, use
base,flags.
The bootstrap option is a special prefix
only for use by security/krb5 and
security/heimdal. For example,
use bootstrap,mit.
Typical Use
OPTIONS_SINGLE= GSSAPI
OPTIONS_SINGLE_GSSAPI= GSSAPI_BASE GSSAPI_HEIMDAL GSSAPI_MIT GSSAPI_NONE
GSSAPI_BASE_USES= gssapi
GSSAPI_BASE_CONFIGURE_ON= --with-gssapi=${GSSAPIBASEDIR} ${GSSAPI_CONFIGURE_ARGS}
GSSAPI_HEIMDAL_USES= gssapi:heimdal
GSSAPI_HEIMDAL_CONFIGURE_ON= --with-gssapi=${GSSAPIBASEDIR} ${GSSAPI_CONFIGURE_ARGS}
GSSAPI_MIT_USES= gssapi:mit
GSSAPI_MIT_CONFIGURE_ON= --with-gssapi=${GSSAPIBASEDIR} ${GSSAPI_CONFIGURE_ARGS}
GSSAPI_NONE_CONFIGURE_ON= --without-gssapi
horde
Possible arguments: (none)
Add buildtime and runtime dependencies on devel/pear-channel-horde. Other
Horde dependencies can be added
with USE_HORDE_BUILD and
USE_HORDE_RUN. See for more information.
iconv
Possible arguments: (none), lib,
build,
patch, translit,
wchar_t
Uses iconv functions, either from the
port converters/libiconv as a
build-time and run-time dependency, or from the base system on
10-CURRENT after a native iconv was committed
in 254273. By default, with no arguments
or with the lib argument, implies
iconv with build-time and run-time
dependencies. build implies a build-time
dependency, and patch implies a patch-time
dependency. If the port uses the WCHAR_T or
//TRANSLIT iconv extensions, add the relevant
arguments so that the correct iconv is used. For more
information see .
imake
Possible arguments: (none), env,
notall, noman
Add devel/imake as a
build-time dependency and run xmkmf -a during
the configure stage. If the
env argument is given, the
configure target is not set. If the
flag is a problem for the port, add the
notall argument. If xmkmf
does not generate a install.man
target, add the noman argument.
kmod
Possible arguments: (none)
Fills in the boilerplate for kernel module ports,
currently:
Add kld to
CATEGORIES.
Set SSP_UNSAFE.
Set IGNORE if the kernel sources are
not found in SRC_BASE.
Define KMODDIR to
/boot/modules by default, add it to
PLIST_SUB and
MAKE_ENV, and create it upon
installation. If KMODDIR is set to
/boot/kernel, it will be rewritten to
/boot/modules. This prevents breaking
packages when upgrading the kernel due to
/boot/kernel being renamed to
/boot/kernel.old in the process.
Handle cross-referencing kernel modules upon
installation and deinstallation, using @kld.
lha
Possible arguments: (none)
Set EXTRACT_SUFX to
.lzh
libarchive
Possible arguments: (none)
Registers a dependency on archivers/libarchive. Any ports
depending on libarchive must include
USES=libarchive.
libedit
Possible arguments: (none)
Registers a dependency on devel/libedit. Any ports depending on
libedit must include
USES=libedit.
libtool
Possible arguments: (none), keepla,
build
Patches libtool scripts. This must be
added to all ports that use libtool. The
keepla argument can be used to keep
.la files. Some ports do not ship with
their own copy of libtool and need a build time dependency on
devel/libtool, use the
:build argument to add such
dependency.
localbase
Possible arguments: (none)
Ensures that libraries from dependencies in
LOCALBASE are used instead of the ones from
the base system. Ports that depend on libraries that are also
present in the base system should use this. It is also used
internally by a few other USES.
lua
Possible arguments: (none),
XY+,
XY,
build, run
Adds a dependency on Lua. By
default this is a library dependency, unless overridden by the
build or run option. The
default version is 5.2, unless set by the
XY parameter (for
example, 51 or
52+).
makeinfo
Possible arguments: (none)
Add a build-time dependency on makeinfo
if it is not present in the base system.
makeself
Possible arguments: (none)
Indicates that the distribution files are makeself archives
and sets the appropriate dependencies.
metaport
Possible arguments: (none)
Sets the following variables to make it easier to create a
metaport: MASTER_SITES,
DISTFILES, EXTRACT_ONLY,
NO_BUILD, NO_INSTALL,
NO_MTREE, NO_ARCH.
mono
Possible arguments: (none)
Adds a dependency on the Mono
(currently only C#) framework by setting the appropriate
dependencies.
motif
Possible arguments: (none)
Uses x11-toolkits/open-motif
as a library dependency. End users can set
WANT_LESSTIF for the dependency to be on
x11-toolkits/lesstif instead of
x11-toolkits/open-motif.
ncurses
Possible arguments: (none), base,
port
Uses ncurses, and causes some
useful variables to be set.
ninja
Possible arguments: (none)
Uses ninja to build the port.
End users can set NINJA_VERBOSE for verbose
output.
objc
Possible arguments: (none)
Add objective C dependencies (compiler, runtime library) if
the base system does not support it.
openal
Possible arguments: al,
soft (default), si,
alut
Uses OpenAL. The backend can be
specified, with the software implementation as the default. The
user can specify a preferred backend with
WANT_OPENAL. Valid values for this knob are
soft (default) and
si.
pathfix
Possible arguments: (none)
Look for Makefile.in and
configure in the port's associated sources
and fix common paths to make sure they respect the &os;
hierarchy. If the port uses automake, set
PATHFIX_MAKEFILEIN to
Makefile.am if needed.
pear
Possible arguments: (none)
Adds a dependency on devel/pear. It will setup default
behavior for software using the PHP
Extension and Application Repository. See for more information.
perl5
Possible arguments: (none)
Depends on Perl. These variables
can be set:
PERL_VERSION: Full version of
Perl to use, or the default if
not set
PERL_ARCH: Directory name of
architecture dependent libraries, defaults to
mach
PERL_PORT: Name of the
Perl port to be installed, the
default is derived from
PERL_VERSION
SITE_PERL: Directory name for site
specific Perl packages
USE_PERL5: Phases in which to use
Perl, can be
extract, patch,
build, install, or
run. It can also be
configure, modbuild,
or modbuildtiny when
Makefile.PL,
Build.PL, or the Module::Build::Tiny
flavor of Build.PL is required. It
defaults to build run.
pgsql
Possible arguments: (none),
X.Y,
X.Y+,
X.Y-
Provide support for PostgreSQL. Maintainer can set version
required. Minimum and maximum versions can be specified; for
example, 9.0-, 8.4+.
Add PostgreSQL component dependency, using
WANT_PGSQL=component[:target]. for example,
WANT_PGSQL=server:configure pltcl plperl For
the full list use make -V
_USE_PGSQL_DEP.
pkgconfig
Possible arguments: (none), build
(default), run,
both
Uses devel/pkgconf. With no
arguments or with the build argument, it
implies pkg-config as a build-time
dependency. run implies a run-time
dependency and both implies both run-time and
build-time dependencies.
pure
Possible arguments: (none), ffi
Uses lang/pure. Largely used
for building related pure ports.
With the ffi argument, it implies devel/pure-ffi as a run-time
dependency.
python
Possible arguments: (none),
X.Y,
X.Y+,
-X.Y,
X.Y-Z.A,
build, run
Uses Python. A supported version
or version range can be specified. If Python is only needed at
build or run time, it can be set as a build or run dependency
with build or run. See
for more information.
qmail
Possible arguments: (none), build,
run, both,
vars
Uses mail/qmail. With the
build argument, it implies
qmail as a build-time dependency.
run implies a run-time dependency. Using no
argument or the both argument implies both
run-time and build-time dependencies. vars
will only set QMAIL variables for the port to use.
qmake
Possible arguments: (none), norecursive,
outsource
Uses QMake for configuring. For
more information see .
readline
Possible arguments: (none), port
Uses readline as a library
dependency, and sets CPPFLAGS and
LDFLAGS as necessary. If the
port argument is used or if readline is not
present in the base system, add a dependency on devel/readline
scons
Possible arguments: (none)
Provide support for the use of devel/scons
shared-mime-info
Possible arguments: (none)
Uses update-mime-database from
misc/shared-mime-info. This uses
will automatically add a post-install step in such a way that
the port itself still can specify there own post-install step if
needed. It also add an @shared-mime-info
para to the plist.
shebangfix
Possible arguments: (none)
A lot of software uses incorrect locations for script
interpreters, most notably /usr/bin/perl
and /bin/bash. The shebagngfix macro fixes
shebang lines in scripts listed in
SHEBANG_FILES. The shebangfix macro is run
from ${WRKSRC}, so it can contain paths that
are relative to ${WRKSRC}. It can also deal
with absolute paths if files outside of
${WRKSRC} require patching. For
example:
USES= shebangfix
SHEBANG_FILES= scripts/foobar.pl scripts/*.sh
Currently
Bash,
Java, Ksh,
Lua,
Perl, PHP,
Python,
Ruby, Tcl,
and Tk are supported by
default.
There are three configuration variables:
SHEBANG_LANG
The list of supported interpreters.
interp_CMD
The path to the command interpreter on &os;. The
default value is
${LOCALBASE}/bin/interp.
interp_OLD_CMD
The list of wrong invocations of interpreters. These
are typically obsolete paths, or paths used on other
operating systems that are incorrect on &os;. They
will be replaced by the correct path in
interp_CMD.
This list will always be part of
interp_OLD_CMD:
"/usr/bin/env interp"
/bin/interp
/usr/bin/interp.
To add another interpreter, set
SHEBANG_LANG. For example:
SHEBANG_LANG= lua
interp_OLD_CMD
will contain multiple values. Any entry with spaces must be
quoted. For example, if it was not already defined, the
Ksh entry could be defined as:
SHEBANG_LANG= ksh
ksh_OLD_CMD= "/usr/bin/env ksh" /bin/ksh /usr/bin/ksh
ksh_CMD= ${LOCALBASE}/bin/ksh
Some software uses strange locations for an interpreter.
For example, an application might expect
Python to be located in
/opt/bin/python2.7. The strange path to be
replaced can be declared in the port
Makefile:
python_OLD_CMD= /opt/bin/python2.7
The fixing of shebangs is done during the
patch phase. If scripts are
created with incorrect shebangs during the
build phase, the build process (for
examples, the configure script, or the
Makefiles) must be patched to generate
the right shebangs. Correct paths for supported interpreters
are available in
interp_CMD.
tar
Possible arguments: (none), Z,
bz2, bzip2,
lzma, tbz,
tbz2,
tgz, txz,
xz
Set EXTRACT_SUFX to
.tar, .tar.Z,
.tar.bz2, .tar.bz2,
.tar.lzma, .tbz,
.tbz2,
.tgz, .txz or
.tar.xz respectively.
tcl
Possible arguments: version,
wrapper, build,
run, tea
Add a dependency on Tcl. A
specific version can be requested using
version. The version can be empty,
one or more exact version numbers (currently
84, 85, or
86), or a minimal version number (currently
84+, 85+ or
86+). To only request a non version specific
wrapper, use wrapper. A build- or run-time
only dependency can be specified using build
or run. To build the port using the
Tcl Extension Architecture, use
tea. After including
bsd.port.pre.mk the port can inspect the
results using these variables:
TCL_VER: chosen major.minor version
of Tcl
TCLSH: full path of the
Tcl interpreter
TCL_LIBDIR: path of the
Tcl libraries
TCL_INCLUDEDIR: path of the
Tcl C header files
TK_VER: chosen major.minor version of
Tk
WISH: full path of the
Tk interpreter
TK_LIBDIR: path of the
Tk libraries
TK_INCLUDEDIR: path of the
Tk C header files
terminfo
Possible arguments: (none)
Adds @terminfo
to the plist. Use when the port installs
*.terminfo files
in ${PREFIX}/share/misc.
tk
Same as arguments for tcl
Small wrapper when using both Tcl
and Tk. The same variables are
returned as when using Tcl.
twisted
Possible arguments: (none), ARGS
Add a dependency on twistedCore.
The list of required components can be specified as a value of
this variable. ARGS can be one of:
build: add
twistedCore or any specified
component as build dependency.
run: add
twistedCore or any specified
component as run dependency.
Besides build and run,
one or more other supported twisted
components can be specified. Supported values are listed in
Uses/twisted.mk.
uidfix
Possible arguments: (none)
Changes some default behavior (mostly variables) of
the build system to allow installing this port as a normal
user. Try this in the port before adding
NEED_ROOT=yes
uniquefiles
Possible arguments: (none), dirs
Make files or directories 'unique', by adding a prefix or
suffix. If the dirs argument is used, the
port needs a prefix (a only a prefix) based on
UNIQUE_PREFIX for standard directories
DOCSDIR, EXAMPLESDIR,
DATADIR, WWWDIR,
ETCDIR. These variables are available for
ports:
UNIQUE_PREFIX: The prefix to be used
for directories and files. Default:
${PKGNAMEPREFIX}.
UNIQUE_PREFIX_FILES: A list of files
that need to be prefixed. Default: empty.
UNIQUE_SUFFIX: The suffix to be used
for files. Default:
${PKGNAMESUFFIX}.
UNIQUE_SUFFIX_FILES: A list of files
that need to be suffixed. Default: empty.
webplugin
Possible arguments: (none), ARGS
Automatically create and remove symbolic links for each
application that supports the webplugin framework.
ARGS can be one of:
gecko: support plug-ins based on
Gecko
native: support plug-ins for Gecko,
Opera, and WebKit-GTK
linux: support Linux plug-ins
all (default, implicit): support all
plug-in types
(individual entries): support only the browsers
listed
These variables can be adjusted:
WEBPLUGIN_FILES: No default, must be
set manually. The plug-in files to install.
WEBPLUGIN_DIR: The directory to
install the plug-in files to, default
PREFIX/lib/browser_plugins/WEBPLUGIN_NAME.
Set this if the port installs plug-in files outside of the
default directory to prevent broken symbolic links.
WEBPLUGIN_NAME: The final directory
to install the plug-in files into, default
PKGBASE.
xfce
Possible arguments: (none), gtk3
Provide support for Xfce related
ports. See for details.
The gtk3 argument specifies that the port
requires GTK3 support. It adds
additional features provided by some core components, for
example, x11/libxfce4menu and
x11-wm/xfce4-panel.
zip
Possible arguments: (none),
infozip
Indicates that the distribution files use the ZIP
compression algorithm. For files using the InfoZip algorithm
the infozip argument must be passed to set
the appropriate dependencies.
zope
Possible arguments: (none)
Uses www/zope. Mostly used
for building zope related ports.
ZOPE_VERSION can be used by a port to
indicate that a specific version of
zope shall be used.
Index: head/share/xml/man-refs.ent
===================================================================
--- head/share/xml/man-refs.ent (revision 48697)
+++ head/share/xml/man-refs.ent (revision 48698)
@@ -1,6763 +1,6764 @@
[1">
+7z1">
CC1">
Mail1">
X1">
XFree861">
Xorg1">
a2p1">
addftinfo1">
addr2line1">
afmtodit1">
alias1">
alloc1">
apply1">
apropos1">
ar1">
arpaname1">
as1">
asa1">
at1">
atf-check1">
atf-sh1">
atf-test-program1">
atq1">
atrm1">
auditreduce1">
awk1">
b64decode1">
b64encode1">
basename1">
bash1">
batch1">
bc1">
bdes1">
bg1">
biff1">
bindkey1">
bmake1">
brandelf1">
break1">
breaksw1">
bsdcpio1">
bsdgrep1">
bsdiff1">
bsdtar1">
bsnmpd1">
bsnmpget1">
bspatch1">
bthost1">
btsockstat1">
builtin1">
builtins1">
byacc1">
bzegrep1">
bzfgrep1">
bzgrep1">
bzip21">
c++1">
c..filt1">
c2ph1">
c891">
c991">
cal1">
calendar1">
cap_mkdb1">
case1">
cat1">
catman1">
cc1">
cccp1">
cd1">
cdcontrol1">
cdrecord1">
chdir1">
checknr1">
chflags1">
chfn1">
chgrp1">
chio1">
chkey1">
chmod1">
chpass1">
chsh1">
ci1">
ckdist1">
cksum1">
clear1">
clang1">
clang++1">
clang-cpp1">
cmp1">
co1">
col1">
colcrt1">
colldef1">
colrm1">
column1">
comm1">
command1">
compile_et1">
complete1">
compress1">
continue1">
cp1">
cpasswd1">
cpio1">
cpp1">
cpuset1">
crontab1">
crunchgen1">
crunchide1">
crypt1">
csh1">
csplit1">
csup1">
ctags1">
ctfconvert1">
ctfdump1">
ctfmerge1">
ctm1">
ctm_dequeue1">
ctm_rmail1">
ctm_smail1">
cu1">
cursor1">
cut1">
cvs1">
cvsup1">
date1">
dc1">
dd1">
default1">
demandoc1">
df1">
dga1">
dialog1">
diff1">
diff31">
dig1">
dirname1">
dirs1">
dnskeygen1">
dnsquery1">
do1">
domainname1">
done1">
doscmd1">
dprofpp1">
dpv1">
drill1">
dtmfdecode1">
dtrace1">
dtruss1">
du1">
echo1">
echotc1">
ed1">
edit1">
edit-pr1">
ee1">
egrep1">
elf2aout1">
elfcopy1">
elfdump1">
elif1">
else1">
emacs1">
end1">
endif1">
endsw1">
enigma1">
env1">
eqn1">
esac1">
eval1">
ex1">
exec1">
exit1">
expand1">
export1">
expr1">
f771">
false1">
fc1">
fdformat1">
fdread1">
fdwrite1">
fetch1">
fg1">
fgrep1">
fi1">
fifolog1">
file1">
file2c1">
filetest1">
find1">
finger1">
flex1">
flex++1">
fmt1">
fold1">
fontedit1">
for1">
foreach1">
freebsd-version1">
from1">
fstat1">
fsync1">
ftp1">
fuser1">
g++1">
g711conv1">
gasp1">
gate-ftp1">
gawk1">
gcc1">
gcore1">
gcov1">
gcpp1">
gdb1">
gdbserver1">
gencat1">
gensnmptree1">
getNAME1">
getconf1">
getent1">
getfacl1">
getopt1">
getopts1">
glob1">
gnu-ar1">
gnu-ranlib1">
gnugrep1">
goto1">
gperf1">
gprof1">
grep1">
grn1">
grodvi1">
groff1">
grog1">
grohtml1">
grolbp1">
grolj41">
grops1">
grotty1">
groups1">
growisofs1">
gs1">
gtar1">
gunzip1">
gzcat1">
gzexe1">
gzip1">
h2ph1">
h2xs1">
hash1">
hashstat1">
hd1">
head1">
hesinfo1">
hexdump1">
history1">
host1">
hostname1">
hpftodit1">
hup1">
iconv1">
id1">
ident1">
idprio1">
if1">
imake1">
imwheel1">
indent1">
indxbib1">
info1">
infokey1">
install1">
install-info1">
intro1">
introduction1">
ipcrm1">
ipcs1">
ipftest1">
ipnat1">
ipresend1">
ipsend1">
iptest1">
jobid1">
jobs1">
join1">
jot1">
kbdcontrol1">
kbdmap1">
kcon1">
kdestroy1">
kdump1">
kenv1">
kerberos1">
key1">
keyinfo1">
keyinit1">
keylogin1">
keylogout1">
kf1">
kgdb1">
kgetcred1">
kill1">
killall1">
kinit1">
klist1">
kpasswd1">
krb5-config1">
ksu1">
kswitch1">
ktrace1">
lam1">
last1">
lastcomm1">
ld1">
ld-elf.so.11">
ldd1">
leave1">
less1">
lessecho1">
lesskey1">
lex1">
lex++1">
limit1">
limits1">
link1">
lint1">
lkbib1">
lldb1">
ln1">
lndir1">
loadfont1">
locale1">
locate1">
lock1">
lockf1">
lockstat1">
log1">
logger1">
login1">
logins1">
logname1">
logout1">
look1">
lookbib1">
lorder1">
lp1">
lpq1">
lpr1">
lprm1">
lptest1">
ls1">
ls-F1">
lsvfs1">
lynx1">
lzcat1">
lzma1">
lzmadec1">
lzmainfo1">
m41">
mail1">
mailq1">
make1">
makeinfo1">
makewhatis1">
man1">
mandoc1">
manpath1">
mcon1">
md51">
merge1">
mesg1">
minigzip1">
ministat1">
mk_cmds1">
mkcsmapper1">
mkdep1">
mkdir1">
mkesdb1">
mkfifo1">
mkfilters1">
mkfontdir1">
mkimg1">
mklocale1">
mkstr1">
mktemp1">
mmroff1">
more1">
mptable1">
msgs1">
mt1">
mv1">
nc1">
ncal1">
ncplist1">
ncplogin1">
ncplogout1">
neqn1">
netstat1">
newaliases1">
newgrp1">
nex1">
nfsstat1">
nice1">
nl1">
nm1">
nohup1">
notify1">
nroff1">
nsgmls1">
nslookup1">
nsupdate1">
numactl1">
nvi1">
nview1">
objcopy1">
objdump1">
objformat1">
od1">
omshell1">
onintr1">
openssl1">
opieinfo1">
opiekey1">
opiepasswd1">
otp-md41">
otp-md51">
pagesize1">
passwd1">
paste1">
patch1">
pathchk1">
pawd1">
pax1">
perl1">
perl5004delta1">
perl5005delta1">
perlapi1">
perlapio1">
perlbc1">
perlbook1">
perlboot1">
perlbot1">
perlbug1">
perlcall1">
perlcc1">
perlcompile1">
perldata1">
perldbmfilter1">
perldebguts1">
perldebug1">
perldelta1">
perldiag1">
perldoc1">
perldsc1">
perlembed1">
perlfaq1">
perlfaq11">
perlfaq21">
perlfaq31">
perlfaq41">
perlfaq51">
perlfaq61">
perlfaq71">
perlfaq81">
perlfaq91">
perlfork1">
perlform1">
perlfunc1">
perlguts1">
perlhack1">
perlhist1">
perlintern1">
perlipc1">
perllocale1">
perllol1">
perlmod1">
perlmodinstall1">
perlmodlib1">
perlnumber1">
perlobj1">
perlop1">
perlopentut1">
perlpod1">
perlport1">
perlre1">
perlref1">
perlreftut1">
perlrun1">
perlsec1">
perlstyle1">
perlsub1">
perlsyn1">
perlthrtut1">
perltie1">
perltoc1">
perltodo1">
perltoot1">
perltootc1">
perltrap1">
perlvar1">
perlxs1">
perlxstut1">
perror1">
pfbtops1">
pftp1">
pgrep1">
pic1">
pim6stat1">
pkg_add1">
pkg_check1">
pkg_create1">
pkg_delete1">
pkg_info1">
pkg_sign1">
pkg_update1">
pkg_updating1">
pkg_version1">
pkgdb1">
pkill1">
pl2pm1">
pmcstudy1">
pod2html1">
pod2man1">
popd1">
portaudit1">
portlint1">
portmanager1">
portupgrade1">
query-pr1">
pr1">
praudit1">
printenv1">
printf1">
procstat1">
protect1">
ps1">
psbb1">
psroff1">
pushd1">
pwait1">
pwd1">
quota1">
ranlib1">
rcp1">
rcs1">
rcsclean1">
rcsdiff1">
rcsfreeze1">
rcsintro1">
rcsmerge1">
rdist1">
read1">
readelf1">
readonly1">
realpath1">
recoverdisk1">
red1">
ree1">
refer1">
rehash1">
repeat1">
reset1">
rev1">
revoke1">
rfcomm_sppd1">
rlog1">
rlogin1">
rm1">
rmd1601">
rmdir1">
rpcgen1">
rs1">
rsh1">
rsync1">
rtld1">
rtprio1">
rup1">
ruptime1">
rusers1">
rwall1">
rwho1">
rxvt1">
s2p1">
sane-find-scanner1">
sasc1">
scanimage1">
sccs1">
sched1">
scon1">
scp1">
script1">
sdiff1">
sed1">
send-pr1">
sendbug1">
seq1">
set1">
setbuf1">
setenv1">
setfacl1">
setfib1">
settc1">
setty1">
setvar1">
setxkbmap1">
sftp1">
sgmlnorm1">
sgsc1">
sh1">
sha11">
sha2561">
shar1">
shift1">
shutdown1">
size1">
skey1">
sleep1">
slogin1">
smbutil1">
sntp1">
sockstat1">
soelim1">
soeliminate1">
sort1">
source1">
split1">
sscop1">
ssh1">
ssh-add1">
ssh-agent1">
ssh-copy-id1">
ssh-keygen1">
ssh-keyscan1">
startslip1">
startx1">
stat1">
stdbuf1">
stop1">
strings1">
strip1">
stty1">
su1">
sum1">
suspend1">
svn1">
svnlite1">
switch1">
symorder1">
systat1">
tabs1">
tail1">
talk1">
tar1">
tbl1">
tblgen1">
tcopy1">
tcpdump1">
tcpslice1">
tcsh1">
tee1">
telltc1">
telnet1">
test1">
texindex1">
tfmtodit1">
tftp1">
then1">
time1">
timeout1">
tip1">
top1">
touch1">
tput1">
tr1">
trace1">
trap1">
troff1">
true1">
truncate1">
truss1">
tset1">
tsort1">
tty1">
type1">
uhsoctl1">
ul1">
ulimit1">
umask1">
unalias1">
uname1">
uncomplete1">
uncompress1">
unexpand1">
unhash1">
unifdef1">
uniq1">
units1">
unlimit1">
unlink1">
unlzma1">
unset1">
unsetenv1">
until1">
unvis1">
unxz1">
unzip1">
uptime1">
usbhidaction1">
usbhidctl1">
users1">
uuconv1">
uucp1">
uudecode1">
uuencode1">
uuidgen1">
uulog1">
uuname1">
uupick1">
uustat1">
uuto1">
uux1">
vacation1">
vgrind1">
vi1">
vidcontrol1">
vidfont1">
view1">
vim1">
vis1">
vt220keys1">
vttest1">
w1">
w3m1">
wait1">
wall1">
wc1">
what1">
whatis1">
where1">
whereis1">
which1">
while1">
who1">
whoami1">
whois1">
window1">
write1">
wtmpcvt1">
xargs1">
xdm1">
xdpyinfo1">
xf86cfg1">
xf86config1">
xfontsel1">
xkeyboard-config7">
xlsfonts1">
xmodmap1">
xo1">
xorgcfg1">
xorgconfig1">
xrandr1">
xrdb1">
xset1">
xstr1">
xten1">
xterm1">
xvidtune1">
xz1">
xzcat1">
xzdec1">
yacc1">
yes1">
ypcat1">
ypchfn1">
ypchpass1">
ypchsh1">
ypmatch1">
yppasswd1">
ypwhich1">
yyfix1">
zcat1">
zcmp1">
zdiff1">
zegrep1">
zfgrep1">
zfs1">
zforce1">
zgrep1">
zmore1">
znew1">
zsh1">
zstreamdump1">
__syscall2">
_exit2">
abort22">
accept2">
access2">
acct2">
adjtime2">
aio_cancel2">
aio_error2">
aio_fsync2">
aio_mlock2">
aio_read2">
aio_return2">
aio_suspend2">
aio_waitcomplete2">
aio_write2">
audit2">
auditctl2">
auditon2">
bind2">
bindat2">
brk2">
cap_enter2">
cap_fcntls_limit2">
cap_ioctls_limit2">
cap_new2">
cap_rights_limit2">
chdir2">
chflags2">
chmod2">
chown2">
chroot2">
clock_getres2">
clock_gettime2">
clock_settime2">
close2">
closefrom2">
connect2">
connectat2">
cpuset2">
cpuset_getaffinity2">
creat2">
dup2">
dup22">
eaccess2">
errno2">
execve2">
exit2">
extattr2">
extattr_delete_fd2">
extattr_delete_file2">
extattr_get_fd2">
extattr_get_file2">
extattr_set_fd2">
extattr_set_file2">
fchdir2">
fchflags2">
fchmod2">
fchown2">
fcntl2">
ffclock2">
fhopen2">
fhstat2">
fhstatfs2">
flock2">
fork2">
fpathconf2">
fstat2">
fstatfs2">
fsync2">
ftruncate2">
futimes2">
getaudit2">
getauid2">
getdents2">
getdirentries2">
getdtablesize2">
getegid2">
geteuid2">
getfh2">
getfsstat2">
getgid2">
getgroups2">
getitimer2">
getlogin2">
getloginclass2">
getpeername2">
getpgid2">
getpgrp2">
getpid2">
getppid2">
getpriority2">
getrlimit2">
getrusage2">
getsid2">
getsockname2">
getsockopt2">
gettimeofday2">
getuid2">
i386_get_ioperm2">
i386_get_ldt2">
i386_set_ioperm2">
i386_set_ldt2">
i386_vm862">
intro2">
ioctl2">
issetugid2">
jail2">
jail_attach2">
kenv2">
kevent2">
kill2">
killpg2">
kldfind2">
kldfirstmod2">
kldload2">
kldnext2">
kldstat2">
kldsym2">
kldunload2">
kqueue2">
kse2">
ktrace2">
lchmod2">
lchown2">
link2">
lio_listio2">
listen2">
lseek2">
lstat2">
lutimes2">
madvise2">
mincore2">
minherit2">
mkdir2">
mkfifo2">
mknod2">
mlock2">
mlockall2">
mmap2">
modfind2">
modfnext2">
modnext2">
modstat2">
mount2">
mprotect2">
mq_close2">
mq_getattr2">
mq_notify2">
mq_open2">
mq_receive2">
mq_send2">
mq_setattr2">
msgctl2">
msgget2">
msgrcv2">
msgsnd2">
msync2">
munlock2">
munmap2">
nanosleep2">
nfssvc2">
nmount2">
ntp_adjtime2">
ntp_gettime2">
numa_getaffinity2">
open2">
pathconf2">
pdfork2">
pipe2">
poll2">
posix_fadvise2">
posix_fallocate2">
posix_openpt2">
pread2">
procctl2">
profil2">
pselect2">
ptrace2">
pwrite2">
quotactl2">
read2">
readlink2">
readv2">
reboot2">
recv2">
recvfrom2">
recvmsg2">
rename2">
revoke2">
rfork2">
rmdir2">
rtprio2">
sbrk2">
sched_get_priority_max2">
sched_get_priority_min2">
sched_getparam2">
sched_getscheduler2">
sched_rr_get_interval2">
sched_setparam2">
sched_setscheduler2">
sched_yield2">
sctp_generic_recvmsg2">
sctp_generic_sendmsg2">
sctp_peeloff2">
seek2">
select2">
semctl2">
semget2">
semop2">
send2">
sendfile2">
sendmsg2">
sendto2">
setaudit2">
setauid2">
setegid2">
seteuid2">
setfib2">
setgid2">
setgroups2">
setitimer2">
setlogin2">
setpgid2">
setpgrp2">
setpriority2">
setregid2">
setresgid2">
setresuid2">
setreuid2">
setrlimit2">
setsid2">
setsockopt2">
settimeofday2">
setuid2">
shm_open2">
shmat2">
shmctl2">
shmdt2">
shmget2">
shutdown2">
sigaction2">
sigaltstack2">
sigblock2">
sighold2">
sigignore2">
sigpause2">
sigpending2">
sigprocmask2">
sigqueue2">
sigrelse2">
sigreturn2">
sigset2">
sigsetmask2">
sigstack2">
sigsuspend2">
sigvec2">
sigwait2">
sigwaitinfo2">
socket2">
socketpair2">
stat2">
statfs2">
swapon2">
symlink2">
sync2">
sysarch2">
syscall2">
timer_create2">
timer_delete2">
timer_settime2">
truncate2">
umask2">
undelete2">
unlink2">
unmount2">
utimensat2">
utimes2">
utrace2">
uuidgen2">
vfork2">
wait2">
wait32">
wait42">
waitpid2">
write2">
writev2">
__iconv_get_list3">
_longjmp3">
_rand483">
_secure_path3">
_setjmp3">
ATOMIC_VAR_INIT3">
All_FreeBSD3">
CIRCLEQ_EMPTY3">
CIRCLEQ_ENTRY3">
CIRCLEQ_FIRST3">
CIRCLEQ_FOREACH3">
CIRCLEQ_FOREACH_REVERSE3">
CIRCLEQ_HEAD3">
CIRCLEQ_HEAD_INITIALIZER3">
CIRCLEQ_INIT3">
CIRCLEQ_INSERT_AFTER3">
CIRCLEQ_INSERT_BEFORE3">
CIRCLEQ_INSERT_HEAD3">
CIRCLEQ_INSERT_TAIL3">
CIRCLEQ_LAST3">
CIRCLEQ_NEXT3">
CIRCLEQ_PREV3">
CIRCLEQ_REMOVE3">
CheckRules3">
ChunkCanBeRoot3">
Clone_Disk3">
Collapse_Chunk3">
Collapse_Disk3">
Create_Chunk3">
Create_Chunk_DWIM3">
Cyl_Aligned3">
Debug_Disk3">
Delete_Chunk3">
Disk_Names3">
ENSURE3">
ENSURE_ERR3">
Free_Disk3">
HDB3">
INSIST3">
INSIST_ERR3">
INVARIANT3">
INVARIANT_ERR3">
LIST_EMPTY3">
LIST_ENTRY3">
LIST_FIRST3">
LIST_FOREACH3">
LIST_HEAD3">
LIST_HEAD_INITIALIZER3">
LIST_INIT3">
LIST_INSERT_AFTER3">
LIST_INSERT_BEFORE3">
LIST_INSERT_HEAD3">
LIST_NEXT3">
LIST_REMOVE3">
MD2Data3">
MD2End3">
MD2File3">
MD2Final3">
MD2Init3">
MD2Update3">
MD4Data3">
MD4End3">
MD4File3">
MD4Final3">
MD4Init3">
MD4Update3">
MD5Data3">
MD5End3">
MD5File3">
MD5Final3">
MD5Init3">
MD5Update3">
MakeDev3">
MakeDevDisk3">
Next_Cyl_Aligned3">
Next_Track_Aligned3">
NgMkSockNode3">
NgNameNode3">
NgRecvAsciiMsg3">
NgRecvData3">
NgRecvMsg3">
NgSendAsciiMsg3">
NgSendData3">
NgSendMsg3">
NgSendMsgReply3">
NgSetDebug3">
NgSetErrLog3">
Open_Disk3">
Prev_Cyl_Aligned3">
Prev_Track_Aligned3">
REQUIRE3">
REQUIRE_ERR3">
RIPEMD160_Data3">
RIPEMD160_End3">
RIPEMD160_File3">
RIPEMD160_Final3">
RIPEMD160_Init3">
RIPEMD160_Update3">
SHA_Data3">
SHA_End3">
SHA_File3">
SHA_Final3">
SHA_Init3">
SHA_Update3">
SHA1_Data3">
SHA1_End3">
SHA1_File3">
SHA1_Final3">
SHA1_Init3">
SHA1_Update3">
SLIST_EMPTY3">
SLIST_ENTRY3">
SLIST_FIRST3">
SLIST_FOREACH3">
SLIST_HEAD3">
SLIST_HEAD_INITIALIZER3">
SLIST_INIT3">
SLIST_INSERT_AFTER3">
SLIST_INSERT_HEAD3">
SLIST_NEXT3">
SLIST_REMOVE3">
SLIST_REMOVE_HEAD3">
STAILQ_EMPTY3">
STAILQ_ENTRY3">
STAILQ_FIRST3">
STAILQ_FOREACH3">
STAILQ_HEAD3">
STAILQ_HEAD_INITIALIZER3">
STAILQ_INIT3">
STAILQ_INSERT_AFTER3">
STAILQ_INSERT_HEAD3">
STAILQ_INSERT_TAIL3">
STAILQ_LAST3">
STAILQ_NEXT3">
STAILQ_REMOVE3">
STAILQ_REMOVE_HEAD3">
Set_Bios_Geom3">
Set_Boot_Blocks3">
Set_Boot_Mgr3">
ShowChunkFlags3">
TAILQ_EMPTY3">
TAILQ_ENTRY3">
TAILQ_FIRST3">
TAILQ_FOREACH3">
TAILQ_FOREACH_REVERSE3">
TAILQ_HEAD3">
TAILQ_HEAD_INITIALIZER3">
TAILQ_INIT3">
TAILQ_INSERT_AFTER3">
TAILQ_INSERT_BEFORE3">
TAILQ_INSERT_HEAD3">
TAILQ_INSERT_TAIL3">
TAILQ_LAST3">
TAILQ_NEXT3">
TAILQ_PREV3">
TAILQ_REMOVE3">
Track_Aligned3">
VGLBitmapCopy3">
VGLBitmapPutChar3">
VGLBitmapString3">
VGLBlankDisplay3">
VGLBox3">
VGLCheckSwitch3">
VGLClear3">
VGLEllipse3">
VGLEnd3">
VGLFilledBox3">
VGLFilledEllipse3">
VGLInit3">
VGLLine3">
VGLMouseInit3">
VGLMouseMode3">
VGLMouseSetImage3">
VGLMouseSetStdImage3">
VGLMouseStatus3">
VGLPanScreen3">
VGLSetBorder3">
VGLSetPalette3">
VGLSetPaletteIndex3">
VGLTextSetFontFile3">
Write_Disk3">
a64l3">
abort3">
abs3">
acl3">
acl_add_flag_np3">
acl_add_perm3">
acl_calc_mask3">
acl_clear_flags_np3">
acl_clear_perms3">
acl_copy_entry3">
acl_create_entry3">
acl_delete3">
acl_delete_def_file3">
acl_delete_entry3">
acl_delete_fd_np3">
acl_delete_file_np3">
acl_delete_flag_np3">
acl_delete_perm3">
acl_dup3">
acl_free3">
acl_from_text3">
acl_get3">
acl_get_brand_np3">
acl_get_entry3">
acl_get_entry_type_np3">
acl_get_fd3">
acl_get_fd_np3">
acl_get_file3">
acl_get_flag_np3">
acl_get_flagset_np3">
acl_get_perm_np3">
acl_get_permset3">
acl_get_qualifier3">
acl_get_tag_type3">
acl_init3">
acl_is_trivial_np3">
acl_set3">
acl_set_entry_type_np3">
acl_set_fd3">
acl_set_fd_np3">
acl_set_file3">
acl_set_flagset_np3">
acl_set_permset3">
acl_set_qualifier3">
acl_set_tag_type3">
acl_strip_np3">
acl_to_text3">
acl_valid3">
acl_valid_fd_np3">
acl_valid_file_np3">
acos3">
acosf3">
acosh3">
acoshf3">
addch3">
addchnstr3">
addchstr3">
addnstr3">
addr3">
addr2ascii3">
addstr3">
alarm3">
aligned_alloc3">
alloca3">
alphasort3">
arc4random3">
arc4random_addrandom3">
arc4random_stir3">
archive_entry3">
archive_entry_acl3">
archive_entry_linkify3">
archive_entry_paths3">
archive_entry_perms3">
archive_entry_stat3">
archive_entry_time3">
archive_read3">
archive_read_data3">
archive_read_disk3">
archive_read_extract3">
archive_read_filter3">
archive_read_format3">
archive_read_free3">
archive_read_header3">
archive_read_new3">
archive_read_open3">
archive_read_set_options3">
archive_util3">
archive_write3">
archive_write_blocksize3">
archive_write_data3">
archive_write_disk3">
archive_write_filter3">
archive_write_finish_entry3">
archive_write_format3">
archive_write_free3">
archive_write_header3">
archive_write_new3">
archive_write_open3">
archive_write_set_options3">
ascftime3">
ascii2addr3">
asctime3">
asin3">
asinf3">
asinh3">
asinhf3">
asn13">
asprintf3">
assert3">
assertion_type_to_text3">
assertions3">
at_quick_exit3">
atan3">
atan23">
atan2f3">
atanf3">
atanh3">
atanhf3">
atexit3">
atf-c3">
atf-c..3">
atf-c++-api3">
atf-c-api3">
atf-sh3">
atf-sh-api3">
atof3">
atoi3">
atol3">
attr_get3">
attr_off3">
attr_on3">
attr_set3">
attroff3">
attron3">
attrset3">
au_class3">
au_control3">
au_domain3">
au_errno3">
au_event3">
au_fcntl_cmd3">
au_free_token3">
au_io3">
au_mask3">
au_notify3">
au_open3">
au_socket_type3">
au_stream3">
au_token3">
au_user3">
audit_submit3">
auth3">
auth_cat3">
auth_checknologin3">
auth_destroy3">
auth_getval3">
auth_hostok3">
auth_timeok3">
auth_ttyok3">
authnone_create3">
authunix_create3">
authunix_create_default3">
backtrace3">
basename3">
baudrate3">
bcmp3">
bcopy3">
beep3">
bindresvport3">
bindresvport_sa3">
bit_alloc3">
bit_clear3">
bit_decl3">
bit_ffc3">
bit_ffs3">
bit_nclear3">
bit_nset3">
bit_set3">
bit_test3">
bitncmp3">
bitstr_size3">
bitstring3">
bkgd3">
bkgdset3">
bluetooth3">
border3">
bottom_panel3">
box3">
bread3">
bsde_get_rule3">
bsde_get_rule_count3">
bsde_parse_rule3">
bsde_rule_to_string3">
bsearch3">
bsnmpagent3">
bsnmpclient3">
bsnmplib3">
bstring3">
btowc3">
btree3">
buff_decode3">
buff_decode_visit3">
buff_encode_visit3">
buildmatch3">
byteorder3">
bzero3">
cabs3">
cabsf3">
cacos3">
calendar3">
calloc3">
callrpc3">
cam3">
cam_cdbparse3">
cam_close_device3">
cam_close_spec_device3">
cam_device_copy3">
cam_device_dup3">
cam_freeccb3">
cam_get_device3">
cam_getccb3">
cam_open_btl3">
cam_open_device3">
cam_open_pass3">
cam_open_spec_device3">
cam_path_string3">
cam_send_ccb3">
can_change_color3">
cap3">
cap_clear3">
cap_dup3">
cap_free3">
cap_get_flag3">
cap_get_proc3">
cap_init3">
cap_rights_get3">
cap_rights_init3">
cap_sandboxed3">
cap_set_flag3">
cap_set_proc3">
catclose3">
catgets3">
catopen3">
cbreak3">
cbrt3">
cbrtf3">
cbrtl3">
ccos3">
ccosh3">
ceil3">
ceilf3">
ceill3">
cexp3">
cexpf3">
cfgetispeed3">
cfgetospeed3">
cfmakeraw3">
cfree3">
cfsetispeed3">
cfsetospeed3">
cfsetspeed3">
cftime3">
cgetcap3">
cgetclose3">
cgetent3">
cgetfirst3">
cgetmatch3">
cgetnext3">
cgetnum3">
cgetset3">
cgetstr3">
cgetustr3">
cgread3">
check_utility_compat3">
checkversion3">
chgat3">
cimag3">
cipher3">
clear3">
clearerr3">
clearok3">
clnt_broadcast3">
clnt_call3">
clnt_control3">
clnt_create3">
clnt_destroy3">
clnt_freeres3">
clnt_geterr3">
clnt_pcreateerror3">
clnt_perrno3">
clnt_perror3">
clnt_spcreateerror3">
clnt_sperrno3">
clnt_sperror3">
clntraw_create3">
clnttcp_create3">
clntudp_bufcreate3">
clntudp_create3">
clock3">
clock_getcpuclockid3">
closedir3">
closelog3">
clrtobot3">
clrtoeol3">
color_content3">
color_set3">
com_err3">
complex3">
compute_etime3">
compute_stats3">
confstr3">
copysign3">
copysignf3">
copywin3">
cos3">
cosf3">
cosh3">
coshf3">
crypt3">
crypto3">
csio_build3">
csio_build_visit3">
csio_decode3">
csio_decode_visit3">
csio_encode3">
csio_encode_visit3">
csqrt3">
ctermid3">
ctermid_r3">
ctime3">
ctype3">
ctype_l3">
current_field3">
current_item3">
curs_add_wch3">
curs_add_wchstr3">
curs_addch3">
curs_addchstr3">
curs_addstr3">
curs_addwstr3">
curs_attr3">
curs_beep3">
curs_bkgd3">
curs_bkgrnd3">
curs_border3">
curs_border_set3">
curs_clear3">
curs_color3">
curs_delch3">
curs_deleteln3">
curs_extend3">
curs_get_wch3">
curs_get_wstr3">
curs_getcchar3">
curs_getch3">
curs_getstr3">
curs_getyx3">
curs_in_wch3">
curs_in_wchstr3">
curs_inch3">
curs_inchstr3">
curs_initscr3">
curs_inopts3">
curs_ins_wch3">
curs_ins_wstr3">
curs_insch3">
curs_insstr3">
curs_instr3">
curs_inwstr3">
curs_kernel3">
curs_legacy3">
curs_memleaks3">
curs_mouse3">
curs_move3">
curs_opaque3">
curs_outopts3">
curs_overlay3">
curs_pad3">
curs_print3">
curs_printw3">
curs_refresh3">
curs_scanw3">
curs_scr_dump3">
curs_scroll3">
curs_set3">
curs_slk3">
curs_sp_funcs3">
curs_termattrs3">
curs_termcap3">
curs_terminfo3">
curs_threads3">
curs_touch3">
curs_trace3">
curs_util3">
curs_variables3">
curs_window3">
curses3">
curses_version3">
cuse3">
cuserid3">
daemon3">
data_ahead3">
data_behind3">
db3">
dbm3">
dbm_clearerr3">
dbm_close3">
dbm_delete3">
dbm_dirnfo3">
dbm_error3">
dbm_fetch3">
dbm_firstkey3">
dbm_nextkey3">
dbm_open3">
dbm_store3">
dbopen3">
def_prog_mode3">
def_shell_mode3">
default_colors3">
define_key3">
del_curterm3">
del_panel3">
delay_output3">
delch3">
deleteln3">
delscreen3">
delwin3">
derwin3">
des_3cbc_encrypt3">
des_3ecb_encrypt3">
des_cbc_cksum3">
des_cbc_encrypt3">
des_cfb_encrypt3">
des_cipher3">
des_crypt3">
des_ecb_encrypt3">
des_enc_read3">
des_enc_write3">
des_is_weak_key3">
des_key_sched3">
des_ofb_encrypt3">
des_pcbc_encrypt3">
des_quad_cksum3">
des_random_key3">
des_read_2password3">
des_read_password3">
des_read_pw_string3">
des_set_key3">
des_set_odd_parity3">
des_setkey3">
des_string_to_2key3">
des_string_to_key3">
devctl3">
devinfo3">
devname3">
devstat3">
dft_fgbg3">
dhcpctl3">
dialog3">
dialog_checklist3">
dialog_clear3">
dialog_clear_norefresh3">
dialog_create_rc3">
dialog_fselect3">
dialog_ftree3">
dialog_gauge3">
dialog_inputbox3">
dialog_menu3">
dialog_mesgbox3">
dialog_msgbox3">
dialog_notify3">
dialog_prgbox3">
dialog_radiolist3">
dialog_textbox3">
dialog_tree3">
dialog_update3">
dialog_yesno3">
difftime3">
digittoint3">
directory3">
dirfd3">
dirname3">
div3">
dl_iterate_phdr3">
dladdr3">
dlclose3">
dlerror3">
dlfunc3">
dlinfo3">
dllockinit3">
dlopen3">
dlsym3">
dn_comp3">
dn_expand3">
doupdate3">
dpv3">
drand483">
draw_box3">
draw_shadow3">
dup_field3">
dup33">
duplocale3">
dupwin3">
dwarf3">
dwarf_add_AT_comp_dir3">
dwarf_add_AT_const_value_string3">
dwarf_add_AT_dataref3">
dwarf_add_AT_flag3">
dwarf_add_AT_location_expr3">
dwarf_add_AT_name3">
dwarf_add_AT_producer3">
dwarf_add_AT_ref_address3">
dwarf_add_AT_reference3">
dwarf_add_AT_signed_const3">
dwarf_add_AT_string3">
dwarf_add_AT_targ_address3">
dwarf_add_arange3">
dwarf_add_die_to_debug3">
dwarf_add_directory_decl3">
dwarf_add_expr_addr3">
dwarf_add_expr_gen3">
dwarf_add_fde_inst3">
dwarf_add_file_decl3">
dwarf_add_frame_cie3">
dwarf_add_frame_fde3">
dwarf_add_funcname3">
dwarf_add_line_entry3">
dwarf_add_pubname3">
dwarf_add_typename3">
dwarf_add_varname3">
dwarf_add_weakname3">
dwarf_attr3">
dwarf_attrlist3">
dwarf_attroffset3">
dwarf_attrval_signed3">
dwarf_child3">
dwarf_dealloc3">
dwarf_def_macro3">
dwarf_die_abbrev_code3">
dwarf_die_link3">
dwarf_diename3">
dwarf_dieoffset3">
dwarf_end_macro_file3">
dwarf_errmsg3">
dwarf_errno3">
dwarf_expand_frame_instructions3">
dwarf_expr_current_offset3">
dwarf_expr_into_block3">
dwarf_fde_cfa_offset3">
dwarf_find_macro_value_start3">
dwarf_finish3">
dwarf_formaddr3">
dwarf_formblock3">
dwarf_formexprloc3">
dwarf_formflag3">
dwarf_formref3">
dwarf_formsig83">
dwarf_formstring3">
dwarf_formudata3">
dwarf_get_AT_name3">
dwarf_get_abbrev3">
dwarf_get_abbrev_children_flag3">
dwarf_get_abbrev_code3">
dwarf_get_abbrev_entry3">
dwarf_get_abbrev_tag3">
dwarf_get_address_size3">
dwarf_get_arange3">
dwarf_get_arange_info3">
dwarf_get_aranges3">
dwarf_get_cie_index3">
dwarf_get_cie_info3">
dwarf_get_cie_of_fde3">
dwarf_get_cu_die_offset3">
dwarf_get_die_infotypes_flag3">
dwarf_get_elf3">
dwarf_get_fde_at_pc3">
dwarf_get_fde_info_for_all_regs3">
dwarf_get_fde_info_for_all_regs33">
dwarf_get_fde_info_for_cfa_reg33">
dwarf_get_fde_info_for_reg3">
dwarf_get_fde_info_for_reg33">
dwarf_get_fde_instr_bytes3">
dwarf_get_fde_list3">
dwarf_get_fde_n3">
dwarf_get_fde_range3">
dwarf_get_form_class3">
dwarf_get_funcs3">
dwarf_get_globals3">
dwarf_get_loclist_entry3">
dwarf_get_macro_details3">
dwarf_get_pubtypes3">
dwarf_get_ranges3">
dwarf_get_relocation_info3">
dwarf_get_relocation_info_count3">
dwarf_get_section_bytes3">
dwarf_get_section_max_offsets3">
dwarf_get_str3">
dwarf_get_types3">
dwarf_get_vars3">
dwarf_get_weaks3">
dwarf_hasattr3">
dwarf_hasform3">
dwarf_highpc3">
dwarf_init3">
dwarf_lineno3">
dwarf_lne_end_sequence3">
dwarf_lne_set_address3">
dwarf_loclist3">
dwarf_loclist_from_expr3">
dwarf_new_die3">
dwarf_new_expr3">
dwarf_new_fde3">
dwarf_next_cu_header3">
dwarf_next_types_section3">
dwarf_object_init3">
dwarf_producer_init3">
dwarf_producer_set_isa3">
dwarf_reset_section_bytes3">
dwarf_set_frame_cfa_value3">
dwarf_set_reloc_application3">
dwarf_seterrarg3">
dwarf_srcfiles3">
dwarf_srclines3">
dwarf_start_macro_file3">
dwarf_tag3">
dwarf_transform_to_disk_form3">
dwarf_undef_macro3">
dwarf_vendor_ext3">
dwarf_whatattr3">
dynamic_fieldinfo3">
easterg3">
easterog3">
easteroj3">
echo3">
echochar3">
edata3">
editline3">
el_data_get3">
el_data_set3">
el_deletestr3">
el_end3">
el_getc3">
el_gets3">
el_init3">
el_insertstr3">
el_line3">
el_parse3">
el_push3">
el_reset3">
el_resize3">
el_set3">
el_source3">
elf3">
elf_begin3">
elf_cntl3">
elf_end3">
elf_errmsg3">
elf_fill3">
elf_flagdata3">
elf_getarhdr3">
elf_getarsym3">
elf_getbase3">
elf_getdata3">
elf_getident3">
elf_getphdrnum3">
elf_getphnum3">
elf_getscn3">
elf_getshdrnum3">
elf_getshdrstrndx3">
elf_getshnum3">
elf_getshstrndx3">
elf_hash3">
elf_kind3">
elf_memory3">
elf_next3">
elf_open3">
elf_rand3">
elf_rawfile3">
elf_strptr3">
elf_update3">
elf_version3">
encrypt3">
end3">
end_dialog3">
endfsent3">
endgrent3">
endhostent3">
endnetconfig3">
endnetent3">
endnetgrent3">
endnetpath3">
endprotoent3">
endpwent3">
endrpcent3">
endservent3">
endttyent3">
endusershell3">
endvfsent3">
endwin3">
erand483">
erase3">
erasechar3">
erf3">
erfc3">
erfcf3">
erff3">
err3">
err_set_exit3">
err_set_file3">
errc3">
errx3">
etext3">
ether_aton3">
ether_hostton3">
ether_line3">
ether_ntoa3">
ether_ntohost3">
ethers3">
eui643">
evAddTime3">
evCancelConn3">
evCancelRW3">
evClearIdleTimer3">
evClearTimer3">
evCmpTime3">
evConnFunc3">
evConnect3">
evConsIovec3">
evConsTime3">
evCreate3">
evDefer3">
evDeselectFD3">
evDestroy3">
evDispatch3">
evDo3">
evDrop3">
evFileFunc3">
evGetNext3">
evHold3">
evInitID3">
evLastEventTime3">
evListen3">
evMainLoop3">
evNowTime3">
evPrintf3">
evRead3">
evResetTimer3">
evSelectFD3">
evSetDebug3">
evSetIdleTimer3">
evSetTimer3">
evStreamFunc3">
evSubTime3">
evTestID3">
evTimeRW3">
evTimeSpec3">
evTimeVal3">
evTimerFunc3">
evTouchIdleTimer3">
evTryAccept3">
evUnhold3">
evUntimeRW3">
evUnwait3">
evWaitFor3">
evWaitFunc3">
evWrite3">
eventlib3">
exec3">
execl3">
execle3">
execlp3">
exect3">
execv3">
execvp3">
exit3">
exp3">
exp103">
exp10f3">
exp23">
exp2f3">
expand_number3">
expf3">
explicit_bzero3">
expm13">
expm1f3">
extattr3">
extattr_namespace_to_string3">
extattr_string_to_namespace3">
fabs3">
fabsf3">
fclose3">
fcloseall3">
fdim3">
fdlopen3">
fdopen3">
fdopendir3">
feature_present3">
feclearexcept3">
feenableexcept3">
fegetenv3">
fegetround3">
fenv3">
feof3">
ferror3">
fetch3">
fflagstostr3">
fflush3">
ffs3">
ffsll3">
fgetc3">
fgetln3">
fgetpos3">
fgetrune3">
fgets3">
fgetwln3">
fgetws3">
field_arg3">
field_back3">
field_buffer3">
field_count3">
field_fore3">
field_index3">
field_info3">
field_init3">
field_just3">
field_opts3">
field_opts_off3">
field_opts_on3">
field_pad3">
field_status3">
field_term3">
field_type3">
field_userptr3">
figpar3">
fileno3">
filter3">
finite3">
finitef3">
flash3">
flockfile3">
floor3">
floorf3">
floorl3">
flopen3">
fls3">
flsll3">
flushinp3">
fma3">
fmaf3">
fmax3">
fmod3">
fmodf3">
fmtcheck3">
fmtmsg3">
fnmatch3">
fopen3">
forkpty3">
form3">
form_cursor3">
form_data3">
form_driver3">
form_field3">
form_field_attributes3">
form_field_buffer3">
form_field_info3">
form_field_just3">
form_field_new3">
form_field_opts3">
form_field_userptr3">
form_field_validation3">
form_fields3">
form_fieldtype3">
form_hook3">
form_init3">
form_new3">
form_new_page3">
form_opts3">
form_opts_off3">
form_opts_on3">
form_page3">
form_post3">
form_request_by_name3">
form_request_name3">
form_requestname3">
form_sub3">
form_term3">
form_userptr3">
form_variables3">
form_win3">
fparseln3">
fpclassify3">
fpgetmask3">
fpgetprec3">
fpgetround3">
fpgetsticky3">
fpresetsticky3">
fprintf3">
fpsetmask3">
fpsetprec3">
fpsetround3">
fpsetsticky3">
fpurge3">
fputc3">
fputrune3">
fputs3">
fputwc3">
fputws3">
fread3">
free3">
free_field3">
free_form3">
free_item3">
free_menu3">
freeaddrinfo3">
freehostent3">
freeifaddrs3">
freelocale3">
freopen3">
frexp3">
fropen3">
fscanf3">
fseek3">
fseeko3">
fsetpos3">
fstatvfs3">
ftell3">
ftello3">
ftime3">
ftok3">
ftpio3">
fts3">
fts_children3">
fts_close3">
fts_open3">
fts_read3">
fts_set3">
ftw3">
fungetrune3">
funopen3">
fwide3">
fwopen3">
fwrite3">
gai_strerror3">
gamma3">
gammaf3">
gdate3">
gelf3">
gelf_checksum3">
gelf_fsize3">
gelf_getcap3">
gelf_getclass3">
gelf_getdyn3">
gelf_getehdr3">
gelf_getmove3">
gelf_getphdr3">
gelf_getrel3">
gelf_getrela3">
gelf_getshdr3">
gelf_getsym3">
gelf_getsyminfo3">
gelf_getsymshndx3">
gelf_newehdr3">
gelf_newphdr3">
gelf_update_ehdr3">
gelf_xlatetof3">
get_helpline3">
get_myaddress3">
getaddrinfo3">
getbegyx3">
getbkgd3">
getbootfile3">
getbsize3">
getc3">
getcap3">
getch3">
getchar3">
getcontext3">
getcwd3">
getdevs3">
getdiskbyname3">
getdomainname3">
getenv3">
getfsent3">
getfsfile3">
getfsspec3">
getfstype3">
getgeneration3">
getgrent3">
getgrgid3">
getgrnam3">
getgrouplist3">
gethostbyaddr3">
gethostbyname3">
gethostbyname23">
gethostent3">
gethostid3">
gethostname3">
getifaddrs3">
getifmaddrs3">
getipnodebyaddr3">
getipnodebyname3">
getline3">
getloadavg3">
getlogin_r3">
getmaxyx3">
getmntinfo3">
getmode3">
getmouse3">
getnameinfo3">
getnetbyaddr3">
getnetbyname3">
getnetconfig3">
getnetconfigent3">
getnetent3">
getnetgrent3">
getnetpath3">
getnstr3">
getnumdevs3">
getobjformat3">
getopt3">
getopt_long3">
getosreldate3">
getpagesize3">
getpagesizes3">
getparyx3">
getpass3">
getpeereid3">
getprogname3">
getprotobyname3">
getprotobynumber3">
getprotoent3">
getpw3">
getpwent3">
getpwnam3">
getpwuid3">
getrpcbyname3">
getrpcbynumber3">
getrpcent3">
getrpcport3">
gets3">
getservbyname3">
getservbyport3">
getservent3">
getstr3">
getsubopt3">
getsyx3">
getttyent3">
getttynam3">
getusershell3">
getutxent3">
getversion3">
getvfsbyname3">
getvfsbytype3">
getvfsent3">
getw3">
getwc3">
getwd3">
getwin3">
getyx3">
glob3">
globfree3">
gmtime3">
gpib3">
gpio3">
grantpt3">
group_from_gid3">
gss_accept_sec_context3">
gss_acquire_cred3">
gss_add_cred3">
gss_add_oid_set_member3">
gss_canonicalize_name3">
gss_compare_name3">
gss_context_time3">
gss_create_empty_oid_set3">
gss_delete_sec_context3">
gss_display_name3">
gss_display_status3">
gss_duplicate_name3">
gss_export_name3">
gss_export_sec_context3">
gss_get_mic3">
gss_import_name3">
gss_import_sec_context3">
gss_indicate_mechs3">
gss_init_sec_context3">
gss_inquire_context3">
gss_inquire_cred3">
gss_inquire_cred_by_mech3">
gss_inquire_mechs_for_name3">
gss_inquire_names_for_mech3">
gss_process_context_token3">
gss_release_buffer3">
gss_release_cred3">
gss_release_name3">
gss_release_oid_set3">
gss_test_oid_set_member3">
gss_unwrap3">
gss_verify_mic3">
gss_wrap3">
gss_wrap_size_limit3">
gssapi3">
gtty3">
halfdelay3">
has_colors3">
has_ic3">
has_il3">
has_key3">
hash3">
hcreate3">
hdb_entry_ex3">
hdestroy3">
heap3">
heap_decreased3">
heap_delete3">
heap_element3">
heap_for_each3">
heap_free3">
heap_increased3">
heap_insert3">
heap_new3">
heapsort3">
herror3">
hesiod3">
hexdump3">
hid_dispose_report_desc3">
hid_end_parse3">
hid_get_data3">
hid_get_item3">
hid_get_report_desc3">
hid_init3">
hid_locate3">
hid_report_size3">
hid_set_data3">
hid_start_parse3">
hid_usage_in_page3">
hid_usage_page3">
hide_panel3">
history3">
history_end3">
history_init3">
hline3">
hosts_access3">
hsearch3">
hstrerror3">
htonl3">
htons3">
humanize_number3">
hx5093">
hx509_ca3">
hx509_cert3">
hx509_cms3">
hx509_crypto3">
hx509_env3">
hx509_error3">
hx509_keyset3">
hx509_lock3">
hx509_misc3">
hx509_name3">
hx509_peer3">
hx509_print3">
hx509_query3">
hx509_revoke3">
hx509_verify3">
hypot3">
hypotf3">
i386_clr_watch3">
i386_set_watch3">
iconv3">
iconv_canonicalize3">
iconv_close3">
iconv_open3">
iconv_open_into3">
iconvctl3">
iconvlist3">
idcok3">
idlok3">
ieee3">
ieee_test3">
if_freenameindex3">
if_indextoname3">
if_nameindex3">
if_nametoindex3">
ilogb3">
ilogbf3">
ilogbl3">
imaxabs3">
imaxdiv3">
immedok3">
in_lt3">
in_ltm3">
in_ltms3">
in_lts3">
inch3">
inchnstr3">
inchstr3">
index3">
inet3">
inet_addr3">
inet_aton3">
inet_lnaof3">
inet_makeaddr3">
inet_net3">
inet_net_ntop3">
inet_net_pton3">
inet_netof3">
inet_network3">
inet_ntoa3">
inet_ntop3">
inet_pton3">
inet6_opt_init3">
inet6_option_alloc3">
inet6_option_append3">
inet6_option_find3">
inet6_option_init3">
inet6_option_next3">
inet6_option_space3">
inet6_rth_space3">
inet6_rthdr_add3">
inet6_rthdr_getaddr3">
inet6_rthdr_getflags3">
inet6_rthdr_init3">
inet6_rthdr_lasthop3">
inet6_rthdr_reverse3">
inet6_rthdr_segments3">
inet6_rthdr_space3">
init_color3">
init_dialog3">
init_pair3">
initgroups3">
initscr3">
initstate3">
innetgr3">
innstr3">
insch3">
insdelln3">
insertln3">
insnstr3">
insque3">
insstr3">
instr3">
intrflush3">
intro3">
ipsec_dump_policy3">
ipsec_get_policylen3">
ipsec_set_policy3">
ipsec_strerror3">
ipx3">
ipx_addr3">
ipx_ntoa3">
iruserok3">
iruserok_sa3">
is_linetouched3">
is_wintouched3">
isalnum3">
isalpha3">
isascii3">
isatty3">
isblank3">
iscntrl3">
isdialuptty3">
isdigit3">
isendwin3">
isgraph3">
isgreater3">
isideogram3">
isinf3">
islower3">
isnan3">
isnanf3">
isnettty3">
isphonogram3">
isprint3">
ispunct3">
isrune3">
isspace3">
isspecial3">
isupper3">
iswalnum3">
iswalnum_l3">
iswalpha3">
iswascii3">
iswblank3">
iswcntrl3">
iswdigit3">
iswgraph3">
iswhexnumber3">
iswideogram3">
iswlower3">
iswnumber3">
iswphonogram3">
iswprint3">
iswpunct3">
iswrune3">
iswspace3">
iswspecial3">
iswupper3">
iswxdigit3">
isxdigit3">
item_count3">
item_description3">
item_index3">
item_init3">
item_name3">
item_opts3">
item_opts_off3">
item_opts_on3">
item_term3">
item_userptr3">
item_value3">
item_visible3">
j03">
j0f3">
j13">
j1f3">
jail3">
jdate3">
jemalloc3">
jn3">
jnf3">
jrand483">
kadm5_pwcheck3">
kafs53">
key_defined3">
keybound3">
keycap3">
keyname3">
keyok3">
keypad3">
kgetent3">
kgetflag3">
kgetnum3">
kgetstr3">
kiconv3">
killchar3">
kinfo_getallproc3">
kinfo_getfile3">
kinfo_getproc3">
kinfo_getvmmap3">
kinfo_getvmobject3">
kld3">
krb53">
krb5_425_conv_principal3">
krb5_acl_match_file3">
krb5_address3">
krb5_aname_to_localname3">
krb5_appdefault3">
krb5_auth3">
krb5_auth_context3">
krb5_c_make_checksum3">
krb5_ccache3">
krb5_ccache_intro3">
krb5_check_transited3">
krb5_compare_creds3">
krb5_config3">
krb5_context3">
krb5_create_checksum3">
krb5_credential3">
krb5_creds3">
krb5_crypto3">
krb5_crypto_init3">
krb5_crypto_iov3">
krb5_data3">
krb5_deprecated3">
krb5_digest3">
krb5_eai_to_heim_errno3">
krb5_encrypt3">
krb5_error3">
krb5_expand_hostname3">
krb5_fileformats3">
krb5_find_padata3">
krb5_generate_random_block3">
krb5_get_all_client_addrs3">
krb5_get_credentials3">
krb5_get_creds3">
krb5_get_forwarded_creds3">
krb5_get_in_cred3">
krb5_get_init_creds3">
krb5_get_krbhst3">
krb5_getportbyname3">
krb5_init_context3">
krb5_init_creds_intro3">
krb5_introduction3">
krb5_is_thread_safe3">
krb5_keyblock3">
krb5_keytab3">
krb5_keytab_intro3">
krb5_krbhst_init3">
krb5_kuserok3">
krb5_mk_req3">
krb5_mk_safe3">
krb5_openlog3">
krb5_pac3">
krb5_parse_name3">
krb5_principal3">
krb5_principal_intro3">
krb5_rcache3">
krb5_rd_error3">
krb5_rd_safe3">
krb5_set_default_realm3">
krb5_set_password3">
krb5_storage3">
krb5_string_to_key3">
krb5_support3">
krb5_ticket3">
krb5_timeofday3">
krb5_unparse_name3">
krb5_v4compat3">
krb5_verify_init_creds3">
krb5_verify_user3">
krb5_warn3">
krb524_convert_creds_kdc3">
kvm3">
kvm_close3">
kvm_getargv3">
kvm_getcptime3">
kvm_getenvv3">
kvm_geterr3">
kvm_getfiles3">
kvm_getloadavg3">
kvm_getpcpu3">
kvm_getprocs3">
kvm_getswapinfo3">
kvm_nlist3">
kvm_open3">
kvm_openfiles3">
kvm_read3">
kvm_write3">
labs3">
lcong483">
ldexp3">
ldiv3">
leaveok3">
legacy_coding3">
lfind3">
lgamma3">
lgammaf3">
libalias3">
libarchive3">
libarchive_changes3">
libarchive_internals3">
libautofs3">
libbsdxml3">
libbsm3">
libcapsicum3">
libdisk3">
libgeom3">
libmagic3">
libmemstat3">
libmp3">
libngatm3">
libprocstat3">
libradius3">
librtld_db3">
libstand3">
libstdbuf3">
libtacplus3">
libthr3">
libufs3">
libugidfw3">
libusb3">
libusb203">
libxo3">
line_edit3">
link_addr3">
link_field3">
link_fieldtype3">
link_ntoa3">
linkaddr3">
llabs3">
lldiv3">
llrint3">
llrintf3">
llrintl3">
llround3">
llroundf3">
llroundl3">
localeconv3">
localtime3">
lockf3">
log3">
log_add_channel3">
log_category_is_active3">
log_close_stream3">
log_dec_references3">
log_free_channel3">
log_free_context3">
log_get_filename3">
log_get_stream3">
log_inc_references3">
log_new_context3">
log_new_file_channel3">
log_new_null_channel3">
log_new_syslog_channel3">
log_open_stream3">
log_option3">
log_remove_channel3">
log_set_file_owner3">
log_vwrite3">
log_write3">
log103">
log10f3">
log1p3">
log1pf3">
log23">
log2f3">
logb3">
logbf3">
logf3">
logging3">
login3">
login_auth3">
login_cap3">
login_class3">
login_close3">
login_getcapbool3">
login_getcaplist3">
login_getcapnum3">
login_getcapsize3">
login_getcapstr3">
login_getcaptime3">
login_getclass3">
login_getclassbyname3">
login_getpath3">
login_getpwclass3">
login_getstyle3">
login_getuserclass3">
login_ok3">
login_times3">
login_tty3">
logout3">
logwtmp3">
longjmp3">
longjmperr3">
longjmperror3">
longname3">
lrand483">
lrint3">
lrintf3">
lrintl3">
lround3">
lroundf3">
lroundfl3">
lsearch3">
lwres3">
lwres_buffer3">
lwres_config3">
lwres_context3">
lwres_gabn3">
lwres_gai_strerror3">
lwres_getaddrinfo3">
lwres_gethostent3">
lwres_getipnode3">
lwres_getnameinfo3">
lwres_getrrsetbyname3">
lwres_gnba3">
lwres_hstrerror3">
lwres_inetntop3">
lwres_noop3">
lwres_packet3">
lwres_resutil3">
mac3">
mac_free3">
mac_from_text3">
mac_get3">
mac_get_fd3">
mac_get_file3">
mac_get_proc3">
mac_is_present3">
mac_is_present_np3">
mac_prepare3">
mac_set3">
mac_set_fd3">
mac_set_file3">
mac_set_proc3">
mac_text3">
mac_to_text3">
makecontext3">
makedev3">
malloc3">
mandoc3">
mandoc_headers3">
math3">
mblen3">
mbmb3">
mbrlen3">
mbrrune3">
mbrtowc3">
mbrune3">
mbsinit3">
mbsnrtowcs3">
mbsrtowcs3">
mbstowcs3">
mbtowc3">
mcprint3">
md23">
md43">
md53">
memccpy3">
memchr3">
memcluster3">
memcmp3">
memcpy3">
memget3">
memmem3">
memmove3">
memory3">
memput3">
memrchr3">
memset3">
memstats3">
menu3">
menu_attribs3">
menu_attributes3">
menu_back3">
menu_cursor3">
menu_driver3">
menu_fore3">
menu_format3">
menu_grey3">
menu_hook3">
menu_init3">
menu_items3">
menu_mark3">
menu_new3">
menu_opts3">
menu_opts_off3">
menu_opts_on3">
menu_pad3">
menu_pattern3">
menu_post3">
menu_request_by_name3">
menu_request_name3">
menu_requestname3">
menu_spacing3">
menu_sub3">
menu_term3">
menu_userptr3">
menu_win3">
mergesort3">
meta3">
mitem_current3">
mitem_name3">
mitem_new3">
mitem_opts3">
mitem_userptr3">
mitem_value3">
mitem_visible3">
mkdtemp3">
mkstemp3">
mkstemps3">
mktemp3">
mktime3">
modf3">
moncontrol3">
monstartup3">
mouseinterval3">
mousemask3">
move3">
move_field3">
move_panel3">
mpool3">
mrand483">
msgctl3">
msgget3">
msgrcv3">
msgsnd3">
mt3">
multibyte3">
mvaddch3">
mvaddchnstr3">
mvaddchstr3">
mvaddnstr3">
mvaddstr3">
mvchgat3">
mvcur3">
mvdelch3">
mvderwin3">
mvgetch3">
mvgetnstr3">
mvgetstr3">
mvhline3">
mvinch3">
mvinchnstr3">
mvinchstr3">
mvinnstr3">
mvinsch3">
mvinsnstr3">
mvinsstr3">
mvinstr3">
mvprintw3">
mvscanw3">
mvwaddch3">
mvwaddchnstr3">
mvwaddchstr3">
mvwaddnstr3">
mvwaddstr3">
mvwchgat3">
mvwdelch3">
mvwgetch3">
mvwgetnstr3">
mvwgetstr3">
mvwhline3">
mvwin3">
mvwinch3">
mvwinchnstr3">
mvwinchstr3">
mvwinnstr3">
mvwinsch3">
mvwinsnstr3">
mvwinsstr3">
mvwinstr3">
mvwprintw3">
mvwscanw3">
mvwvline3">
nan3">
napms3">
nc_perror3">
nc_sperror3">
ncurses3">
ndaysg3">
ndaysj3">
nearbyint3">
nearbyintf3">
netgraph3">
network3">
new_field3">
new_form3">
new_item3">
new_menu3">
new_page3">
new_panel3">
newlocale3">
newpad3">
newterm3">
newwin3">
nextafter3">
nextafterf3">
nextwctype3">
nftw3">
nice3">
nl3">
nl_langinfo3">
nlist3">
nocbreak3">
nodelay3">
noecho3">
nonl3">
noqiflush3">
noraw3">
notimeout3">
nrand483">
nsdispatch3">
ntlm_buf3">
ntlm_core3">
ntlm_type13">
ntlm_type23">
ntlm_type33">
ntoa3">
ntohl3">
ntohs3">
nv3">
offsetof3">
open_memstream3">
opendir3">
openlog3">
openpam3">
openpam_borrow_cred3">
openpam_free_data3">
openpam_free_envlist3">
openpam_get_feature3">
openpam_get_option3">
openpam_log3">
openpam_nullconv3">
openpam_readline3">
openpam_readlinev3">
openpam_readword3">
openpam_restore_cred3">
openpam_set_feature3">
openpam_set_option3">
openpam_straddch3">
openpam_subst3">
openpam_ttyconv3">
openpty3">
overlay3">
overwrite3">
pair_content3">
pam3">
pam_acct_mgmt3">
pam_authenticate3">
pam_chauthtok3">
pam_close_session3">
pam_conv3">
pam_end3">
pam_error3">
pam_fail_delay3">
pam_get_authtok3">
pam_get_data3">
pam_get_item3">
pam_get_user3">
pam_getenv3">
pam_getenvlist3">
pam_info3">
pam_open_session3">
pam_prompt3">
pam_putenv3">
pam_set_data3">
pam_set_item3">
pam_setcred3">
pam_setenv3">
pam_sm_acct_mgmt3">
pam_sm_authenticate3">
pam_sm_chauthtok3">
pam_sm_close_session3">
pam_sm_open_session3">
pam_sm_setcred3">
pam_start3">
pam_strerror3">
pam_verror3">
pam_vinfo3">
pam_vprompt3">
panel3">
panel_above3">
panel_below3">
panel_hidden3">
panel_userptr3">
panel_window3">
parse_lt3">
pause3">
pcap3">
pcap_activate3">
pcap_breakloop3">
pcap_can_set_rfmon3">
pcap_close3">
pcap_compile3">
pcap_create3">
pcap_datalink3">
pcap_datalink_name_to_val3">
pcap_datalink_val_to_name3">
pcap_dump3">
pcap_dump_close3">
pcap_dump_file3">
pcap_dump_flush3">
pcap_dump_ftell3">
pcap_dump_open3">
pcap_file3">
pcap_fileno3">
pcap_findalldevs3">
pcap_freecode3">
pcap_get_selectable_fd3">
pcap_get_tstamp_precision3">
pcap_geterr3">
pcap_inject3">
pcap_is_swapped3">
pcap_lib_version3">
pcap_list_datalinks3">
pcap_list_tstamp_types3">
pcap_lookupdev3">
pcap_lookupnet3">
pcap_loop3">
pcap_major_version3">
pcap_next_ex3">
pcap_offline_filter3">
pcap_open_dead3">
pcap_open_live3">
pcap_open_offline3">
pcap_set_buffer_size3">
pcap_set_datalink3">
pcap_set_immediate_mode3">
pcap_set_promisc3">
pcap_set_rfmon3">
pcap_set_snaplen3">
pcap_set_timeout3">
pcap_set_tstamp_precision3">
pcap_set_tstamp_type3">
pcap_setdirection3">
pcap_setfilter3">
pcap_setnonblock3">
pcap_snapshot3">
pcap_stats3">
pcap_statustostr3">
pcap_strerror3">
pcap_tstamp_type_name_to_val3">
pcap_tstamp_type_val_to_name3">
pclose3">
pechochar3">
perror3">
pidfile3">
pmap_getmaps3">
pmap_getport3">
pmap_rmtcall3">
pmap_set3">
pmap_unset3">
pmc3">
pmc_allocate3">
pmc_atom3">
pmc_atomsilvermont3">
pmc_attach3">
pmc_capabilities3">
pmc_configure_logfile3">
pmc_core3">
pmc_core23">
pmc_corei73">
pmc_corei7uc3">
pmc_disable3">
pmc_event_names_of_class3">
pmc_get_driver_stats3">
pmc_get_msr3">
pmc_haswell3">
pmc_haswelluc3">
pmc_iaf3">
pmc_init3">
pmc_ivybridge3">
pmc_ivybridgexeon3">
pmc_k73">
pmc_k83">
pmc_mips24k3">
pmc_name_of_capability3">
pmc_octeon3">
pmc_p43">
pmc_p53">
pmc_p63">
pmc_read3">
pmc_sandybridge3">
pmc_sandybridgeuc3">
pmc_sandybridgexeon3">
pmc_set3">
pmc_soft3">
pmc_start3">
pmc_tsc3">
pmc_ucf3">
pmc_westmere3">
pmc_westmereuc3">
pmc_xscale3">
pmclog3">
pnoutrefresh3">
popen3">
pos_form_cursor3">
pos_menu_cursor3">
posix_spawn3">
posix_spawn_file_actions_addopen3">
posix_spawn_file_actions_init3">
posix_spawnattr_getflags3">
posix_spawnattr_getpgroup3">
posix_spawnattr_getschedparam3">
posix_spawnattr_getschedpolicy3">
posix_spawnattr_getsigdefault3">
posix_spawnattr_getsigmask3">
posix_spawnattr_init3">
posix1e3">
posix2time3">
post_form3">
post_menu3">
pow3">
powf3">
prefresh3">
printf3">
printf_l3">
printw3">
properties_free3">
properties_read3">
property3">
property_find3">
pselect3">
psignal3">
pthread3">
pthread_affinity_np3">
pthread_atfork3">
pthread_attr3">
pthread_attr_affinity_np3">
pthread_attr_destroy3">
pthread_attr_get_np3">
pthread_attr_getdetachstate3">
pthread_attr_getinheritsched3">
pthread_attr_getschedparam3">
pthread_attr_getschedpolicy3">
pthread_attr_getscope3">
pthread_attr_getstackaddr3">
pthread_attr_getstacksize3">
pthread_attr_init3">
pthread_attr_setcreatesuspend_np3">
pthread_attr_setdetachstate3">
pthread_attr_setinheritsched3">
pthread_attr_setschedparam3">
pthread_attr_setschedpolicy3">
pthread_attr_setscope3">
pthread_attr_setstackaddr3">
pthread_attr_setstacksize3">
pthread_barrier_destroy3">
pthread_barrierattr3">
pthread_cancel3">
pthread_cleanup_pop3">
pthread_cleanup_push3">
pthread_cond_broadcast3">
pthread_cond_destroy3">
pthread_cond_init3">
pthread_cond_signal3">
pthread_cond_timedwait3">
pthread_cond_wait3">
pthread_condattr3">
pthread_condattr_destroy3">
pthread_condattr_init3">
pthread_create3">
pthread_detach3">
pthread_equal3">
pthread_exit3">
pthread_getcancelstate3">
pthread_getconcurrency3">
pthread_getcpuclockid3">
pthread_getschedparam3">
pthread_getspecific3">
pthread_getthreadid_np3">
pthread_join3">
pthread_key_create3">
pthread_key_delete3">
pthread_kill3">
pthread_main_np3">
pthread_multi_np3">
pthread_mutex_destroy3">
pthread_mutex_init3">
pthread_mutex_lock3">
pthread_mutex_timedlock3">
pthread_mutex_trylock3">
pthread_mutex_unlock3">
pthread_mutexattr3">
pthread_mutexattr_destroy3">
pthread_mutexattr_getkind_np3">
pthread_mutexattr_getprioceiling3">
pthread_mutexattr_getprotocol3">
pthread_mutexattr_getpshared3">
pthread_mutexattr_gettype3">
pthread_mutexattr_init3">
pthread_mutexattr_setprioceiling3">
pthread_mutexattr_setprotocol3">
pthread_mutexattr_setpshared3">
pthread_mutexattr_settype3">
pthread_once3">
pthread_resume_all_np3">
pthread_resume_np3">
pthread_rwlock_destroy3">
pthread_rwlock_init3">
pthread_rwlock_rdlock3">
pthread_rwlock_timedrdlock3">
pthread_rwlock_timedwrlock3">
pthread_rwlock_tryrdlock3">
pthread_rwlock_trywrlock3">
pthread_rwlock_unlock3">
pthread_rwlock_wrlock3">
pthread_rwlockattr_destroy3">
pthread_rwlockattr_getpshared3">
pthread_rwlockattr_init3">
pthread_rwlockattr_setpshared3">
pthread_schedparam3">
pthread_self3">
pthread_set_name_np3">
pthread_setcancelstate3">
pthread_setcanceltype3">
pthread_setschedparam3">
pthread_setspecific3">
pthread_sigmask3">
pthread_spin_init3">
pthread_spin_lock3">
pthread_suspend_all_np3">
pthread_suspend_np3">
pthread_switch_add_np3">
pthread_testcancel3">
pthread_yield3">
ptsname3">
pty3">
publickey3">
putc3">
putchar3">
putenv3">
putp3">
puts3">
putw3">
putwc3">
putwchar3">
putwin3">
pw_util3">
pwcache3">
qiflush3">
qsort3">
querylocale3">
queue3">
quick_exit3">
quotafile3">
radixsort3">
raise3">
rand3">
rand_r3">
rand483">
random3">
raw3">
rcmd3">
rcmd_af3">
rcmdsh3">
re_comp3">
re_exec3">
readdir3">
readline3">
readpassphrase3">
realhostname3">
realhostname_sa3">
realloc3">
reallocarray3">
reallocf3">
realpath3">
recno3">
redrawwin3">
refresh3">
regcomp3">
regerror3">
regex3">
regexec3">
regexp3">
regfree3">
regsterrpc3">
regsub3">
remainder3">
remainderf3">
remove3">
remque3">
remquo3">
replace_panel3">
res_init3">
res_mkquery3">
res_query3">
res_search3">
res_send3">
reset_prog_mode3">
reset_shell_mode3">
resetty3">
resizeterm3">
resolver3">
restartterm3">
restore_helpline3">
rewind3">
rewinddir3">
rexec3">
rfork_thread3">
rindex3">
rint3">
rintf3">
ripemd3">
ripoffline3">
rlhistory3">
round3">
rpc3">
rpc_clnt_auth3">
rpc_clnt_calls3">
rpc_clnt_create3">
rpc_createerr3">
rpc_gss_get_error3">
rpc_gss_get_mech_info3">
rpc_gss_get_mechanisms3">
rpc_gss_get_principal_name3">
rpc_gss_get_versions3">
rpc_gss_getcred3">
rpc_gss_is_installed3">
rpc_gss_max_data_length3">
rpc_gss_mech_to_oid3">
rpc_gss_oid_to_mech3">
rpc_gss_qop_to_num3">
rpc_gss_seccreate3">
rpc_gss_set_callback3">
rpc_gss_set_defaults3">
rpc_gss_set_svc_name3">
rpc_gss_svc_max_data_length3">
rpc_secure3">
rpc_soc3">
rpc_svc_calls3">
rpc_svc_create3">
rpc_svc_err3">
rpc_svc_reg3">
rpc_xdr3">
rpcb_getaddr3">
rpcb_getmaps3">
rpcb_gettime3">
rpcb_rmtcall3">
rpcb_set3">
rpcb_unset3">
rpcbind3">
rpcsec_gss3">
rpmatch3">
rpoll3">
rresvport3">
rresvport_af3">
rtime3">
rune3">
ruserok3">
savetty3">
sbread3">
scalb3">
scalbf3">
scalbn3">
scalbnf3">
scale_form3">
scale_menu3">
scandir3">
scanf3">
scanf_l3">
scanw3">
scr_dump3">
scr_init3">
scr_restore3">
scr_set3">
scrl3">
scroll3">
scrollok3">
sctp_bindx3">
sctp_connectx3">
sctp_freeladdrs3">
sctp_freepaddrs3">
sctp_getaddrlen3">
sctp_getassocid3">
sctp_getladdrs3">
sctp_getpaddrs3">
sctp_opt_info3">
sctp_recvmsg3">
sctp_send3">
sctp_sendmsg3">
sctp_sendmsgx3">
sctp_sendx3">
sdp3">
seed483">
seekdir3">
selectdevs3">
sem_close3">
sem_destroy3">
sem_getvalue3">
sem_init3">
sem_open3">
sem_post3">
sem_timedwait3">
sem_trywait3">
sem_unlink3">
sem_wait3">
set_assertion_failure_callback3">
set_current_field3">
set_current_item3">
set_curterm3">
set_field_back3">
set_field_buffer3">
set_field_fore3">
set_field_init3">
set_field_just3">
set_field_opts3">
set_field_pad3">
set_field_status3">
set_field_term3">
set_field_type3">
set_field_userptr3">
set_fieldtype_arg3">
set_fieldtype_choice3">
set_form_fields3">
set_form_init3">
set_form_opts3">
set_form_page3">
set_form_sub3">
set_form_term3">
set_form_userptr3">
set_form_win3">
set_item_init3">
set_item_opts3">
set_item_term3">
set_item_userptr3">
set_item_value3">
set_max_field3">
set_menu_back3">
set_menu_fore3">
set_menu_format3">
set_menu_grey3">
set_menu_init3">
set_menu_items3">
set_menu_mark3">
set_menu_opts3">
set_menu_pad3">
set_menu_pattern3">
set_menu_spacing3">
set_menu_sub3">
set_menu_term3">
set_menu_userptr3">
set_menu_win3">
set_new_page3">
set_panel_userptr3">
set_term3">
set_top_row3">
setbuf3">
setbuffer3">
setclasscontext3">
setclassenvironment3">
setclassresources3">
setcontext3">
setdomainname3">
setenv3">
setfsent3">
setgrent3">
setgroupent3">
sethostent3">
sethostid3">
sethostname3">
setinvalidrune3">
setjmp3">
setkey3">
setlinebuf3">
setlocale3">
setlogmask3">
setmode3">
setnetconfig3">
setnetent3">
setnetgrent3">
setnetpath3">
setpassent3">
setproctitle3">
setprogname3">
setprotoent3">
setpwent3">
setpwfile3">
setrgid3">
setrpcent3">
setruid3">
setrunelocale3">
setscrreg3">
setservent3">
setstate3">
setsyx3">
setterm3">
setttyent3">
setupterm3">
setusercontext3">
setusershell3">
setvbuf3">
setvfsent3">
sgetrune3">
sha3">
sha2563">
sha5123">
shm_open3">
shm_unlink3">
show_panel3">
sigaddset3">
sigdelset3">
sigemptyset3">
sigfillset3">
siginfo3">
siginterrupt3">
sigismember3">
siglongjmp3">
signal3">
signbit3">
significand3">
significandf3">
sigsetjmp3">
sigsetops3">
sigwait3">
sin3">
sinf3">
sinh3">
sinhf3">
skey3">
skey_crypt3">
skey_getpass3">
skeyaccess3">
skeychallenge3">
skeyinfo3">
skeylookup3">
skeyverify3">
sleep3">
slice_type_name3">
slk_attr3">
slk_attr_off3">
slk_attr_on3">
slk_attr_set3">
slk_attroff3">
slk_attron3">
slk_attrset3">
slk_clear3">
slk_color3">
slk_init3">
slk_label3">
slk_noutrefresh3">
slk_refresh3">
slk_restore3">
slk_set3">
slk_touch3">
snmp_atm3">
snmp_bridge3">
snmp_hast3">
snmp_hostres3">
snmp_lm753">
snmp_mibII3">
snmp_netgraph3">
snmp_target3">
snmp_usm3">
snmp_vacm3">
snmp_wlan3">
snmpmod3">
snprintf3">
sockatmark3">
sourcefilter3">
sprintf3">
sputrune3">
sqrt3">
sqrtf3">
srand3">
srand483">
srandom3">
srandomdev3">
sscanf3">
standend3">
standout3">
start_color3">
statvfs3">
stdarg3">
stdio3">
strcasecmp3">
strcasestr3">
strcat3">
strchr3">
strcmp3">
strcoll3">
strcpy3">
strcspn3">
strdup3">
strerror3">
strfmon3">
strftime3">
strheight3">
string3">
stringlist3">
strlcat3">
strlcpy3">
strlen3">
strmode3">
strncasecmp3">
strncat3">
strncmp3">
strncpy3">
strndup3">
strnstr3">
strpbrk3">
strptime3">
strrchr3">
strsep3">
strsignal3">
strspn3">
strstr3">
strtod3">
strtofflags3">
strtok3">
strtok_r3">
strtol3">
strtoll3">
strtonum3">
strtoq3">
strtoul3">
strtouq3">
strunvis3">
strunvisx3">
strvis3">
strvisx3">
strwidth3">
strxfrm3">
stty3">
subpad3">
subwin3">
svc_destroy3">
svc_fds3">
svc_fdset3">
svc_getargs3">
svc_getcaller3">
svc_getreg3">
svc_getregset3">
svc_register3">
svc_run3">
svc_sendreply3">
svc_unregister3">
svcerr_auth3">
svcerr_decode3">
svcerr_noproc3">
svcerr_noprog3">
svcerr_progvers3">
svcerr_systemerr3">
svcerr_weakauth3">
svcfd_create3">
svcraw_create3">
svctcp_create3">
svcudp_bufcreate3">
swab3">
swapcontext3">
syncok3">
sys_errlist3">
sys_nerr3">
sys_siglist3">
sys_signame3">
sysconf3">
sysctl3">
sysctlbyname3">
sysexits3">
syslog3">
system3">
tan3">
tanf3">
tanh3">
tanhf3">
tcdrain3">
tcflow3">
tcflush3">
tcgetattr3">
tcgetpgrp3">
tcgetsid3">
tcsendbreak3">
tcsetattr3">
tcsetpgrp3">
tcsetsid3">
telldir3">
tempnam3">
term_variables3">
termattrs3">
termname3">
tgetent3">
tgetflag3">
tgetnum3">
tgetstr3">
tgmath3">
tgoto3">
thrd_create3">
tigetflag3">
tigetnum3">
tigetstr3">
time3">
time2posix3">
timegm3">
timeout3">
timeradd3">
timerclear3">
timercmp3">
timerisset3">
timersub3">
times3">
timezone3">
tmpfile3">
tmpnam3">
toascii3">
tolower3">
top_panel3">
top_row3">
touchline3">
touchwin3">
toupper3">
towctrans3">
towlower3">
towupper3">
tparm3">
tputs3">
tree3">
tree_add3">
tree_delete3">
tree_init3">
tree_mung3">
tree_srch3">
tree_trav3">
trimdomain3">
trunc3">
tsearch3">
ttyname3">
ttyslot3">
typeahead3">
tzset3">
tzsetwall3">
ualarm3">
ucontext3">
ufs_disk_close3">
ulimit3">
ulog_login3">
uname3">
unctrl3">
ungetc3">
ungetch3">
ungetmouse3">
ungetwc3">
uniaddr3">
unifunc3">
unimsg3">
unisap3">
unistruct3">
unpost_form3">
unpost_menu3">
unsetenv3">
untouchwin3">
unvis3">
update_panels3">
usb3">
usbhid3">
use_default_colors3">
use_env3">
use_extended_names3">
use_helpfile3">
use_helpline3">
uselocale3">
user_from_uid3">
usleep3">
utempter_add_record3">
utime3">
utmpx3">
uu_lock3">
uu_lock_txfr3">
uu_lockerr3">
uu_unlock3">
uucplock3">
uuid3">
uuid.dec.be3">
uuid.dec.le3">
uuid.enc.be3">
uuid.enc.le3">
va_arg3">
va_end3">
va_start3">
valloc3">
varargs3">
vasprintf3">
verr3">
verrc3">
verrx3">
vfprintf3">
vfscanf3">
vfsisloadable3">
vfsload3">
vgl3">
vidattr3">
vidputs3">
vis3">
vline3">
vprintf3">
vscanf3">
vsnprintf3">
vsprintf3">
vsscanf3">
vsyslog3">
vw_printw3">
vw_scanw3">
vwarn3">
vwarnc3">
vwarnx3">
vwprintw3">
vwscanw3">
waddch3">
waddchnstr3">
waddchstr3">
waddnstr3">
waddstr3">
warn3">
warnc3">
warnx3">
wattr_get3">
wattr_off3">
wattr_on3">
wattr_set3">
wattroff3">
wattron3">
wattrset3">
wbkgd3">
wbkgdset3">
wborder3">
wchgat3">
wclear3">
wclrtobot3">
wclrtoeol3">
wcolor_set3">
wcrtomb3">
wcscat3">
wcschr3">
wcscmp3">
wcscoll3">
wcscpy3">
wcscspn3">
wcsftime3">
wcslcat3">
wcslcpy3">
wcslen3">
wcsncat3">
wcsncmp3">
wcsncpy3">
wcsnrtombs3">
wcspbrk3">
wcsrchr3">
wcsrtombs3">
wcsspn3">
wcsstr3">
wcstod3">
wcstoimax3">
wcstok3">
wcstol3">
wcstoll3">
wcstombs3">
wcstoul3">
wcstoull3">
wcstoumax3">
wcswidth3">
wcsxfrm3">
wctob3">
wctomb3">
wctrans3">
wctype3">
wcursyncup3">
wcwidth3">
wdelch3">
wdeleteln3">
wechochar3">
week3">
weekday3">
wenclose3">
werase3">
wgetch3">
wgetnstr3">
wgetstr3">
whline3">
winch3">
winchnstr3">
winchstr3">
winnstr3">
winsch3">
winsdelln3">
winsertln3">
winsnstr3">
winsstr3">
winstr3">
wmemchr3">
wmemcmp3">
wmemcpy3">
wmemmove3">
wmemset3">
wmouse_trafo3">
wmove3">
wnoutrefresh3">
wordexp3">
wprintf3">
wprintw3">
wredrawln3">
wrefresh3">
wresize3">
wscanf3">
wscanw3">
wscrl3">
wsetscrreg3">
wstandend3">
wstandout3">
wsyncdown3">
wsyncup3">
wtimeout3">
wtouchln3">
wvline3">
xdr3">
xdr_accepted_reply3">
xdr_array3">
xdr_authunix_parms3">
xdr_bool3">
xdr_bytes3">
xdr_callhdr3">
xdr_callmsg3">
xdr_char3">
xdr_destroy3">
xdr_double3">
xdr_enum3">
xdr_float3">
xdr_free3">
xdr_getpos3">
xdr_inline3">
xdr_int3">
xdr_long3">
xdr_opaque3">
xdr_opaque_auth3">
xdr_pmap3">
xdr_pmaplist3">
xdr_pointer3">
xdr_reference3">
xdr_rejected_reply3">
xdr_replymsg3">
xdr_setpos3">
xdr_short3">
xdr_string3">
xdr_u_char3">
xdr_u_long3">
xdr_u_short3">
xdr_union3">
xdr_vector3">
xdr_void3">
xdr_wrapstring3">
xdrmem_create3">
xdrrec_create3">
xdrrec_endofrecord3">
xdrrec_eof3">
xdrrec_skiprecord3">
xdrstdio_create3">
xlocale3">
xo_attr3">
xo_create3">
xo_emit3">
xo_emit_err3">
xo_err3">
xo_error3">
xo_finish3">
xo_flush3">
xo_message3">
xo_no_setlocale3">
xo_open_container3">
xo_open_list3">
xo_open_marker3">
xo_parse_args3">
xo_set_allocator3">
xo_set_flags3">
xo_set_info3">
xo_set_options3">
xo_set_style3">
xo_set_syslog_enterprise_id3">
xo_set_version3">
xo_set_writer3">
xo_syslog3">
xprt_register3">
xprt_unregister3">
y03">
y0f3">
y13">
y1f3">
yn3">
ynf3">
zlib3">
zopen3">
CAM4">
NIS4">
SCSI4">
SMP4">
YP4">
aac4">
aacraid4">
abtn4">
acd4">
acpi4">
acpi_aiboost4">
acpi_asus4">
acpi_asus_wmi4">
acpi_dock4">
acpi_fujitsu4">
acpi_hp4">
acpi_ibm4">
acpi_panasonic4">
acpi_rapidstart4">
acpi_sony4">
acpi_thermal4">
acpi_toshiba4">
acpi_video4">
acpi_wmi4">
ad4">
ada4">
adv4">
adw4">
ae4">
aesni4">
afd4">
age4">
agp4">
aha4">
ahb4">
ahc4">
ahci4">
ahd4">
aibs4">
aic4">
aio4">
alc4">
ale4">
alpm4">
als40004">
altera_atse4">
altera_avgen4">
altera_jtag_uart4">
altera_sdcard4">
altq4">
amd4">
amdpm4">
amdsbwd4">
amdsmb4">
amdtemp4">
amr4">
an4">
aout4">
apic4">
apm4">
ar4">
arcmsr4">
arl4">
arp4">
asc4">
asmc4">
asr4">
ast4">
ata4">
atapicam4">
ataraid4">
atf-test-case4">
ath4">
ath_ahb4">
ath_hal4">
ath_pci4">
atkbd4">
atkbdc4">
atp4">
atrtc4">
attimer4">
audit4">
auditpipe4">
aue4">
auxio4">
awi4">
axe4">
axge4">
bce4">
bfe4">
bge4">
bhyve4">
bktr4">
blackhole4">
bpf4">
bridge4">
brooktree4">
bt4">
bwi4">
bwn4">
bxe4">
cam4">
capsicum4">
cardbus4">
carp4">
cas4">
cc_cdg4">
cc_chd4">
cc_cubic4">
cc_dctcp4">
cc_hd4">
cc_htcp4">
cc_newreno4">
cc_vegas4">
ccd4">
cd4">
cdce4">
ce4">
central4">
ch4">
ciss4">
clkbrd4">
cloudabi4">
cm4">
cmx4">
cnw4">
coda4">
coretemp4">
cp4">
cpuctl4">
cpufreq4">
creator4">
crypto4">
cs4">
csa4">
ct4">
ctau4">
ctl4">
cue4">
cx4">
cxgb4">
cxgbe4">
cy4">
cyapa4">
da4">
daic4">
dc4">
dcons4">
dcons_crom4">
ddb4">
de4">
devctl4">
dgb4">
digi4">
disc4">
divert4">
dpms4">
dpt4">
ds13074">
ds32314">
dtrace-io4">
dtrace-ip4">
dtrace-proc4">
dtrace-sched4">
dtrace-tcp4">
dtrace-udp4">
dummynet4">
ebus4">
ed4">
edsc4">
eeprom4">
ef4">
ehci4">
el4">
em4">
emu10k14">
en4">
enc4">
ep4">
epair4">
esp4">
est4">
et4">
etherswitch4">
eventtimers4">
ex4">
exa4">
ex4">
faith4">
fast_ipsec4">
fatm4">
fbdevhw4">
fd4">
fdc4">
fdt4">
fdtbus4">
fe4">
fea4">
ffclock4">
fhc4">
filemon4">
firewire4">
fla4">
fpa4">
full4">
fwe4">
fwip4">
fwohci4">
fxp4">
gbde4">
gdb4">
gem4">
geom4">
geom_fox4">
geom_linux_lvm4">
geom_map4">
geom_uncompress4">
geom_uzip4">
gif4">
glxsb4">
gpib4">
gpio4">
gpioiic4">
gpioled4">
gre4">
gsc4">
gusc4">
gx4">
h_ertt4">
harp4">
hatm4">
hifn4">
hme4">
hpet4">
hpt27xx4">
hptiop4">
hptmv4">
hptnr4">
hptrr4">
hv_ata_pci_disengage4">
hv_kvp4">
hv_netvsc4">
hv_storvsc4">
hv_utils4">
hv_vmbus4">
hwpmc4">
i4b4">
i4bcapi4">
i4bctl4">
i4bing4">
i4bipr4">
i4bisppp4">
i4bq9214">
i4bq9314">
i4brbch4">
i4btel4">
i4btrc4">
iavc4">
ichsmb4">
ichwd4">
icmp4">
icmp64">
ida4">
idt4">
ie4">
ieee802114">
if_bridge4">
if_nf10bmac4">
ifmib4">
ifpi4">
ifpi24">
ig44">
igb4">
igmp4">
ihfc4">
iic4">
iicbb4">
iicbus4">
iicsmb4">
iir4">
imm4">
inet4">
inet64">
intpm4">
intro4">
io4">
ioat4">
ip4">
ip64">
ipaccounting4">
ipacct4">
ipf4">
ipfilter4">
ipfirewall4">
ipfw4">
ipheth4">
ipl4">
ipmi4">
ipnat4">
ips4">
ipsec4">
ipw4">
ipwfw4">
isci4">
iscsi4">
iscsi_initiator4">
isic4">
isl4">
ismt4">
isp4">
ispfw4">
itjc4">
iwi4">
iwic4">
iwifw4">
iwm4">
iwmfw4">
iwn4">
iwnfw4">
ixgb4">
ixgbe4">
ixl4">
ixlv4">
jme4">
joy4">
k8temp4">
kame4">
kbdmux4">
keyboard4">
kld4">
kmem4">
ksyms4">
ktr4">
kue4">
labpc4">
lagg4">
le4">
led4">
lge4">
lindev4">
linux4">
lkm4">
lm754">
lmc4">
lnc4">
lo4">
lomac4">
longrun4">
lp4">
lpbb4">
lpt4">
mac4">
mac_biba4">
mac_bsdextended4">
mac_ifoff4">
mac_lomac4">
mac_mls4">
mac_none4">
mac_partition4">
mac_portacl4">
mac_seeotheruids4">
mac_stub4">
mac_test4">
machfb4">
maestro34">
malo4">
matcd4">
mcd4">
md4">
me4">
mem4">
meteor4">
mfi4">
miibus4">
mk48txx4">
mld4">
mlx4">
mly4">
mmc4">
mmcsd4">
mn4">
mod_cc4">
mos4">
mouse4">
mpi4">
mpr4">
mps4">
mpt4">
mrsas4">
mse4">
msk4">
mtio4">
multicast4">
mvs4">
mwl4">
mwlfw4">
mxge4">
my4">
nand4">
nandsim4">
natm4">
natmip4">
ncr4">
ncv4">
ndis4">
net802114">
netfpga10g_nf10bmac4">
netgraph4">
netintro4">
netmap4">
networking4">
nfe4">
nfsmb4">
nfsv44">
ng_UI4">
ng_async4">
ng_atm4">
ng_atmllc4">
ng_atmpif4">
ng_bluetooth4">
ng_bpf4">
ng_bridge4">
ng_bt3c4">
ng_btsocket4">
ng_car4">
ng_ccatm4">
ng_cisco4">
ng_deflate4">
ng_device4">
ng_echo4">
ng_eiface4">
ng_etf4">
ng_ether4">
ng_ether_echo4">
ng_fec4">
ng_frame_relay4">
ng_gif4">
ng_gif_demux4">
ng_h44">
ng_hci4">
ng_hole4">
ng_hub4">
ng_iface4">
ng_ip_input4">
ng_ipfw4">
ng_ksocket4">
ng_l2cap4">
ng_l2tp4">
ng_lmi4">
ng_mppc4">
ng_nat4">
ng_netflow4">
ng_one2many4">
ng_patch4">
ng_ppp4">
ng_pppoe4">
ng_pptpgre4">
ng_pred14">
ng_rfc14904">
ng_socket4">
ng_source4">
ng_split4">
ng_sppp4">
ng_sscfu4">
ng_sscop4">
ng_tag4">
ng_tcpmss4">
ng_tee4">
ng_tty4">
ng_ubt4">
ng_uni4">
ng_vjc4">
ng_vlan4">
ngatmbase4">
nge4">
nis4">
nmdm4">
npe4">
npx4">
nsp4">
ntb4">
null4">
numa4">
nvd4">
nve4">
nvme4">
nvram4">
nxge4">
oce4">
ofw_console4">
ohci4">
oldcard4">
oltr4">
openfirm4">
openprom4">
opie4">
orm4">
otus4">
otusfw4">
ow4">
ow_temp4">
owc4">
padlock4">
pae4">
pass4">
patm4">
pbio4">
pccard4">
pccbb4">
pcf4">
pci4">
pcib4">
pcic4">
pcii4">
pcm4">
pcn4">
pcvt4">
perfmon4">
pf4">
pflog4">
pfsync4">
pim4">
plip4">
pms4">
pnp4">
pnpbios4">
polling4">
ppbus4">
ppc4">
ppi4">
ppp4">
procdesc4">
proto4">
psm4">
pst4">
pt4">
pts4">
pty4">
puc4">
qlxgb4">
qlxgbe4">
qlxge4">
raid4">
ral4">
random4">
ray4">
rc4">
rdp4">
re4">
rgephy4">
rights4">
rl4">
rndtest4">
route4">
rp4">
rr232x4">
rsu4">
rsufw4">
rtc4">
rtwn4">
rtwnfw4">
rue4">
rum4">
run4">
runfw4">
sa4">
sab4">
safe4">
sb4">
sbc4">
sbni4">
sbp4">
sbp_targ4">
sbsh4">
sbus4">
sc4">
scc4">
scd4">
sched_4bsd4">
sched_core4">
sched_ule4">
screen4">
screensaver4">
scsi4">
sctp4">
sd4">
sdhci4">
sem4">
send4">
ses4">
sf4">
sfxge4">
sge4">
si4">
siba4">
siftr4">
siis4">
simplebus4">
sio4">
sis4">
sk4">
sl4">
smapi.44">
smb4">
smbus4">
smp4">
smsc4">
smu4">
sn4">
snc4">
snd4">
snd_ad18164">
snd_als40004">
snd_atiixp4">
snd_audiocs4">
snd_cmi4">
snd_cs42814">
snd_csa4">
snd_ds14">
snd_emu10k14">
snd_emu10kx4">
snd_envy244">
snd_envy24ht4">
snd_es137x4">
snd_ess4">
snd_fm8014">
snd_gusc4">
snd_hda4">
snd_hdspe4">
snd_ich4">
snd_maestro4">
snd_maestro34">
snd_mss4">
snd_neomagic4">
snd_sbc4">
snd_solo4">
snd_spicds4">
snd_t4dwave4">
snd_uaudio4">
snd_via82334">
snd_via82c6864">
snd_vibes4">
snp4">
sound4">
speaker4">
spic4">
spkr4">
splash4">
sppp4">
sr4">
st4">
stderr4">
stdin4">
stdout4">
ste4">
stf4">
stg4">
stge4">
stl4">
stli4">
streams4">
sunkbd4">
svr44">
sym4">
syncache4">
syncer4">
syscons4">
sysmouse4">
tap4">
targ4">
tcp4">
tdfx4">
terasic_mtl4">
termios4">
textdump4">
ti4">
timecounters4">
tl4">
tnt48824">
tpm4">
trm4">
ttcp4">
tty4">
tun4">
tw4">
twa4">
twe4">
tws4">
tx4">
txp4">
u3g4">
uark4">
uart4">
uath4">
uaudio4">
ubsa4">
ubsec4">
ubser4">
ubtbcmfw4">
uchcom4">
ucom4">
ucycom4">
udav4">
udbp4">
udp4">
uep4">
ufm4">
ufoma4">
uftdi4">
ugen4">
uhci4">
uhid4">
uhidev4">
uhso4">
uipaq4">
ukbd4">
uled4">
ulpt4">
umass4">
umcs4">
umct4">
umodem4">
umoscom4">
ums4">
unix4">
update4">
upgt4">
uplcom4">
ural4">
urio4">
urtw4">
urtwn4">
urtwnfw4">
usb4">
usb_quirk4">
usb_template4">
uscanner4">
usfs4">
uslcom4">
utopia4">
uvisor4">
uvscom4">
vale4">
vga4">
vge4">
viapm4">
viawd4">
vinum4">
virtio4">
virtio_balloon4">
virtio_blk4">
virtio_random4">
virtio_scsi4">
udl4">
udplite4">
ugold4">
urndis4">
virtio_console4">
vkbd4">
vlan4">
vmx4">
vn4">
vpd4">
vpo4">
vr4">
vt4">
vte4">
vtnet4">
vx4">
vxge4">
vxlan4">
watchdog4">
wb4">
wbwd4">
wd4">
wfd4">
wi4">
witness4">
wl4">
wlan4">
wlan_acl4">
wlan_amrr4">
wlan_ccmp4">
wlan_tkip4">
wlan_wep4">
wlan_xauth4">
worm4">
wpi4">
wsp4">
wst4">
wt4">
wx4">
xe4">
xen4">
xhci4">
xl4">
xnb4">
xpt4">
zero4">
zyd4">
ati4">
kbd4">
i8104">
intel4">
mousedrv4">
nv4">
r1284">
radeon4">
vesa4">
a.out5">
acct5">
adduser_conf5">
aliases5">
amd.conf5">
ar5">
audit_class5">
audit_control5">
audit_event5">
audit.log5">
audit_user5">
audit_warn5">
auditdistd_conf5">
auth.conf5">
auto_master5">
autofs5">
big55">
bluetooth.conf5">
bluetooth_device_conf5">
bluetooth_hosts5">
bluetooth_protocols5">
boot.config5">
bootparams5">
bootptab5">
cached.conf5">
config5">
conserver.cf5">
core5">
cpio5">
crontab5">
ctf5">
ctl.conf5">
ctm5">
cvs5">
devd.conf5">
devfs5">
devfs.conf5">
devfs.rules5">
device.hints5">
dhclient.conf5">
dhclient.leases5">
dhcp-eval5">
dhcp-options5">
dhcpd.conf5">
dhcpd.leases5">
dir5">
dirent5">
disklabel5">
disktab5">
dm.conf5">
drivers.conf5">
editrc5">
elf5">
ethers5">
euc5">
eui645">
exports5">
ext2fs5">
fbtab5">
fdesc5">
fdescfs5">
finger.conf5">
fonts-conf5">
forward5">
freebsd-update.conf5">
fs5">
fstab5">
ftpchroot5">
ftpd.conf5">
ftpusers5">
gb180305">
gb23125">
gbk5">
gettytab5">
groff_font5">
groff_out5">
groff_tmac5">
group5">
hast.conf5">
hcsecd_conf5">
hesiod.conf5">
hostapd_conf5">
hosts5">
hosts_access5">
hosts.equiv5">
hosts.lpd5">
hosts_options5">
inetd.conf5">
info5">
inode5">
intro5">
iovctl_conf5">
ipf5">
ipfilter5">
ipnat5">
ippool5">
ipsend5">
iscsi.conf5">
isdnd.acct5">
isdnd.rates5">
isdnd.rc5">
jail.conf5">
kbdmap5">
kernfs5">
keycap5">
keymap5">
krb5_conf5">
lastlog5">
libarchive-formats5">
libmap.conf5">
link5">
linprocfs5">
linsysfs5">
lj4_font5">
loader.conf5">
login.access5">
login.conf5">
mac.conf5">
magic5">
mailer.conf5">
make.conf5">
man_conf5">
mech5">
modems5">
moduli5">
motd5">
mqueuefs5">
msdosfs5">
mskanji5">
mtree5">
named.conf5">
netconfig5">
netgroup5">
netid5">
networks5">
newsyslog.conf5">
nologin5">
nscd_conf5">
nsmb_conf5">
nsswitch.conf5">
ntp.conf5">
ntp.keys5">
nullfs5">
opieaccess5">
opiekeys5">
pam.conf5">
pam.d5">
passwd5">
pbm5">
pcap-savefile5">
pccard.conf5">
periodic.conf5">
pf.conf5">
pf_os5">
phones5">
pim6dd.conf5">
pim6sd.conf5">
pkg-repository5">
pkg.conf5">
portindex5">
portsnap.conf5">
printcap5">
procfs5">
procmailex5">
protocols5">
publickey5">
pw.conf5">
quota.group5">
quota.user5">
radius.conf5">
ranlib5">
rc.conf5">
rcsfile5">
rctl_conf5">
regdomain5">
reiserfs5">
remote5">
resolv.conf5">
resolvconf_conf5">
resolver5">
rhosts5">
rndc_conf5">
rpc5">
rrenumd.conf5">
rtadvd.conf5">
services5">
shells5">
skey.access5">
src.conf5">
ssh_config5">
sshd_config5">
stab5">
stablerestart5">
style.Makefile5">
sysctl.conf5">
syslog.conf5">
tacplus.conf5">
tar5">
term5">
termcap5">
terminfo5">
texinfo5">
tmac5">
tmpfs5">
ttys5">
types5">
tzfile5">
unbound_conf5">
usbd.conf5">
utf25">
utf85">
utmp5">
uuencode5">
uuencode.format5">
vgrindefs5">
wpa_supplicant.conf5">
wtmp5">
xfs5">
xo_format5">
adventure6">
arithmetic6">
atc6">
backgammon6">
banner6">
battlestar6">
bcd6">
bs6">
caesar6">
canfield6">
cfscores6">
cribbage6">
factor6">
fish6">
fortune6">
grdc6">
hack6">
hangman6">
intro6">
larn6">
mille6">
morse6">
number6">
phantasia6">
piano6">
pig6">
pom6">
ppt6">
primes6">
quiz6">
rain6">
random6">
robots6">
rogue6">
rot136">
sail6">
snake6">
snscore6">
trek6">
wargames6">
worm6">
worms6">
wump6">
X7">
adding_user7">
as7">
ascii7">
atf7">
binutils7">
bsd_snmpmod_mk7">
build7">
c997">
clocks7">
crypto7">
development7">
diff7">
ditroff7">
environ7">
eqn7">
ffs7">
firewall7">
groff7">
groff_char7">
groff_diff7">
groff_man7">
groff_markup7">
groff_mdoc7">
groff_me7">
groff_mm7">
groff_mmse7">
groff_ms7">
groff_msafer7">
groff_trace7">
groff_www7">
growfs7">
hier7">
hostname7">
intro7">
ld7">
ldint7">
lint7">
maclabel7">
mailaddr7">
man7">
mandoc_char7">
markup7">
mdoc7">
mdoc.samples7">
me7">
miscellaneous7">
mm7">
mmroff7">
mmse7">
ms7">
msafer7">
operator7">
orig_me7">
pcap-filter7">
pcap-linktype7">
pkg7">
ports7">
re_format7">
release7">
roff7">
sane7">
sdoc7">
sec-doc7">
security7">
sprog7">
stdint7">
sticky7">
style.perl7">
symlink7">
tbl7">
term7">
tests7">
tuning7">
zpool-features7">
IPXrouted8">
MAKEDEV8">
ac8">
accton8">
acpiconf8">
acpidb8">
acpidump8">
adding_user8">
adduser8">
adjkerntz8">
amd8">
amldb8">
amq8">
ancontrol8">
apachectl8">
apm8">
apmconf8">
apmd8">
arlconfig8">
arp8">
asf8">
atacontrol8">
ath3kfw8">
atm8">
atmarpd8">
atmconfig8">
atrun8">
audit8">
auditd8">
auditdistd8">
authpf8">
automount8">
automountd8">
autounmountd8">
badsect8">
bcmfw8">
beastie_4th8">
bhyve8">
bhyveload8">
binmiscctl8">
boot8">
boot_i3868">
boot0cfg8">
boot98cfg8">
bootparamd8">
bootpd8">
bootpef8">
bootpgw8">
bootptest8">
bpkg8">
brand_4th8">
bsdconfig8">
bsdinstall8">
bsdlabel8">
bt3cfw8">
bthidcontrol8">
bthidd8">
btpand8">
btxld8">
burncd8">
cached8">
camcontrol8">
casperd8">
catman.local8">
ccdconfig8">
chat8">
check-password_4th8">
chkgrp8">
chkprintcap8">
chown8">
chroot8">
clear_locks8">
clri8">
color_4th8">
comcontrol8">
comsat8">
config8">
conscontrol8">
cpucontrol8">
crash8">
crashinfo8">
cron8">
ctladm8">
ctld8">
ctlstat8">
cvsbug8">
cvsupd8">
cxconfig8">
cxgbtool8">
daemon8">
dconschat8">
ddb8">
ddns-confgen8">
delay_4th8">
dev_mkdb8">
devctl8">
devd8">
devfs8">
devinfo8">
dhclient8">
dhclient-script8">
dhcpd8">
dhcrelay8">
digictl8">
diskcheckd8">
diskinfo8">
disklabel8">
diskless8">
diskpart8">
dm8">
dma8">
dmesg8">
dnssec-dsfromkey8">
dnssec-keyfromlabel8">
dnssec-keygen8">
dnssec-revoke8">
dnssec-settime8">
dnssec-signzone8">
dnssec-verify8">
dump8">
dumpcis8">
dumpfs8">
dumpon8">
editmap8">
edquota8">
eeprom8">
etcupdate8">
etherswitchcfg8">
extattrctl8">
faithd8">
fastboot8">
fasthalt8">
fdcontrol8">
fdisk8">
ffsinfo8">
fingerd8">
fixmount8">
flowctl8">
fmtree8">
fore_dnld8">
freebsd-update8">
fsck8">
fsck_ffs8">
fsck_msdosfs8">
fsck_ufs8">
fsdb8">
fsinfo8">
fsirand8">
fstyp8">
ft8">
ftp-proxy8">
ftpd8">
fwcontrol8">
gbde8">
gcache8">
gconcat8">
geli8">
genassym8">
genrandom8">
gensetdefs8">
geom8">
getextattr8">
getfmac8">
getpmac8">
getty8">
ggatec8">
ggated8">
ggatel8">
gifconfig8">
gjournal8">
glabel8">
gmirror8">
gmountver8">
gmultipath8">
gnop8">
gpart8">
gpioctl8">
gpt8">
gptboot8">
gptzfsboot8">
graid8">
graid38">
growfs8">
gsched8">
gshsec8">
gssd8">
gstat8">
gstripe8">
gvinum8">
gvirstor8">
halt8">
hastctl8">
hastd8">
hccontrol8">
hcsecd8">
hcseriald8">
hlfsd8">
hostapd8">
hostapd_cli8">
hprop8">
hpropd8">
hv_kvp_daemon8">
i2c8">
iasl8">
ibcs28">
idmapd8">
ifconfig8">
ifmcstat8">
ilmid8">
inetd8">
init8">
intro8">
iostat8">
iovctl8">
ip6addrctl8">
ip6fw8">
ipf8">
ipfs8">
ipfstat8">
ipfw8">
ipfwpcap8">
ipmon8">
ipnat8">
ippool8">
iprop8">
iprop-log8">
isc-hmac-fixup8">
iscontrol8">
iscsictl8">
iscsid8">
isdnd8">
isdndebug8">
isdndecode8">
isdnmonitor8">
isdnphone8">
isdntel8">
isdntelctl8">
isdntrace8">
ispcvt8">
ispppcontrol8">
jail8">
jexec8">
jls8">
joy8">
k5su8">
kadmin8">
kadmind8">
kcm8">
kdc8">
kdigest8">
kerberos8">
kernbb8">
keyserv8">
kfd8">
kget8">
kgmon8">
kgzip8">
kimpersonate8">
kldconfig8">
kldload8">
kldstat8">
kldunload8">
kldxref8">
kpasswdd8">
kstash8">
ktrdump8">
ktutil8">
kzip8">
l2control8">
l2ping8">
lastlogin8">
ldconfig8">
linux8">
lmcconfig8">
loader8">
loader.4th8">
locate.updatedb8">
lpc8">
lpd8">
lptcontrol8">
lukemftpd8">
lwresd8">
mail.local8">
mailstats8">
mailwrapper8">
makefs8">
makekey8">
makemap8">
makewhatis8">
makewhatis.local8">
manctl8">
map-mbone8">
mca8">
mdconfig8">
mdmfs8">
memcontrol8">
menu_4th8">
menusets_4th8">
mergemaster8">
mfiutil8">
mfs8">
mixer8">
mk-amd-map8">
mkisofs8">
mknetid8">
mknod8">
mksnap_ffs8">
mkulzma8">
mkuzip8">
mld6query8">
mlxcontrol8">
modload8">
mount8">
mount_cd96608">
mount_conf8">
mount_devfs8">
mount_ext2fs8">
mount_fdesc8">
mount_fusefs8">
mount_kernfs8">
mount_linprocfs8">
mount_mfs8">
mount_msdos8">
mount_msdosfs8">
mount_newnfs8">
mount_nfs8">
mount_nfs48">
mount_ntfs8">
mount_null8">
mount_nullfs8">
mount_nwfs8">
mount_portal8">
mount_portalfs8">
mount_procfs8">
mount_reiserfs8">
mount_smbfs8">
mount_std8">
mount_udf8">
mount_umap8">
mount_umapfs8">
mount_union8">
mount_unionfs8">
mountd8">
moused8">
mptutil8">
mrinfo8">
mrouted8">
mtest8">
mtrace8">
mtree8">
named8">
named-bootconf8">
named-checkconf8">
named-checkzone8">
named-journalprint8">
named-xfer8">
named.reload8">
named.restart8">
nanobsd8">
natd8">
ndc8">
ndis_events8">
ndiscvt8">
ndisgen8">
ndp8">
netstat8">
newfs8">
newfs_msdos8">
newkey8">
newsyslog8">
nextboot8">
nfscbd8">
nfsd8">
nfsdumpstate8">
nfsiod8">
nfsrevoke8">
nfsuserd8">
ngctl8">
nghook8">
nmtree8">
nologin8">
nos-tun8">
nscd8">
nsec3hash8">
nslookup8">
nsupdate8">
ntp-genkeys8">
ntp-keygen8">
ntpd8">
ntpdate8">
ntpdc8">
ntpq8">
ntptime8">
ntptrace8">
nvmecontrol8">
ofwdump8">
osf18">
pac8">
pam8">
pam_anonymous8">
pam_chroot8">
pam_deny8">
pam_echo8">
pam_exec8">
pam_ftpusers8">
pam_group8">
pam_guest8">
pam_kerberosIV8">
pam_krb58">
pam_ksu8">
pam_lastlog8">
pam_login_access8">
pam_nologin8">
pam_opie8">
pam_opieaccess8">
pam_passwdqc8">
pam_permit8">
pam_radius8">
pam_rhost8">
pam_rhosts8">
pam_rootok8">
pam_securetty8">
pam_self8">
pam_ssh8">
pam_tacplus8">
pam_unix8">
pam_wheel8">
pc-sysinstall8">
pccardc8">
pccardd8">
pciconf8">
periodic8">
pfctl8">
pflogd8">
phttpget8">
picobsd8">
pim6dd8">
pim6sd8">
ping8">
ping68">
pkg8">
pkg-add8">
pkg-annotate8">
pkg-audit8">
pkg-autoremove8">
pkg-backup8">
pkg-check8">
pkg-clean8">
pkg-config8">
pkg-convert8">
pkg-create8">
pkg-delete8">
pkg-fetch8">
pkg-info8">
pkg-install8">
pkg-lock8">
pkg-query8">
pkg-register8">
pkg-remove8">
pkg-repo8">
pkg-rquery8">
pkg-search8">
pkg-set8">
pkg-shell8">
pkg-shlib8">
pkg-static8">
pkg-stats8">
pkg-unlock8">
pkg-update8">
pkg-updating8">
pkg-upgrade8">
pkg-version8">
pkg-which8">
pmcannotate8">
pmccontrol8">
pmcstat8">
pmcstudy8">
pnpinfo8">
portmap8">
portmaster8">
portsnap8">
poudriere8">
powerd8">
poweroff8">
ppp8">
pppctl8">
pppd8">
pppoed8">
pppstats8">
praliases8">
prefix8">
procctl8">
pstat8">
pw8">
pwd_mkdb8">
pxeboot8">
quot8">
quotacheck8">
quotaoff8">
quotaon8">
raidctl8">
rarpd8">
raycontrol8">
rbootd8">
rc8">
rc.atm8">
rc.d8">
rc.firewall8">
rc.i3868">
rc.local8">
rc.network8">
rc.pccard8">
rc.sendmail8">
rc.serial8">
rc.service8">
rc.shutdown8">
rc.subr8">
rcorder8">
rctl8">
rdump8">
reboot8">
renice8">
repquota8">
rescue8">
resolvconf8">
restore8">
revnetgroup8">
rexecd8">
rfcomm_pppd8">
rip6query8">
rlogind8">
rmail8">
rmextattr8">
rmt8">
rmuser8">
rndc8">
rndc-confgen8">
rndcontrol8">
route8">
route6d8">
routed8">
rpc.lockd8">
rpc.rquotad8">
rpc.rstatd8">
rpc.rusersd8">
rpc.rwalld8">
rpc.sprayd8">
rpc.statd8">
rpc.umntall8">
rpc.yppasswdd8">
rpc.ypxfrd8">
rpcbind8">
rpcinfo8">
rrenumd8">
rrestore8">
rshd8">
rtadvctl8">
rtadvd8">
rtquery8">
rtsol8">
rtsold8">
rwhod8">
sa8">
sade8">
savecore8">
sconfig8">
scsi8">
scspd8">
sdpcontrol8">
sdpd8">
securelevel8">
sendmail8">
service8">
services.mkdb8">
sesutil8">
setextattr8">
setfmac8">
setfsmac8">
setkey8">
setpmac8">
sftp-server8">
showmount8">
shutdown8">
sicontrol8">
slattach8">
slip8">
sliplogin8">
slstat8">
smbmsg8">
smrsh8">
snapinfo8">
sntp8">
spkrtest8">
spppcontrol8">
spray8">
ssh-keysign8">
ssh-pkcs11-helper8">
sshd8">
ssl8">
sticky8">
stlload8">
stlstats8">
strfile8">
string2key8">
sudo8">
sunlabel8">
svr48">
swapctl8">
swapfile8">
swapinfo8">
swapoff8">
swapon8">
sync8">
sysctl8">
sysinstall8">
syslogd8">
sysrc8">
talkd8">
tcpd8">
tcpdchk8">
tcpdmatch8">
tcpdrop8">
telnetd8">
tftp-proxy8">
tftpd8">
timed8">
timedc8">
tmpfs8">
traceroute8">
traceroute68">
trpt8">
tunefs8">
tzsetup8">
uathload8">
uefi8">
uefisign8">
ugidfw8">
umount8">
unbound8">
unbound-anchor8">
unbound-checkconf8">
unbound-control8">
unstr8">
updatedb8">
usbconfig8">
usbd8">
usbdevs8">
usbdump8">
utx8">
utxrm8">
uuchk8">
uucico8">
uucpd8">
uusched8">
uuxqt8">
verify_krb5_conf8">
version_4th8">
vigr8">
vinum8">
vipw8">
vmstat8">
vnconfig8">
vtfontcvt8">
wake8">
watch8">
watchdog8">
watchdogd8">
wicontrol8">
wire-test8">
wlandebug8">
wlconfig8">
wpa_cli8">
wpa_passphrase8">
wpa_supplicant8">
xtend8">
yp8">
yp_mkdb8">
ypbind8">
ypinit8">
yppoll8">
yppush8">
ypserv8">
ypset8">
ypxfr8">
zdb8">
zdump8">
zfs8">
zfsboot8">
zfsloader8">
zic8">
zpool8">
zzz8">
BUF_ISLOCKED9">
BUF_LOCK9">
BUF_LOCKFREE9">
BUF_LOCKINIT9">
BUF_RECURSED9">
BUF_REFCNT9">
BUF_TIMELOCK9">
BUF_UNLOCK9">
BUS_ADD_CHILD9">
BUS_BIND_INTR9">
BUS_CHILD_DELETED9">
BUS_CHILD_DETACHED9">
BUS_CONFIG_INTR9">
BUS_DESCRIBE_INTR9">
BUS_NEW_PASS9">
BUS_PRINT_CHILD9">
BUS_READ_IVAR9">
BUS_SETUP_INTR9">
BUS_WRITE_IVAR9">
CONDSPLASSERT9">
CTASSERT9">
CTR09">
CTR19">
CTR29">
CTR39">
CTR49">
CTR59">
CURSIG9">
DB_COMMAND9">
DECLARE_GEOM_CLASS9">
DECLARE_MODULE9">
DEFINE_CLASS9">
DELAY9">
DEV_MODULE9">
DEVICE_ATTACH9">
DEVICE_DETACH9">
DEVICE_IDENTIFY9">
DEVICE_PROBE9">
DEVICE_SHUTDOWN9">
DOMAIN_SET9">
DRIVER_MODULE9">
EVENTHANDLER9">
FREE9">
KASSERT9">
LOCK_PROFILING9">
MALLOC9">
MD59">
MD5Init9">
MD5Transform9">
MODULE_DEPEND9">
MODULE_VERSION9">
PCBGROUP9">
PCI_ADD_VF9">
PCI_INIT_IOV9">
PCI_IOV_ADD_VF9">
PCI_IOV_INIT9">
PCI_IOV_UNINIT9">
PCI_UNINIT_IOV9">
SDT9">
SETSETNEQ9">
SETSETOR9">
SIG_CONTSIGMASK9">
SIG_STOPSIGMASK9">
SIGADDSET9">
SIGDELSET9">
SIGEMPTYSET9">
SIGFILLSET9">
SIGISEMPTY9">
SIGISMEMBER9">
SIGNOTEMPTY9">
SIGPENDING9">
SIGSETAND9">
SIGSETCANTMASK9">
SIGSETEQ9">
SIGSETNAND9">
SPLASSERT9">
SYSCALL_MODULE9">
SYSCTL_ADD_INT9">
SYSCTL_ADD_LONG9">
SYSCTL_ADD_NODE9">
SYSCTL_ADD_OID9">
SYSCTL_ADD_OPAQUE9">
SYSCTL_ADD_PROC9">
SYSCTL_ADD_STRING9">
SYSCTL_ADD_STRUCT9">
SYSCTL_ADD_UINT9">
SYSCTL_ADD_ULONG9">
SYSINIT9">
TASK_INIT9">
TASKQUEUE_DECLARE9">
TASKQUEUE_DEFINE9">
VFS9">
VFS_CHECKEXP9">
VFS_FHTOVP9">
VFS_INIT9">
VFS_LOCK_GIANT9">
VFS_MOUNT9">
VFS_QUOTACTL9">
VFS_ROOT9">
VFS_SET9">
VFS_START9">
VFS_STATFS9">
VFS_SYNC9">
VFS_UNMOUNT9">
VFS_VGET9">
VFS_VPTOFH9">
VOP_ACCESS9">
VOP_ACCESSX9">
VOP_ACLCHECK9">
VOP_ADVISE9">
VOP_ADVLOCK9">
VOP_ALLOCATE9">
VOP_ATTRIB9">
VOP_BWRITE9">
VOP_CLOSE9">
VOP_CREATE9">
VOP_CREATEVOBJECT9">
VOP_DESTROYVOBJECT9">
VOP_FSYNC9">
VOP_GETACL9">
VOP_GETATTR9">
VOP_GETEXTATTR9">
VOP_GETPAGES9">
VOP_GETVOBJECT9">
VOP_INACTIVE9">
VOP_IOCTL9">
VOP_ISLOCKED9">
VOP_LEASE9">
VOP_LINK9">
VOP_LISTEXTATTR9">
VOP_LOCK9">
VOP_LOOKUP9">
VOP_MKDIR9">
VOP_MKNOD9">
VOP_MMAP9">
VOP_OPEN9">
VOP_OPENCLOSE9">
VOP_PATHCONF9">
VOP_PRINT9">
VOP_PUTPAGES9">
VOP_RDWR9">
VOP_READ9">
VOP_READDIR9">
VOP_READLINK9">
VOP_REALLOCBLKS9">
VOP_RECLAIM9">
VOP_REMOVE9">
VOP_RENAME9">
VOP_REVOKE9">
VOP_RMDIR9">
VOP_SETACL9">
VOP_SETATTR9">
VOP_SETEXTATTR9">
VOP_STRATEGY9">
VOP_SYMLINK9">
VOP_UNLOCK9">
VOP_VPTOCNP9">
VOP_VPTOFH9">
VOP_WRITE9">
VREF9">
accept_filter9">
accf_data9">
accf_dns9">
accf_http9">
acl9">
alq9">
altq9">
arc4random9">
asleep9">
at_exit9">
at_fork9">
atomic9">
await9">
be16toh9">
be32toh9">
be64toh9">
bios9">
boot9">
boottime9">
bp9">
bpf9">
bswap169">
bswap329">
bswap649">
buf9">
buf_ring9">
bus_activate_resource9">
bus_adjust_resource9">
bus_alloc_resource9">
bus_child_present9">
bus_dma9">
bus_dma_tag_create9">
bus_generic_attach9">
bus_generic_detach9">
bus_generic_map_intr9">
bus_generic_new_pass9">
bus_generic_print_child9">
bus_generic_read_ivar9">
bus_generic_shutdown9">
bus_generic_write_ivar9">
bus_get_resource9">
bus_release_resource9">
bus_set_pass9">
bus_set_resource9">
bus_space9">
byteorder9">
casuword9">
cd9">
cdevsw_add9">
cdevsw_remove9">
chooseproc9">
condvar9">
config_intrhook9">
contigmalloc9">
copy9">
copyin9">
copyinstr9">
copyout9">
copystr9">
count_dev9">
counter9">
cpu_critical_enter9">
cpu_critical_exit9">
cpu_switch9">
cr_cansee9">
cr_seeothergids9">
cr_seeotheruids9">
crcopy9">
crdup9">
crfree9">
crget9">
crhold9">
critical_enter9">
critical_exit9">
crshared9">
cru2x9">
crypto9">
curpriority_cmp9">
cv_broadcast9">
cv_destroy9">
cv_init9">
cv_signal9">
cv_timedwait9">
cv_timedwait_sig9">
cv_wait9">
cv_wait_sig9">
cv_waitq_empty9">
cv_waitq_remove9">
cv_wmesg9">
destroy_dev9">
dev_clone9">
devclass9">
devclass_add_driver9">
devclass_delete_driver9">
devclass_find9">
devclass_find_driver9">
devclass_get_device9">
devclass_get_devices9">
devclass_get_drivers9">
devclass_get_maxunit9">
devclass_get_name9">
devclass_get_softc9">
devfs_add_devswf9">
devfs_link9">
devfs_makelink9">
devfs_remove_dev9">
devfs_set_cdevpriv9">
device9">
device_add_child9">
device_add_child_ordered9">
device_busy9">
device_delete_child9">
device_disable9">
device_enable9">
device_find_child9">
device_get_children9">
device_get_desc9">
device_get_devclass9">
device_get_driver9">
device_get_flags9">
device_get_ivars9">
device_get_name9">
device_get_parent9">
device_get_softc9">
device_get_state9">
device_get_sysctl9">
device_get_unit9">
device_ids9">
device_is_alive9">
device_is_enabled9">
device_is_quiet9">
device_printf9">
device_probe_and_attach9">
device_quiet9">
device_set_desc9">
device_set_desc_copy9">
device_set_driver9">
device_set_flags9">
device_unbusy9">
device_verbose9">
devicestat9">
devstat9">
devstat_add_entry9">
devstat_end_transaction9">
devstat_remove_entry9">
devstat_start_transaction9">
devsw9">
devtoname9">
devtoname9">
domain9">
drbr9">
driver9">
endtsleep9">
eventtimers9">
execsigs9">
extattr9">
fail9">
fetch9">
firmware9">
fpu_kern9">
free9">
fubyte9">
fuswintr9">
fusword9">
fuword9">
g_access9">
g_attach9">
g_bio9">
g_consumer9">
g_data9">
g_event9">
g_geom9">
g_provider9">
g_provider_by_name9">
g_wither_geom9">
get_cyclecount9">
getenv9">
getmicrotime9">
getmicrouptime9">
getnanotime9">
getnanouptime9">
getnewvnode9">
getpbuf9">
groupmember9">
gsignal9">
hash9">
hashinit9">
hexdump9">
hhook9">
htobe169">
htobe329">
htobe649">
htole169">
htole329">
htole649">
ieee802119">
ieee80211_amrr9">
ieee80211_beacon9">
ieee80211_bmiss9">
ieee80211_crypto9">
ieee80211_ddb9">
ieee80211_input9">
ieee80211_node9">
ieee80211_output9">
ieee80211_proto9">
ieee80211_radiotap9">
ieee80211_regdomain9">
ieee80211_scan9">
ieee80211_vap9">
if_data9">
ifaddr9">
ifnet9">
ifqueue9">
inittodr9">
insmntque9">
intro9">
issignal9">
ithread9">
ithread_add_handler9">
ithread_create9">
ithread_destroy9">
ithread_priority9">
ithread_remove_handler9">
ithread_schedule9">
jumbo9">
kernacc9">
kernel_mount9">
khelp9">
killproc9">
kobj9">
kobj_class_compile9">
kobj_class_free9">
kobj_create9">
kobj_delete9">
kobj_init9">
kproc9">
kproc_shutdown9">
kproc_start9">
kqueue9">
kthread9">
kthread_create9">
kthread_exit9">
kthread_resume9">
kthread_suspend9">
kthread_suspend_check9">
ktr9">
le16toh9">
le32toh9">
le64toh9">
lock9">
locking9">
lockinit9">
lockmgr9">
lockmgr_args9">
lockmgr_assert9">
lockmgr_disown9">
lockmgr_recursed9">
lockmgr_waiters9">
lockstatus9">
mac9">
mac_biba9">
mac_bsdextended9">
major9">
make_dev9">
malloc9">
maybe_resched9">
mb_detach9">
mb_done9">
mb_fixhdr9">
mb_init9">
mb_initm9">
mb_put_int64be9">
mb_put_int64le9">
mb_put_mbuf9">
mb_put_mem9">
mb_put_uint16be9">
mb_put_uint16le9">
mb_put_uint32be9">
mb_put_uint32le9">
mb_put_uint89">
mb_put_uio9">
mb_reserve9">
mbchain9">
mbpool9">
mbuf9">
mbuf_tags9">
md_append_record9">
md_done9">
md_get_int649">
md_get_int64be9">
md_get_int64le9">
md_get_mbuf9">
md_get_mem9">
md_get_uint169">
md_get_uint16be9">
md_get_uint16le9">
md_get_uint329">
md_get_uint32be9">
md_get_uint32le9">
md_get_uint89">
md_get_uio9">
md_initm9">
md_next_record9">
mdchain9">
memcchr9">
memguard9">
mi_switch9">
microseq9">
microtime9">
microuptime9">
minor9">
mod_cc9">
module9">
mono_time9">
mtx_pool9">
mtx_pool_alloc9">
mtx_pool_find9">
mtx_pool_lock9">
mtx_pool_unlock9">
mutex9">
namei9">
nanotime9">
nanouptime9">
net_add_domain9">
netisr9">
nv9">
osd9">
owll9">
own9">
p_candebug9">
p_cansee9">
p1003_1b9">
panic9">
pbuf9">
pci9">
pci_iov_schema9">
pfctlinput9">
pfctlinput29">
pffindproto9">
pffindtype9">
pfil9">
pfil_add_hook9">
pfil_hook_get9">
pfil_remove_hook9">
pfind9">
pget9">
pgfind9">
pgsigio9">
pgsignal9">
physio9">
pmap9">
pmap_activate9">
pmap_addr_hint9">
pmap_change_wiring9">
pmap_clear_modify9">
pmap_copy9">
pmap_enter9">
pmap_extract9">
pmap_growkernel9">
pmap_init9">
pmap_is_modified9">
pmap_is_prefaultable9">
pmap_map9">
pmap_mincore9">
pmap_object_init_pt9">
pmap_page_exists_quick9">
pmap_page_init9">
pmap_page_protect9">
pmap_pinit9">
pmap_protect9">
pmap_qenter9">
pmap_quick_enter_page9">
pmap_release9">
pmap_remove9">
pmap_resident_count9">
pmap_unwire9">
pmap_zero_page9">
posix49">
postsig9">
printf9">
prison_check9">
priv9">
priv_check9">
priv_check_cred9">
procrunnable9">
pseudofs9">
psignal9">
random9">
random_harvest9">
read_random9">
realloc9">
redzone9">
refcount9">
relpbuf9">
remrunqueue9">
resetpriority9">
resettodr9">
resource_int_value9">
resource_long_value9">
resource_query_name9">
resource_query_string9">
resource_query_unit9">
resource_string_value9">
rijndael9">
rm_at_exit9">
rm_at_fork9">
rman9">
rmlock9">
roundrobin9">
roundrobin_interval9">
rtalloc9">
rtalloc_ign9">
rtalloc19">
rtentry9">
runqueue9">
runtime9">
rwlock9">
rw_try_rlock9">
rw_try_wlock9">
sbuf9">
sched_setup9">
schedclock9">
schedcpu9">
scheduler9">
securelevel_gt9">
selrecord9">
selwakeup9">
sema9">
sema_destroy9">
sema_init9">
sema_post9">
sema_timedwait9">
sema_trywait9">
sema_value9">
sema_wait9">
setrunnable9">
setrunqueue9">
sf_buf9">
sglist9">
shm_map9">
sigexit9">
siginit9">
signal9">
signotify9">
sleep9">
sleepinit9">
sleepqueue9">
socket9">
spl9">
spl09">
splbio9">
splclock9">
splhigh9">
splimp9">
splnet9">
splsoftclock9">
splsofttty9">
splstatclock9">
spltty9">
splvm9">
splx9">
srandom9">
stack9">
store9">
style9">
subyte9">
suser9">
suser_cred9">
suswintr9">
susword9">
suword9">
swi9">
swi_add9">
swi_sched9">
sx9">
sx_slock9">
sx_xlock9">
sysctl9">
sysctl_add_oid9">
sysctl_ctx_entry_add9">
sysctl_ctx_entry_del9">
sysctl_ctx_entry_find9">
sysctl_ctx_free9">
sysctl_ctx_init9">
sysctl_remove_oid9">
taskqueue9">
taskqueue_create9">
taskqueue_enqueue9">
taskqueue_find9">
taskqueue_free9">
taskqueue_run9">
thread_exit9">
time9">
timeout9">
tprintf9">
trapsignal9">
trypbuf9">
tsleep9">
tvtohz9">
ucred9">
uidinfo9">
uifind9">
uifree9">
uihashinit9">
uihold9">
uio9">
uiomove9">
uma9">
uma_zalloc9">
uma_zcreate9">
uma_zdestroy9">
uma_zfree9">
umajor9">
uminor9">
unr9">
unsleep9">
untimeout9">
updatepri9">
uprintf9">
usbdi9">
useracc9">
utopia9">
vaccess9">
vaccess_acl_nfs49">
vaccess_acl_posix1e9">
vcount9">
vdrop9">
vflush9">
vfs_busy9">
vfs_getnewfsid9">
vfs_getopt9">
vfs_getvfs9">
vfs_modevent9">
vfs_mount9">
vfs_mountedfrom9">
vfs_mountedon9">
vfs_register9">
vfs_rootmountalloc9">
vfs_suser9">
vfs_timestamp9">
vfs_unbusy9">
vfs_unmountall9">
vfs_unregister9">
vfsconf9">
vget9">
vgone9">
vgonel9">
vhold9">
vinvalbuf9">
vm_fault_prefault9">
vm_map9">
vm_map_check_protection9">
vm_map_create9">
vm_map_delete9">
vm_map_entry_resize_free9">
vm_map_find9">
vm_map_findspace9">
vm_map_inherit9">
vm_map_init9">
vm_map_insert9">
vm_map_lock9">
vm_map_lookup9">
vm_map_madvise9">
vm_map_max9">
vm_map_protect9">
vm_map_remove9">
vm_map_simplify_entry9">
vm_map_stack9">
vm_map_submap9">
vm_map_sync9">
vm_map_wire9">
vm_page_aflag9">
vm_page_alloc9">
vm_page_bits9">
vm_page_busy9">
vm_page_cache9">
vm_page_clear_dirty9">
vm_page_copy9">
vm_page_deactivate9">
vm_page_dirty9">
vm_page_dontneed9">
vm_page_flag9">
vm_page_flag_clear9">
vm_page_flag_set9">
vm_page_flash9">
vm_page_free9">
vm_page_free_toq9">
vm_page_free_zero9">
vm_page_grab9">
vm_page_hold9">
vm_page_insert9">
vm_page_io9">
vm_page_io_finish9">
vm_page_io_start9">
vm_page_is_valid9">
vm_page_lookup9">
vm_page_protect9">
vm_page_remove9">
vm_page_rename9">
vm_page_set_invalid9">
vm_page_set_validclean9">
vm_page_sleep_busy9">
vm_page_sleep_if_busy9">
vm_page_test_dirty9">
vm_page_try_to_free9">
vm_page_undirty9">
vm_page_unhold9">
vm_page_unmanage9">
vm_page_unwire9">
vm_page_wakeup9">
vm_page_wire9">
vm_page_zero_fill9">
vm_page_zero_invalid9">
vm_set_page_size9">
vmem9">
vn_fullpath9">
vn_isdisk9">
vn_lock9">
vnet9">
vnode9">
vput9">
vref9">
vrefcnt9">
vrele9">
vslock9">
vsunlock9">
wakeup9">
wakeup_one9">
watchdog9">
zero_copy9">
zone9">
zpfind9">