Contained Within
Find More Documentation
Featured Support Resources
| Download this book in PDF
NAME
- Intro, intro - introduction to functions and libraries
DESCRIPTION
- This section describes functions found in various libraries, other than those functions that directly invoke UNIX system primitives, which are described in Section 2 of this volume. Function declarations can be obtained from the #include files indicated on each page. Certain major collections are identified by a letter after the section number:
- (3B) These functions constitute the Source Compatibility (with BSD functions) library. It is implemented as a shared object, libucb.so, and as an archive, libucb.a, but is not automatically linked by the C compilation system. Specify -lucb on the cc command line to link with this library, which is located in the /usr/ucb subdirectory. Header files for this library are located within /usr/ucbinclude.
-
- (3C)
- These functions, together with those of Section 2 and those marked (3S), constitute the standard C library, libc, which is automatically linked by the C compilation system. The standard C library is implemented as a shared object, libc.so, and as an archive, libc.a. C programs are linked with the shared object version of the standard C library by default. Specify -dn on the cc command line to link with the archive version. See libc(4), cc(1B) for other overrides, and the "C Compilation System" chapter of the ANSI C Programmer's Guide for a discussion. Some functions behave differently in standard-conforming environments. This behavior is noted on the individual manual pages. See standards(5).
-
- (3E)
- These functions constitute the ELF access library, libelf, (Extensible Linking Formats). This library provides the interface for the creation and analyses of "elf" files; executables, objects, and shared objects. libelf is implemented as a shared object, libelf.so, and as an archive, libelf.a, but is not automatically linked by the C compilation system. Specify -lelf on the cc command line to link with this library. See libelf(4).
-
- (3G)
- These functions constitute the string pattern-matching & pathname manipulation library, libgen. This library is implemented as an archive, libgen.a, but not as a shared object, and is not automatically linked by the C compilation system. Specify -lgen on the cc command line to link with this library.
-
- (3K)
- These functions allow access to the kernel's virtual memory library, which is implemented as a shared object, libkvm.so, and as an archive, libkvm.a, but is not automatically linked by the C compilation system. Specify -lkvm on the cc command line to link with this library. See libkvm(4).
-
- (3M)
- These functions constitute the math library, libm. This library is implemented as a shared object, libm.so, and as an archive, libm.a, but is not automatically linked by the C compilation system. Specify -lm on the cc command line to link with this library. See libmp(4).
-
- (3N)
- These functions constitute the Network Service Library, libnsl. It is implemented as a shared object, libnsl.so, and as an archive, libnsl.a, but is not automatically linked by the C compilation system. Specify -lnsl on the cc command line to link with this library. See libnsl(4).
- Some of the functions documented in man3n incorporate other network libraries, including:
-
libsocket (see libsocket(4)),
-
libresolv (see libresolv(4)),
-
librpcsvc (see librpcsvc(4)),
-
libnisdb (see libnisdb(4)),
-
librac (see librac(4)),
-
libxfn (see libxfn(4)), and
-
libkrb (see libkrb(4)).
- Many base networking functions are also available in the X/Open Networking Interfaces library, libxnet. See section (3XN) below for more information on the libxnet interfaces.
- Under all circumstances, the use of the Sockets API is recommended over the XTI and TLI APIs. If portability to other XPGV4v2 systems is a requirement, the application must use the libxnet interfaces. If portability is not required, the sockets interfaces in libsocket and libnsl are recommended over those in libxnet. Between the XTI and TLI APIs, the XTI interfaces (available with libxnet) are recommended over the TLI interfaces (available with libnsl).
-
- (3R)
- These functions constitute the POSIX.4 Realtime library, libposix4. It is implemented only as a shared object, libposix4.so, and is not automatically linked by the C compilation system. Specify -lposix4 on the cc command line to link with this library. See libposix4(4).
-
- (3S)
- These functions constitute the "standard I/O package" (see stdio(3S)). They can be compiled using the the standard C library, libc, which is automatically linked by the C compilation system. The standard C library is implemented as a shared object, libc.so, and as an archive, libc.a. See libc(4).
-
- (3T)
- These functions constitute the threads libraries, libpthread and libthread. These libraries are used for building multithreaded applications. libpthread implements the POSIX (see standards(5) threads interface, whereas libthread implements the Solaris threads interface.
- Both POSIX threads and Solaris threads can be used within the same application. Their implementations are completely compatible with each other; however, only POSIX threads guarantee portability to other POSIX-conforming environments.
- When POSIX and Solaris threads are used in the same application, if there are calls with the same name but different semantics, the POSIX semantic supersedes the Solaris semantic. For example, the call to fork( ) will imply the fork1( ) semantic in a program linked with the POSIX threads library, whether or not it is also linked with -lthread (Solaris threads).
- The libpthread and libthread libraries are implemented as shared objects, libpthread.so and libthread.so, respectively, but not as archived libraries. libpthread and libthread are not automatically linked by the C compilation system. Specify -lpthread or -lthread on the cc command line to link with these
- libraries. See libpthread(4) and libthread(4).
- The following functions are optional under POSIX and are not supported in the current Solaris release.
-
-
int pthread_mutexattr_setprotocol(pthread_mutexattr_t * attr,int protocol);
int pthread_mutexattr_getprotocol(const pthread_mutexattr_t * attr,
int * protocol);
int pthread_mutexattr_setprioceiling(pthread_mutexattr_t * attr,
int prioceiling);
int pthread_mutexattr_getprioceiling(const pthread_mutexattr_t * attr,
int * prioceiling);
-
- (3X)
- Specialized libraries. These functions are contained in libraries including, but not limited to,
-
libadm (see libadm(4)),
-
-
libbsdmalloc,
libcrypt,
libcurses,
libdl (see libdl(4)),
libform ,
libmail,
libmalloc,
libmapmalloc (see libmapmalloc(4)),
libmenu, and
libpanel.
-
- (3XC)
- These functions constitute the X/Open Curses library, located in /usr/xpg4/lib/libcurses.so.1. This library provides a set of internationalized functions and macros for creating and modifying input and output to a terminal screen. Included in this library are functions for creating windows, highlighting text, writing to the screen, reading from user input, and moving the cursor. X/Open Curses is designed to optimize screen update activities. The X/Open Curses library conforms fully with Issue 4 of the X/Open Extended Curses specification.
-
- (3XN)
- These functions constitute X/Open networking interfaces which comply with the X/Open CAE Specification, Networking Services, Issue 4 (September, 1994), and are located in /usr/lib/libxnet.so.1. See libxnet(4) and standards(5) for compilation information.
DEFINITIONS
- A character is any bit pattern able to fit into a byte on the machine.
-
Exception: in some international languages, a "character" may require more than one byte, and is represented in multi-bytes.
- The null character is a character with value 0, conventionally represented in the C language as \ 0 . A character array is a sequence of characters. A null-terminated character array (a string) is a sequence of characters, the last of which is the null character. The null string is a character array containing only the terminating null character. A null
- pointer is the value that is obtained by casting 0 into a pointer. C guarantees that this value will not match that of any legitimate pointer, so many functions that return pointers return NULL to indicate an error. The macro NULL is defined in <stdio.h> . Types of the form size_t are defined in the appropriate headers.
MT-Level of Libraries
- See attributes(5) for descriptions of library MT-Levels.
FILES
-
-
INCDIR
- usually /usr/include
-
-
LIBDIR
- usually /usr/ccs/lib
-
-
LIBDIR/libc.so
LIBDIR/libc.a
LIBDIR/libgen.a
LIBDIR/libm.a
LIBDIR/libsfm.sa
/usr/lib/libc.so.1
SEE ALSO
-
ar(1), cc(1B), ld(1), nm (1),fork(2), intro(2), stdio(3S), pthread_atfork(3T), libadm(4), libc(4), libelf(4), libdl(4), libdrb(4), libkvm(4), libmapmalloc(4), libmp(4), libnisdb(4), libnsl(4), librac(4), libresolv(4), librpcsvc(4), libsocket(4), libpthread(4), libthread(4), libxfn(4), libxnet(4), attributes(5), standards(5)
-
Linker and Libraries Guide
-
Profiling Tools
-
ANSI C Programmer's Guide
DIAGNOSTICS
- For functions that return floating-point values, error handling varies according to compilation mode. Under the -Xt (default) option to cc, these functions return the conventional values 0 ,.HUGE, or NaN when the function is undefined for the given arguments or when the value is not representable. In the -Xa and -Xc compilation modes, .HUGE_VAL is returned in stead of .HUGE. (HUGE_VAL and HUGE are defined in math.h to be infinity and the largest-magnitude single-precision number, respectively.)
NOTES ON MULTITHREAD
- When compiling a multithreaded application, either the _POSIX_C_SOURCE , _POSIX_PTHREAD_SEMANTICS ,or _REENTRANT flag must be defined on the command line. This enables special definitions for functions only applicable to multithreaded applications. For POSIX.1c-conforming applications, define the _POSIX_C_SOURCE flag to be >= 199506L:
APPLICATIONS
-
-
cc [flags] file... -D_POSIX_C_SOURCE =199506L-lpthread
For POSIX behavior with the Solaris fork( ) and fork1( ) distinction, compile as follows:
cc [flags] file... -D_POSIX_PTHREAD_SEMANTICS -lthread
- For Solaris behavior, compile as follows:
-
cc [flags] file... -D_REENTRANT -lthread
- When building a singlethreaded application, the above flags should be undefined. This generates a binary that is executable on previous Solaris releases, which do not support multithreading.
- Unsafe interfaces should be called only from the main thread to ensure the application's safety.
- MT-Safe interfaces are denoted in the NOTES section of the functions and libraries man pages. If a man page does not state explicitly that an interface is MT-Safe, the user should assume that the interface is unsafe.
REALTIME APPLICATIONS
- Be sure to have set the environment variable LD_BIND_NOW to a non-null value to enable early binding. Refer to the "When Relocations are Processed" chapter in Linker and Libraries Guide for additional information.
NOTES
- None of the functions, external variables, or macros should be redefined in the user's programs. Any other name may be redefined without affecting the behavior of other library functions, but such redefinition may conflict with a declaration in an included header.
- The headers in INCDIR provide function prototypes (function declarations including the types of arguments) for most of the functions listed in this manual. Function prototypes allow the compiler to check for correct usage of these functions in the user's program. The lint program checker may also be used and will report discrepancies even if the headers are not included with #include statements. Definitions for Sections 2, 3C, and 3S are checked automatically. Other definitions can be included by using the -l option to lint. (For example, -lm includes definitions for libm.) Use of lint is highly recommended. See the lint chapter in Profiling Tools.
- Users should carefully note the difference between STREAMS and stream. STREAMS is a set of kernel mechanisms that support the development of network services and data communication drivers. It is composed of utility routines, kernel facilities, and a set of data structures. A stream is a file with its associated buffering. It is declared to be a pointer to a type FILE defined in <stdio.h> .
- In detailed definitions of components, it is sometimes necessary to refer to symbolic names that are implementation-specific, but which are not necessarily expected to be accessible to an application program. Many of these symbolic names describe boundary conditions and system limits.
- In this section, for readability, these implementation-specific values are given symbolic names. These names always appear enclosed in curly brackets to distinguish them from symbolic names of other implementation-specific constants that are accessible to application programs by headers. These names are not necessarily accessible to an application program through a header, although they may be defined in the documentation for a particular system.
- In general, a portable application program should not refer to these symbolic names in its code. For example, an application program would not be expected to test the length of an argument list given to a routine to determine if it was greater than {ARG_MAX}.
-
-
Name
-
Description
-
-
a64l(3C)
- convert between long integer and base-64
- ASCII string
-
-
abort(3C)
- terminate the process abnormally
-
-
abs(3C)
- return absolute value of integer
-
-
accept(3N)
- accept a connection on a socket
-
-
accept(3XN)
- accept a new connection on a socket
-
-
aclcheck(3)
- check the validity of an ACL
-
-
aclfrommode(3)
- See acltomode(3)
-
-
aclfrompbits(3)
- See acltopbits(3)
-
-
aclfromtext(3)
- See acltotext(3)
-
-
aclsort(3)
- sort an ACL
-
-
acltomode(3)
- convert an ACL to/from permission bits
-
-
acltopbits(3)
- convert an ACL to/from permission bits
-
-
acltotext(3)
- convert an internal representation
- to/from external representation
-
-
acos(3M)
- arc cosine function
-
-
acosh(3M)
- inverse hyperbolic functions
-
-
addch(3X)
- See curs_addch(3X)
-
-
addch(3XC)
- add a character (with rendition) to a win-
- dow
-
-
addchnstr(3X)
- See curs_addchstr(3X)
-
-
addchnstr(3XC)
- See addchstr(3XC)
-
-
addchstr(3X)
- See curs_addchstr(3X)
-
-
addchstr(3XC)
- copy a character string (with renditions)
- to a window
-
-
addnstr(3X)
- See curs_addstr(3X)
-
-
addnstr(3XC)
- add a multi-byte character string (without
- rendition) to a window
-
-
addnwstr(3X)
- See curs_addwstr(3X)
-
-
addnwstr(3XC)
- add a wide-character string to a window
-
-
addsev(3C)
- define additional severities
-
-
addseverity(3C)
- build a list of severity levels for an appli-
- cation for use with fmtmsg
-
-
addstr(3X)
- See curs_addstr(3X)
-
-
addstr(3XC)
- See addnstr(3XC)
-
-
addwch(3X)
- See curs_addwch(3X)
-
-
add_wch(3XC)
- add a complex character (with rendition)
- to a window
-
-
addwchnstr(3X)
- See curs_addwchstr(3X)
-
-
add_wchnstr(3XC)
- copy a string of complex characters (with
- renditions) to a window
-
-
addwchstr(3X)
- See curs_addwchstr(3X)
-
-
add_wchstr(3XC)
- See add_wchnstr(3XC)
-
-
addwstr(3X)
- See curs_addwstr(3X)
-
-
addwstr(3XC)
- See addnwstr(3XC)
-
-
adjcurspos(3X)
- See curs_alecompat(3X)
-
-
advance(3G)
- See regexpr(3G)
-
-
aiocancel(3)
- cancel an asynchronous operation
-
-
aio_cancel(3R)
- cancel asynchronous I/O request
-
-
aio_error(3R)
- See aio_return(3R)
-
-
aio_fsync(3R)
- asynchronous file synchronization
-
-
aioread(3)
- read or write asynchronous I/O opera-
- tions
-
-
aio_read(3R)
- asynchronous read and write operations
-
-
aioread64(3)
- See aioread(3)
-
-
aio_return(3R)
- retrieve return or error status of asyn-
- chronous I/O operation
-
-
aio_suspend(3R)
- wait for asynchronous I/O request
-
-
aiowait(3)
- wait for completion of asynchronous I/O
- operation
-
-
aiowrite(3)
- See aioread(3)
-
-
aio_write(3R)
- See aio_read(3R)
-
-
aiowrite64(3)
- See aioread(3)
-
-
alloca(3C)
- See malloc(3C)
-
-
alphasort(3B)
- See scandir(3B)
-
-
arc(3)
- See plot(3)
-
-
ascftime(3C)
- See strftime(3C)
-
-
asctime(3C)
- See ctime(3C)
-
-
asctime_r(3C)
- See ctime(3C)
-
-
asin(3M)
- arc sine function
-
-
asinh(3M)
- See acosh(3M)
-
-
assert(3C)
- verify program assertion
-
-
asysmem(3)
- See sysmem(3)
-
-
atan(3M)
- arc tangent function
-
-
atan2(3M)
- arc tangent function
-
-
atanh(3M)
- See acosh(3M)
-
-
atexit(3C)
- add program termination routine
-
-
atof(3C)
- See strtod(3C)
-
-
atoi(3C)
- See strtol(3C)
-
-
atol(3C)
- See strtol(3C)
-
-
atoll(3C)
- See strtol(3C)
-
-
attr_get(3XC)
- control window attributes
-
-
attroff(3X)
- See curs_attr(3X)
-
-
attroff(3XC)
- change foreground window attributes
-
-
attr_off(3XC)
- See attr_get(3XC)
-
-
attron(3X)
- See curs_attr(3X)
-
-
attr_on(3XC)
- See attr_get(3XC)
-
-
attron(3XC)
- See attroff(3XC)
-
-
attrset(3X)
- See curs_attr(3X)
-
-
attr_set(3XC)
- See attr_get(3XC)
-
-
attrset(3XC)
- See attroff(3XC)
-
-
au_close(3)
- See au_open(3)
-
-
au_open(3)
- construct and write audit records
-
-
au_preselect(3)
- preselect an audit event
-
-
authdes_create(3N)
- See rpc_soc(3N)
-
-
authdes_getucred(3N)
- See secure_rpc(3N)
-
-
authdes_seccreate(3N)
- See secure_rpc(3N)
-
-
auth_destroy(3N)
- See rpc_clnt_auth(3N)
-
-
authkerb_getucred(3N)
- See kerberos_rpc(3N)
-
-
authkerb_seccreate(3N)
- See kerberos_rpc(3N)
-
-
authnone_create(3N)
- See rpc_clnt_auth(3N)
-
-
authsys_create(3N)
- See rpc_clnt_auth(3N)
-
-
authsys_create_default(3N)
- See rpc_clnt_auth(3N)
-
-
authunix_create(3N)
- See rpc_soc(3N)
-
-
authunix_create_default(3N)
- See rpc_soc(3N)
-
-
au_to (3)
- create audit record tokens
-
-
au_to_arg(3)
- See au_to (3)
-
-
au_to_attr(3)
- See au_to (3)
-
-
au_to_data(3)
- See au_to (3)
-
-
au_to_groups(3)
- See au_to (3)
-
-
au_to_in_addr(3)
- See au_to (3)
-
-
au_to_ipc(3)
- See au_to (3)
-
-
au_to_ipc_perm(3)
- See au_to (3)
-
-
au_to_iport(3)
- See au_to (3)
-
-
au_to_me(3)
- See au_to (3)
-
-
au_to_opaque(3)
- See au_to (3)
-
-
au_to_path(3)
- See au_to (3)
-
-
au_to_process(3)
- See au_to (3)
-
-
au_to_return(3)
- See au_to (3)
-
-
au_to_socket(3)
- See au_to (3)
-
-
au_to_text(3)
- See au_to (3)
-
-
au_user_mask(3)
- get user's binary preselection mask
-
-
au_write(3)
- See au_open(3)
-
-
basename(3C)
- return the last element of a path name
-
-
baudrate(3X)
- See curs_termattrs(3X)
-
-
baudrate(3XC)
- return terminal baud rate
-
-
bcmp(3C)
- See bstring(3C)
-
-
bcopy(3C)
- See bstring(3C)
-
-
beep(3X)
- See curs_beep(3X)
-
-
beep(3XC)
- activate audio-visual alarm
-
-
bgets(3G)
- read stream up to next delimiter
-
-
bind(3N)
- bind a name to a socket
-
-
bind(3XN)
- bind a name to a socket
-
-
bindtextdomain(3C)
- See gettext(3C)
-
-
bkgd(3X)
- See curs_bkgd(3X)
-
-
bkgd(3XC)
- set the background character (and rendi-
- tion) of window
-
-
bkgdset(3X)
- See curs_bkgd(3X)
-
-
bkgdset(3XC)
- See bkgd(3XC)
-
-
bkgrnd(3XC)
- set or get the background character (and
- rendition) of window using a complex
- character
-
-
bkgrndset(3XC)
- See bkgrnd(3XC)
-
-
border(3X)
- See curs_border(3X)
-
-
border(3XC)
- add a single-byte border to a window
-
-
border_set(3XC)
- use complex characters (and renditions)
- to draw borders
-
-
bottom_panel(3X)
- See panel_top(3X)
-
-
box(3)
- See plot(3)
-
-
box(3X)
- See curs_border(3X)
-
-
box(3XC)
- See border(3XC)
-
-
box_set(3XC)
- See border_set(3XC)
-
-
bsdmalloc(3X)
- memory allocator
-
-
bsd_signal(3C)
- simplified signal facilities
-
-
bsearch(3C)
- binary search a sorted table
-
-
bstring(3C)
- bit and byte string operations
-
-
bufsplit(3G)
- split buffer into fields
-
-
byteorder(3N)
- convert values between host and network
- byte order
-
-
bzero(3C)
- See bstring(3C)
-
-
calloc(3C)
- See malloc(3C)
-
-
calloc(3X)
- See malloc(3X)
-
-
calloc(3X)
- See mapmalloc(3X)
-
-
calloc(3X)
- See watchmalloc(3X)
-
-
callrpc(3N)
- See rpc_soc(3N)
-
-
cancellation(3T)
- overview of concepts related to POSIX
- thread cancellation
-
-
can_change_color(3X)
- See curs_color(3X)
-
-
can_change_color(3XC)
- manipulate color information
-
-
catclose(3C)
- See catopen(3C)
-
-
catgets(3C)
- read a program message
-
-
catopen(3C)
- open/close a message catalog
-
-
cbreak(3X)
- See curs_inopts(3X)
-
-
cbreak(3XC)
- set input mode controls
-
-
cbrt(3M)
- cube root function
-
-
ceil(3M)
- ceiling value function
-
-
cfgetispeed(3)
- get input and output baud rate
-
-
cfgetospeed(3)
- See cfgetispeed(3)
-
-
cfree(3X)
- See mapmalloc(3X)
-
-
cfree(3X)
- See watchmalloc(3X)
-
-
cfsetispeed(3)
- set input and output baud rate
-
-
cfsetospeed(3)
- See cfsetispeed(3)
-
-
cftime(3C)
- See strftime(3C)
-
-
chgat(3XC)
- change the rendition of characters in a
- window
-
-
circle(3)
- See plot(3)
-
-
clear(3X)
- See curs_clear(3X)
-
-
clear(3XC)
- clear a window
-
-
clearerr(3S)
- See ferror(3S)
-
-
clearok(3X)
- See curs_outopts(3X)
-
-
clearok(3XC)
- set terminal output controls
-
-
clnt_broadcast(3N)
- See rpc_soc(3N)
-
-
clnt_call(3N)
- See rpc_clnt_calls(3N)
-
-
clnt_control(3N)
- See rpc_clnt_create(3N)
-
-
clnt_create(3N)
- See rpc_clnt_create(3N)
-
-
clnt_create_timed(3N)
- See rpc_clnt_create(3N)
-
-
clnt_create_vers(3N)
- See rpc_clnt_create(3N)
-
-
clnt_create_vers_timed(3N)
- See rpc_clnt_create(3N)
-
-
clnt_destroy(3N)
- See rpc_clnt_create(3N)
-
-
clnt_dg_create(3N)
- See rpc_clnt_create(3N)
-
-
clnt_freeres(3N)
- See rpc_clnt_calls(3N)
-
-
clnt_geterr(3N)
- See rpc_clnt_calls(3N)
-
-
clnt_pcreateerror(3N)
- See rpc_clnt_create(3N)
-
-
clnt_perrno(3N)
- See rpc_clnt_calls(3N)
-
-
clnt_perror(3N)
- See rpc_clnt_calls(3N)
-
-
clnt_raw_create(3N)
- See rpc_clnt_create(3N)
-
-
clntraw_create(3N)
- See rpc_soc(3N)
-
-
clnt_spcreateerror(3N)
- See rpc_clnt_create(3N)
-
-
clnt_sperrno(3N)
- See rpc_clnt_calls(3N)
-
-
clnt_sperror(3N)
- See rpc_clnt_calls(3N)
-
-
clnttcp_create(3N)
- See rpc_soc(3N)
-
-
clnt_tli_create(3N)
- See rpc_clnt_create(3N)
-
-
clnt_tp_create(3N)
- See rpc_clnt_create(3N)
-
-
clnt_tp_create_timed(3N)
- See rpc_clnt_create(3N)
-
-
clntudp_bufcreate(3N)
- See rpc_soc(3N)
-
-
clntudp_create(3N)
- See rpc_soc(3N)
-
-
clnt_vc_create(3N)
- See rpc_clnt_create(3N)
-
-
clock(3C)
- report CPU time used
-
-
clock_getres(3R)
- See clock_settime(3R)
-
-
clock_gettime(3R)
- See clock_settime(3R)
-
-
clock_settime(3R)
- high-resolution clock operations
-
-
closedir(3C)
- close a directory stream
-
-
closelog(3)
- See syslog(3)
-
-
closepl(3)
- See plot(3)
-
-
closevt(3)
- See plot(3)
-
-
clrtobot(3X)
- See curs_clear(3X)
-
-
clrtobot(3XC)
- clear to the end of a window
-
-
clrtoeol(3X)
- See curs_clear(3X)
-
-
clrtoeol(3XC)
- clear to the end of a line
-
-
color_content(3X)
- See curs_color(3X)
-
-
color_content(3XC)
- See can_change_color(3XC)
-
-
COLOR_PAIR(3XC)
- See can_change_color(3XC)
-
-
color_set(3XC)
- See attr_get(3XC)
-
-
compile(3G)
- See regexpr(3G)
-
-
cond_broadcast(3T)
- See condition(3T)
-
-
cond_destroy(3T)
- See condition(3T)
-
-
cond_init(3T)
- See condition(3T)
-
-
condition(3T)
- condition variables
-
-
cond_signal(3T)
- See condition(3T)
-
-
cond_timedwait(3T)
- See condition(3T)
-
-
cond_wait(3T)
- See condition(3T)
-
-
confstr(3C)
- get configurable variables
-
-
connect(3N)
- initiate a connection on a socket
-
-
connect(3XN)
- connect a socket
-
-
cont(3)
- See plot(3)
-
-
copylist(3G)
- copy a file into memory
-
-
copysign(3M)
- return magnitude of first argument and
- sign of second argument
-
-
copywin(3X)
- See curs_overlay(3X)
-
-
copywin(3XC)
- overlay or overwrite any portion of win-
- dow
-
-
cos(3M)
- cosine function
-
-
cosh(3M)
- hyperbolic cosine function
-
-
cplus_demangle(3)
- See demangle (3)
-
-
crypt(3C)
- string encoding function
-
-
cset(3C)
- get information on EUC codesets
-
-
csetcol(3C)
- See cset(3C)
-
-
csetlen(3C)
- See cset(3C)
-
-
csetno(3C)
- See cset(3C)
-
-
ctermid(3S)
- generate path name for controlling termi-
- nal
-
-
ctermid_r(3S)
- See ctermid(3S)
-
-
ctime(3C)
- convert date and time to string
-
-
ctime_r(3C)
- See ctime(3C)
-
-
ctype(3C)
- character handling
-
-
current_field(3X)
- See form_page(3X)
-
-
current_item(3X)
- See menu_item_current(3X)
-
-
curs_addch(3X)
- add a character (with attributes) to a
- curses window and advance cursor
-
-
curs_addchstr(3X)
- add string of characters (and attributes)
- to a curses window
-
-
curs_addstr(3X)
- add a string of characters to a curses win-
- dow and advance cursor
-
-
curs_addwch(3X)
- add a wchar_t character (with attributes)
- to a curses window and advance cursor
-
-
curs_addwchstr(3X)
- add string of wchar_t characters (and
- attributes) to a curses window
-
-
curs_addwstr(3X)
- add a string of wchar_t characters to a
- curses window and advance cursor
-
-
curs_alecompat(3X)
- these functions are added to ALE curses
- library for moving the cursor by charac-
- ter.
-
-
curs_attr(3X)
- curses character and window attribute
- control routines
-
-
curs_beep(3X)
- curses bell and screen flash routines
-
-
curs_bkgd(3X)
- curses window background manipulation
- routines
-
-
curs_border(3X)
- create curses borders, horizontal and
- vertical lines
-
-
curs_clear(3X)
- clear all or part of a curses window
-
-
curs_color(3X)
- curses color manipulation routines
-
-
curs_delch(3X)
- delete character under cursor in a curses
- window
-
-
curs_deleteln(3X)
- delete and insert lines in a curses window
-
-
curses(3X)
- CRT screen handling and optimization
- package
-
-
curses(3XC)
- introduction and overview of X/Open
- Curses
-
-
curs_getch(3X)
- get (or push back) characters from curses
- terminal keyboard
-
-
curs_getstr(3X)
- get character strings from curses terminal
- keyboard
-
-
curs_getwch(3X)
- get (or push back) wchar_t characters
- from curses terminal keyboard
-
-
curs_getwstr(3X)
- get wchar_t character strings from curses
- terminal keyboard
-
-
curs_getyx(3X)
- get curses cursor and window coordi-
- nates
-
-
curs_inch(3X)
- get a character and its attributes from a
- curses window
-
-
curs_inchstr(3X)
- get a string of characters (and attributes)
- from a curses window
-
-
curs_initscr(3X)
- curses screen initialization and manipula-
- tion routines
-
-
curs_inopts(3X)
- curses terminal input option control rou-
- tines
-
-
curs_insch(3X)
- insert a character before the character
- under the cursor in a curses window
-
-
curs_insstr(3X)
- insert string before character under the
- cursor in a curses window
-
-
curs_instr(3X)
- get a string of characters from a curses
- window
-
-
curs_inswch(3X)
- insert a wchar_t character before the char-
- acter under the cursor in a curses window
-
-
curs_inswstr(3X)
- insert wchar_t string before character
- under the cursor in a curses window
-
-
curs_inwch(3X)
- get a wchar_t character and its attributes
- from a curses window
-
-
curs_inwchstr(3X)
- get a string of wchar_t characters (and
- attributes) from a curses window
-
-
curs_inwstr(3X)
- get a string of wchar_t characters from a
- curses window
-
-
curs_kernel(3X)
- low-level curses routines
-
-
curs_move(3X)
- move curses window cursor
-
-
curs_outopts(3X)
- curses terminal output option control
- routines
-
-
curs_overlay(3X)
- overlap and manipulate overlapped
- curses windows
-
-
curs_pad(3X)
- create and display curses pads
-
-
curs_printw(3X)
- print formatted output in curses win-
- dows
-
-
curs_refresh(3X)
- refresh curses windows and lines
-
-
curs_scanw(3X)
- convert formatted input from a curses
- widow
-
-
curs_scr_dump(3X)
- read (write) a curses screen from (to) a
- file
-
-
curs_scroll(3X)
- scroll a curses window
-
-
curs_set(3X)
- See curs_kernel(3X)
-
-
curs_set(3XC)
- set visibility of cursor
-
-
curs_slk(3X)
- curses soft label routines
-
-
curs_termattrs(3X)
- curses environment query routines
-
-
curs_termcap(3X)
- curses interfaces (emulated) to the
- termcap library
-
-
curs_terminfo(3X)
- curses interfaces to terminfo database
-
-
curs_touch(3X)
- curses refresh control routines
-
-
curs_util(3X)
- curses miscellaneous utility routines
-
-
curs_window(3X)
- create curses windows
-
-
cuserid(3S)
- get character login name of the user
-
-
data_ahead(3X)
- See form_data(3X)
-
-
data_behind(3X)
- See form_data(3X)
-
-
db_add_entry(3N)
- See nis_db(3N)
-
-
db_checkpoint(3N)
- See nis_db(3N)
-
-
db_create_table(3N)
- See nis_db(3N)
-
-
db_destroy_table(3N)
- See nis_db(3N)
-
-
db_first_entry(3N)
- See nis_db(3N)
-
-
db_free_result(3N)
- See nis_db(3N)
-
-
db_initialize(3N)
- See nis_db(3N)
-
-
db_list_entries(3N)
- See nis_db(3N)
-
-
dbm(3B)
- data base subroutines
-
-
dbm_clearerr(3)
- database functions
-
-
dbm_close(3)
- See dbm_clearerr(3)
-
-
dbmclose(3B)
- See dbm(3B)
-
-
dbm_delete(3)
- See dbm_clearerr(3)
-
-
dbm_error(3)
- See dbm_clearerr(3)
-
-
dbm_fetch(3)
- See dbm_clearerr(3)
-
-
dbm_firstkey(3)
- See dbm_clearerr(3)
-
-
dbminit(3B)
- See dbm(3B)
-
-
dbm_nextkey(3)
- See dbm_clearerr(3)
-
-
dbm_open(3)
- See dbm_clearerr(3)
-
-
dbm_store(3)
- See dbm_clearerr(3)
-
-
db_next_entry(3N)
- See nis_db(3N)
-
-
db_remove_entry(3N)
- See nis_db(3N)
-
-
db_reset_next_entry(3N)
- See nis_db(3N)
-
-
db_standby(3N)
- See nis_db(3N)
-
-
db_table_exists(3N)
- See nis_db(3N)
-
-
db_unload_table(3N)
- See nis_db(3N)
-
-
dcgettext(3C)
- See gettext(3C)
-
-
decimal_to_double(3)
- See decimal_to_floating(3)
-
-
decimal_to_extended(3)
- See decimal_to_floating(3)
-
-
decimal_to_floating(3)
- convert decimal record to floating-point
- value
-
-
decimal_to_quadruple(3)
- See decimal_to_floating(3)
-
-
decimal_to_single(3)
- See decimal_to_floating(3)
-
-
def_prog_mode(3X)
- See curs_kernel(3X)
-
-
def_prog_mode(3XC)
- save/restore terminal modes
-
-
def_shell_mode(3X)
- See curs_kernel(3X)
-
-
def_shell_mode(3XC)
- See def_prog_mode(3XC)
-
-
delay_output(3X)
- See curs_util(3X)
-
-
delay_output(3XC)
- delays output
-
-
delch(3X)
- See curs_delch(3X)
-
-
delch(3XC)
- remove a character
-
-
del_curterm(3X)
- See curs_terminfo(3X)
-
-
del_curterm(3XC)
- free space pointed to by terminal
-
-
delete(3B)
- See dbm(3B)
-
-
deleteln(3X)
- See curs_deleteln(3X)
-
-
deleteln(3XC)
- remove a line
-
-
del_panel(3X)
- See panel_new(3X)
-
-
delscreen(3X)
- See curs_initscr(3X)
-
-
delscreen(3XC)
- free space associated with the SCREEN
- data structure
-
-
delwin(3X)
- See curs_window(3X)
-
-
delwin(3XC)
- delete a window
-
-
demangle (3)
- decode a C++ encoded symbol name
-
-
derwin(3X)
- See curs_window(3X)
-
-
derwin(3XC)
- create a new window or subwindow
-
-
devid_compare (3)
- See devid_get (3)
-
-
devid_deviceid_to_nmlist(3)
- See devid_get (3)
-
-
devid_free(3)
- See devid_get (3)
-
-
devid_free_nmlist(3)
- See devid_get (3)
-
-
devid_get (3)
- device id interfaces for user applications
-
-
devid_get_minor_name(3)
- See devid_get (3)
-
-
devid_sizeof(3)
- See devid_get (3)
-
-
dgettext(3C)
- See gettext(3C)
-
-
dial(3N)
- establish an outgoing terminal line con-
- nection
-
-
difftime(3C)
- computes the difference between two
- calendar times
-
-
directio(3C)
- provide advice to file system
-
-
dirname(3C)
- report the parent directory name of a file
- path name
-
-
div (3C)
- compute the quotient and remainder
-
-
dladdr(3X)
- translate address to symbolic information
-
-
dlclose(3X)
- close a shared object
-
-
dldump(3X)
- create a new file from a dynamic object
- component of the calling process
-
-
dlerror(3X)
- get diagnostic information
-
-
dlinfo(3X)
- dynamic load information
-
-
dlmopen(3X)
- See dlopen(3X)
-
-
dlopen(3X)
- gain access to an executable object file
-
-
dlsym(3X)
- get the address of a symbol in a shared
- object
-
-
DmiAddComponent(3X)
- Management Interface database adminis-
- tration functions
-
-
DmiAddGroup(3X)
- See DmiAddComponent(3X)
-
-
DmiAddLanguage (3X)
- See DmiAddComponent(3X)
-
-
DmiAddRow(3X)
- Management Interface operation func-
- tions
-
-
DmiDeleteComponent(3X)
- See DmiAddComponent(3X)
-
-
DmiDeleteGroup(3X)
- See DmiAddComponent(3X)
-
-
DmiDeleteLanguage(3X)
- See DmiAddComponent(3X)
-
-
DmiDeleteRow(3X)
- See DmiAddRow(3X)
-
-
DmiGetAttribute(3X)
- See DmiAddRow(3X)
-
-
DmiGetConfig(3X)
- Management Interface initialization func-
- tions
-
-
DmiGetMultiple(3X)
- See DmiAddRow(3X)
-
-
DmiGetVersion(3X)
- See DmiGetConfig(3X)
-
-
DmiListAttributes(3X)
- Management Interface listing functions
-
-
DmiListClassNames(3X)
- See DmiListAttributes(3X)
-
-
DmiListComponents(3X)
- See DmiListAttributes(3X)
-
-
DmiListComponentsByClass(3X)
- See DmiListAttributes(3X)
-
-
DmiListGroups(3X)
- See DmiListAttributes(3X)
-
-
DmiListLanguages(3X)
- See DmiListAttributes(3X)
-
-
DmiOriginateEvent(3X)
- See DmiRegisterCi(3X)
-
-
DmiRegister(3X)
- See DmiGetConfig(3X)
-
-
DmiRegisterCi(3X)
- Service Provider functions for com-
- ponents
-
-
DmiSetAttribute(3X)
- See DmiAddRow(3X)
-
-
DmiSetConfig(3X)
- See DmiGetConfig(3X)
-
-
DmiSetMultiple(3X)
- See DmiAddRow(3X)
-
-
DmiUnregister(3X)
- See DmiGetConfig(3X)
-
-
DmiUnRegisterCi(3X)
- See DmiRegisterCi(3X)
-
-
dn_comp(3N)
- See resolver(3N)
-
-
dn_expand(3N)
- See resolver(3N)
-
-
doconfig(3N)
- execute a configuration script
-
-
door_bind(3X)
- bind or unbind the current thread with
- the door server pool
-
-
door_call(3X)
- invoke the function associated with a
- door descriptor
-
-
door_create(3X)
- create a door descriptor
-
-
door_cred(3X)
- return credential information associated
- with the client
-
-
door_info(3X)
- return information associated with a door
- descriptor
-
-
door_return(3X)
- return from a door invocation
-
-
door_revoke(3X)
- revoke access to a door descriptor
-
-
door_server_create(3X)
- specify an alternative door server thread
- creation function
-
-
door_unbind (3X)
- See door_bind(3X)
-
-
double_to_decimal(3)
- See floating_to_decimal(3)
-
-
doupdate(3X)
- See curs_refresh(3X)
-
-
doupdate(3XC)
- refresh windows and lines
-
-
drand48(3C)
- generate uniformly distributed pseudo-
- random numbers
-
-
dup2(3C)
- duplicate an open file descriptor
-
-
dup_field(3X)
- See form_field_new(3X)
-
-
dupwin(3X)
- See curs_window(3X)
-
-
dupwin(3XC)
- duplicate a window
-
-
dynamic_field_info(3X)
- See form_field_info(3X)
-
-
echo(3X)
- See curs_inopts(3X)
-
-
echo(3XC)
- enable/disable terminal echo
-
-
echochar(3X)
- See curs_addch(3X)
-
-
echochar(3XC)
- add a single-byte character and refresh
- window
-
-
echowchar(3X)
- See curs_addwch(3X)
-
-
echo_wchar(3XC)
- add a complex character and refresh win-
- dow
-
-
econvert(3)
- output conversion
-
-
ecvt(3)
- See econvert(3)
-
-
ecvt(3C)
- convert floating-point number to string
-
-
_edata(3C)
- See end(3C)
-
-
edata(3C)
- See end(3C)
-
-
elf(3E)
- object file access library
-
-
elf32_fsize(3E)
- return the size of an object file type
-
-
elf32_getehdr(3E)
- retrieve class-dependent object file header
-
-
elf32_getphdr(3E)
- retrieve class-dependent program header
- table
-
-
elf32_getshdr(3E)
- retrieve class-dependent section header
-
-
elf32_newehdr(3E)
- See elf32_getehdr(3E)
-
-
elf32_newphdr(3E)
- See elf32_getphdr(3E)
-
-
elf32_xlatetof(3E)
- class-dependent data translation
-
-
elf32_xlatetom(3E)
- See elf32_xlatetof(3E)
-
-
elf_begin(3E)
- process ELF object files
-
-
elf_cntl(3E)
- control an elf file descriptor
-
-
elf_end(3E)
- See elf_begin(3E)
-
-
elf_errmsg(3E)
- error handling
-
-
elf_errno(3E)
- See elf_errmsg(3E)
-
-
elf_fill(3E)
- set fill byte
-
-
elf_flagdata(3E)
- manipulate flags
-
-
elf_flagehdr (3E)
- See elf_flagdata(3E)
-
-
elf_flagelf(3E)
- See elf_flagdata(3E)
-
-
elf_flagphdr(3E)
- See elf_flagdata(3E)
-
-
elf_flagscn(3E)
- See elf_flagdata(3E)
-
-
elf_flagshdr(3E)
- See elf_flagdata(3E)
-
-
elf_getarhdr(3E)
- retrieve archive member header
-
-
elf_getarsym(3E)
- retrieve archive symbol table
-
-
elf_getbase(3E)
- get the base offset for an object file
-
-
elf_getdata(3E)
- get section data
-
-
elf_getident(3E)
- retrieve file identification data
-
-
elf_getscn(3E)
- get section information
-
-
elf_hash(3E)
- compute hash value
-
-
elf_kind(3E)
- determine file type
-
-
elf_memory(3E)
- See elf_begin(3E)
-
-
elf_ndxscn(3E)
- See elf_getscn(3E)
-
-
elf_newdata(3E)
- See elf_getdata(3E)
-
-
elf_newscn(3E)
- See elf_getscn(3E)
-
-
elf_next(3E)
- See elf_begin(3E)
-
-
elf_nextscn(3E)
- See elf_getscn(3E)
-
-
elf_rand(3E)
- See elf_begin(3E)
-
-
elf_rawdata(3E)
- See elf_getdata(3E)
-
-
elf_rawfile(3E)
- retrieve uninterpreted file contents
-
-
elf_strptr(3E)
- make a string pointer
-
-
elf_update(3E)
- update an ELF descriptor
-
-
elf_version(3E)
- coordinate ELF library and application
- versions
-
-
encrypt(3C)
- encoding function
-
-
end(3C)
- last locations in program
-
-
_end(3C)
- See end(3C)
-
-
endac(3)
- See getacinfo(3)
-
-
endauclass(3)
- See getauclassent(3)
-
-
endauevent(3)
- See getauevent (3)
-
-
endauuser(3)
- See getauusernam(3)
-
-
endgrent(3C)
- See getgrnam(3C)
-
-
endhostent(3N)
- See gethostbyname (3N)
-
-
endhostent(3XN)
- network host database functions
-
-
endnetconfig(3N)
- See getnetconfig(3N)
-
-
endnetent(3N)
- See getnetbyname (3N)
-
-
endnetent(3XN)
- network database functions
-
-
endnetgrent(3N)
- See getnetgrent(3N)
-
-
endnetpath(3N)
- See getnetpath(3N)
-
-
endprotoent(3N)
- See getprotobyname(3N)
-
-
endprotoent(3XN)
- network protocol database functions
-
-
endpwent(3C)
- See getpwnam(3C)
-
-
endrpcent(3N)
- See getrpcbyname (3N)
-
-
endservent(3N)
- See getservbyname(3N)
-
-
endservent(3XN)
- network services database functions
-
-
endspent(3C)
- See getspnam(3C)
-
-
endusershell(3C)
- See getusershell(3C)
-
-
endutent(3C)
- See getutent(3C)
-
-
endutxent(3C)
- See getutxent(3C)
-
-
endwin(3X)
- See curs_initscr(3X)
-
-
endwin(3XC)
- restore initial terminal environment
-
-
erand48(3C)
- See drand48(3C)
-
-
erase(3)
- See plot(3)
-
-
erase(3X)
- See curs_clear(3X)
-
-
erase(3XC)
- See clear(3XC)
-
-
erasechar(3X)
- See curs_termattrs(3X)
-
-
erasechar(3XC)
- return current ERASE or KILL characters
-
-
erasewchar(3XC)
- See erasechar(3XC)
-
-
erf(3M)
- error and complementary error functions
-
-
erfc(3M)
- See erf(3M)
-
-
errno(3C)
- See perror(3C)
-
-
_etext(3C)
- See end(3C)
-
-
etext(3C)
- See end(3C)
-
-
ether_aton(3N)
- See ethers(3N)
-
-
ether_hostton(3N)
- See ethers(3N)
-
-
ether_line(3N)
- See ethers(3N)
-
-
ether_ntoa(3N)
- See ethers(3N)
-
-
ether_ntohost(3N)
- See ethers(3N)
-
-
ethers(3N)
- Ethernet address mapping operations
-
-
euccol(3C)
- See euclen(3C)
-
-
euclen(3C)
- get byte length and display width of EUC
- characters
-
-
eucscol(3C)
- See euclen(3C)
-
-
exit(3C)
- terminate process
-
-
_exithandle(3C)
- See exit(3C)
-
-
exp(3M)
- exponential function
-
-
expm1 (3M)
- computes exponential functions
-
-
extended_to_decimal(3)
- See floating_to_decimal(3)
-
-
fabs(3M)
- absolute value function
-
-
fattach(3C)
- attach a STREAMS-based file descriptor
- to an object in the file system name space
-
-
fclose(3S)
- close a stream
-
-
fconvert(3)
- See econvert(3)
-
-
fcvt(3)
- See econvert(3)
-
-
fcvt(3C)
- See ecvt(3C)
-
-
fdatasync(3R)
- synchronize a file's data
-
-
FD_CLR(3C)
- See select(3C)
-
-
fdetach(3C)
- detach a name from a STREAMS-based
- file descriptor
-
-
FD_ISSET(3C)
- See select(3C)
-
-
fdopen(3S)
- associate a stream with a file descriptor
-
-
FD_SET(3C)
- See select(3C)
-
-
FD_ZERO(3C)
- See select(3C)
-
-
feof(3S)
- See ferror(3S)
-
-
ferror(3S)
- stream status inquiries
-
-
fetch(3B)
- See dbm(3B)
-
-
fflush(3S)
- flush a stream
-
-
ffs(3C)
- find first set bit
-
-
fgetc(3S)
- See getc(3S)
-
-
fgetgrent(3C)
- See getgrnam(3C)
-
-
fgetgrent_r(3C)
- See getgrnam(3C)
-
-
fgetpos(3S)
- get current file position information
-
-
fgetpwent(3C)
- See getpwnam(3C)
-
-
fgetpwent_r(3C)
- See getpwnam(3C)
-
-
fgets(3S)
- See gets(3S)
-
-
fgetspent(3C)
- See getspnam(3C)
-
-
fgetspent_r(3C)
- See getspnam(3C)
-
-
fgetwc(3S)
- get a wide-character code from a stream
-
-
fgetws(3S)
- See getws(3S)
-
-
field_arg (3X)
- See form_field_validation(3X)
-
-
field_back(3X)
- See form_field_attributes(3X)
-
-
field_buffer(3X)
- See form_field_buffer(3X)
-
-
field_count(3X)
- See form_field(3X)
-
-
field_fore(3X)
- See form_field_attributes(3X)
-
-
field_index(3X)
- See form_page(3X)
-
-
field_info(3X)
- See form_field_info(3X)
-
-
field_init(3X)
- See form_hook(3X)
-
-
field_just(3X)
- See form_field_just(3X)
-
-
field_opts(3X)
- See form_field_opts(3X)
-
-
field_opts_off(3X)
- See form_field_opts(3X)
-
-
field_opts_on(3X)
- See form_field_opts(3X)
-
-
field_pad(3X)
- See form_field_attributes(3X)
-
-
field_status(3X)
- See form_field_buffer(3X)
-
-
field_term(3X)
- See form_hook(3X)
-
-
field_type(3X)
- See form_field_validation(3X)
-
-
field_userptr(3X)
- See form_field_userptr(3X)
-
-
fileno(3S)
- See ferror(3S)
-
-
file_to_decimal(3)
- See string_to_decimal(3)
-
-
filter(3X)
- See curs_util(3X)
-
-
filter(3XC)
- disable use of certain terminal capabilities
-
-
finite(3C)
- See isnan(3C)
-
-
firstkey(3B)
- See dbm(3B)
-
-
flash(3X)
- See curs_beep(3X)
-
-
flash(3XC)
- See beep(3XC)
-
-
floating_to_decimal(3)
- convert floating-point value to decimal
- record
-
-
flock(3B)
- apply or remove an advisory lock on an
- open file
-
-
flockfile(3S)
- acquire and release stream lock
-
-
floor(3M)
- floor function
-
-
flushinp(3X)
- See curs_util(3X)
-
-
flushinp(3XC)
- discard type-ahead characters
-
-
fmod(3M)
- floating-point remainder value function
-
-
fmtmsg (3C)
- display a message on stderr or system
- console
-
-
fn_attr_bind(3N)
- bind a reference to a name and associate
- attributes with named object
-
-
fn_attr_create_subcontext(3N)
- create a subcontext in a context and asso-
- ciate attributes with newly created
- context
-
-
fn_attr_ext_search(3N)
- search for names in the specified
- context(s) whose attributes satisfy the
- filter
-
-
fn_attr_get(3N)
- return specified attribute associated with
- name
-
-
fn_attr_get_ids(3N)
- get a list of the identifiers of all attributes
- associated with named object
-
-
fn_attr_get_values(3N)
- return values of an attribute
-
-
fn_attribute_add(3N)
- See FN_attribute_t(3N)
-
-
fn_attribute_assign(3N)
- See FN_attribute_t(3N)
-
-
fn_attribute_copy(3N)
- See FN_attribute_t(3N)
-
-
fn_attribute_create(3N)
- See FN_attribute_t(3N)
-
-
fn_attribute_destroy(3N)
- See FN_attribute_t(3N)
-
-
fn_attribute_first(3N)
- See FN_attribute_t(3N)
-
-
fn_attribute_identifier(3N)
- See FN_attribute_t(3N)
-
-
fn_attribute_next(3N)
- See FN_attribute_t(3N)
-
-
fn_attribute_remove(3N)
- See FN_attribute_t(3N)
-
-
fn_attribute_syntax(3N)
- See FN_attribute_t(3N)
-
-
FN_attribute_t(3N)
- an XFN attribute
-
-
fn_attribute_valuecount(3N)
- See FN_attribute_t(3N)
-
-
fn_attr_modify(3N)
- modify specified attribute associated with
- name
-
-
fn_attrmodlist_add(3N)
- See FN_attrmodlist_t(3N)
-
-
fn_attrmodlist_assign(3N)
- See FN_attrmodlist_t(3N)
-
-
fn_attrmodlist_copy(3N)
- See FN_attrmodlist_t(3N)
-
-
fn_attrmodlist_count(3N)
- See FN_attrmodlist_t(3N)
-
-
fn_attrmodlist_create(3N)
- See FN_attrmodlist_t(3N)
-
-
fn_attrmodlist_destroy(3N)
- See FN_attrmodlist_t(3N)
-
-
fn_attrmodlist_first(3N)
- See FN_attrmodlist_t(3N)
-
-
fn_attrmodlist_next(3N)
- See FN_attrmodlist_t(3N)
-
-
FN_attrmodlist_t(3N)
- a list of attribute modifications
-
-
fn_attr_multi_get(3N)
- return multiple attributes associated with
- named object
-
-
fn_attr_multi_modify(3N)
- modify multiple attributes associated
- with named object
-
-
fn_attr_search(3N)
- search for the atomic name of objects with
- the specified attributes in a single context
-
-
fn_attrset_add(3N)
- See FN_attrset_t(3N)
-
-
fn_attrset_assign(3N)
- See FN_attrset_t(3N)
-
-
fn_attrset_copy(3N)
- See FN_attrset_t(3N)
-
-
fn_attrset_count(3N)
- See FN_attrset_t(3N)
-
-
fn_attrset_create(3N)
- See FN_attrset_t(3N)
-
-
fn_attrset_destroy(3N)
- See FN_attrset_t(3N)
-
-
fn_attrset_first(3N)
- See FN_attrset_t(3N)
-
-
fn_attrset_get(3N)
- See FN_attrset_t(3N)
-
-
fn_attrset_next(3N)
- See FN_attrset_t(3N)
-
-
fn_attrset_remove(3N)
- See FN_attrset_t(3N)
-
-
FN_attrset_t(3N)
- a set of XFN attributes
-
-
FN_attrvalue_t(3N)
- an XFN attribute value
-
-
fn_bindinglist_destroy(3N)
- See fn_ctx_list_bindings(3N)
-
-
fn_bindinglist_next(3N)
- See fn_ctx_list_bindings(3N)
-
-
FN_bindinglist_t(3N)
- See fn_ctx_list_bindings(3N)
-
-
fn_composite_name_append_comp(3N)
- See FN_composite_name_t(3N)
-
-
fn_composite_name_append_name(3N)
- See FN_composite_name_t(3N)
-
-
fn_composite_name_assign(3N)
- See FN_composite_name_t(3N)
-
-
fn_composite_name_copy(3N)
- See FN_composite_name_t(3N)
-
-
fn_composite_name_count(3N)
- See FN_composite_name_t(3N)
-
-
fn_composite_name_create(3N)
- See FN_composite_name_t(3N)
-
-
fn_composite_name_delete_comp(3N)
- See FN_composite_name_t(3N)
-
-
fn_composite_name_destroy(3N)
- See FN_composite_name_t(3N)
-
-
fn_composite_name_first(3N)
- See FN_composite_name_t(3N)
-
-
fn_composite_name_from_str(3N)
- See FN_composite_name_t(3N)
-
-
fn_composite_name_from_string(3N)
- See FN_composite_name_t(3N)
-
-
fn_composite_name_insert_comp(3N)
- See FN_composite_name_t(3N)
-
-
fn_composite_name_insert_name(3N)
- See FN_composite_name_t(3N)
-
-
fn_composite_name_is_empty(3N)
- See FN_composite_name_t(3N)
-
-
fn_composite_name_is_equal(3N)
- See FN_composite_name_t(3N)
-
-
fn_composite_name_is_prefix(3N)
- See FN_composite_name_t(3N)
-
-
fn_composite_name_is_suffix(3N)
- See FN_composite_name_t(3N)
-
-
fn_composite_name_last(3N)
- See FN_composite_name_t(3N)
-
-
fn_composite_name_next(3N)
- See FN_composite_name_t(3N)
-
-
fn_composite_name_prefix(3N)
- See FN_composite_name_t(3N)
-
-
fn_composite_name_prepend_comp(3N)
- See FN_composite_name_t(3N)
-
-
fn_composite_name_prepend_name(3N)
- See FN_composite_name_t(3N)
-
-
fn_composite_name_prev(3N)
- See FN_composite_name_t(3N)
-
-
fn_composite_name_suffix(3N)
- See FN_composite_name_t(3N)
-
-
FN_composite_name_t(3N)
- a sequence of component names span-
- ning multiple naming systems
-
-
fn_compound_name_append_comp(3N)
- See FN_compound_name_t(3N)
-
-
fn_compound_name_assign(3N)
- See FN_compound_name_t(3N)
-
-
fn_compound_name_copy(3N)
- See FN_compound_name_t(3N)
-
-
fn_compound_name_count(3N)
- See FN_compound_name_t(3N)
-
-
fn_compound_name_delete_all(3N)
- See FN_compound_name_t(3N)
-
-
fn_compound_name_delete_comp(3N)
- See FN_compound_name_t(3N)
-
-
fn_compound_name_destroy(3N)
- See FN_compound_name_t(3N)
-
-
fn_compound_name_first(3N)
- See FN_compound_name_t(3N)
-
-
fn_compound_name_from_syntax_attrs(3N)
- See FN_compound_name_t(3N)
-
-
fn_compound_name_get_syntax_attrs(3N)
- See FN_compound_name_t(3N)
-
-
fn_compound_name_insert_comp(3N)
- See FN_compound_name_t(3N)
-
-
fn_compound_name_is_empty(3N)
- See FN_compound_name_t(3N)
-
-
fn_compound_name_is_equal(3N)
- See FN_compound_name_t(3N)
-
-
fn_compound_name_is_prefix(3N)
- See FN_compound_name_t(3N)
-
-
fn_compound_name_is_suffix(3N)
- See FN_compound_name_t(3N)
-
-
fn_compound_name_last(3N)
- See FN_compound_name_t(3N)
-
-
fn_compound_name_next(3N)
- See FN_compound_name_t(3N)
-
-
fn_compound_name_prefix (3N)
- See FN_compound_name_t(3N)
-
-
fn_compound_name_prepend_comp(3N)
- See FN_compound_name_t(3N)
-
-
fn_compound_name_prev(3N)
- See FN_compound_name_t(3N)
-
-
fn_compound_name_suffix(3N)
- See FN_compound_name_t(3N)
-
-
FN_compound_name_t(3N)
- an XFN compound name
-
-
fn_ctx_bind(3N)
- bind a reference to a name
-
-
fn_ctx_create_subcontext(3N)
- create a subcontext in a context
-
-
fn_ctx_destroy_subcontext(3N)
- destroy the named context and remove its
- binding from the parent context
-
-
fn_ctx_equivalent_name(3N)
- construct an equivalent name in same
- context
-
-
fn_ctx_get_ref(3N)
- return a context's reference
-
-
fn_ctx_get_syntax_attrs(3N)
- return syntax attributes associated with
- named context
-
-
fn_ctx_handle_destroy(3N)
- release storage associated with context
- handle
-
-
fn_ctx_handle_from_initial(3N)
- return a handle to the Initial Context
-
-
fn_ctx_handle_from_ref(3N)
- construct a handle to a context object
- using the given reference
-
-
fn_ctx_list_bindings(3N)
- list the atomic names and references
- bound in a context
-
-
fn_ctx_list_names(3N)
- list the atomic names bound in a context
-
-
fn_ctx_lookup(3N)
- look up name in context
-
-
fn_ctx_lookup_link(3N)
- look up the link reference bound to a
- name
-
-
fn_ctx_rename(3N)
- rename the name of a binding
-
-
FN_ctx_t(3N)
- an XFN context
-
-
fn_ctx_unbind(3N)
- unbind a name from a context
-
-
fn_ext_searchlist_destroy(3N)
- See fn_attr_ext_search(3N)
-
-
fn_ext_searchlist_next(3N)
- See fn_attr_ext_search(3N)
-
-
FN_ext_searchlist_t(3N)
- See fn_attr_ext_search(3N)
-
-
FN_identifier_t(3N)
- an XFN identifier
-
-
fnmatch(3C)
- match filename or path name
-
-
fn_multigetlist_destroy(3N)
- See fn_attr_multi_get(3N)
-
-
fn_multigetlist_next(3N)
- See fn_attr_multi_get(3N)
-
-
FN_multigetlist_t(3N)
- See fn_attr_multi_get(3N)
-
-
fn_namelist_destroy(3N)
- See fn_ctx_list_names(3N)
-
-
fn_namelist_next(3N)
- See fn_ctx_list_names(3N)
-
-
FN_namelist_t(3N)
- See fn_ctx_list_names(3N)
-
-
fn_ref_addr_assign(3N)
- See FN_ref_addr_t(3N)
-
-
fn_ref_addr_copy(3N)
- See FN_ref_addr_t(3N)
-
-
fn_ref_addrcount(3N)
- See FN_ref_t (3N)
-
-
fn_ref_addr_create(3N)
- See FN_ref_addr_t(3N)
-
-
fn_ref_addr_data(3N)
- See FN_ref_addr_t(3N)
-
-
fn_ref_addr_description(3N)
- See FN_ref_addr_t(3N)
-
-
fn_ref_addr_destroy(3N)
- See FN_ref_addr_t(3N)
-
-
fn_ref_addr_length(3N)
- See FN_ref_addr_t(3N)
-
-
FN_ref_addr_t(3N)
- an address in an XFN reference
-
-
fn_ref_addr_type(3N)
- See FN_ref_addr_t(3N)
-
-
fn_ref_append_addr(3N)
- See FN_ref_t (3N)
-
-
fn_ref_assign(3N)
- See FN_ref_t (3N)
-
-
fn_ref_copy(3N)
- See FN_ref_t (3N)
-
-
fn_ref_create(3N)
- See FN_ref_t (3N)
-
-
fn_ref_create_link(3N)
- See FN_ref_t (3N)
-
-
fn_ref_delete_addr(3N)
- See FN_ref_t (3N)
-
-
fn_ref_delete_all(3N)
- See FN_ref_t (3N)
-
-
fn_ref_description(3N)
- See FN_ref_t (3N)
-
-
fn_ref_destroy(3N)
- See FN_ref_t (3N)
-
-
fn_ref_first(3N)
- See FN_ref_t (3N)
-
-
fn_ref_insert_addr(3N)
- See FN_ref_t (3N)
-
-
fn_ref_is_link(3N)
- See FN_ref_t (3N)
-
-
fn_ref_link_name(3N)
- See FN_ref_t (3N)
-
-
fn_ref_next(3N)
- See FN_ref_t (3N)
-
-
fn_ref_prepend_addr(3N)
- See FN_ref_t (3N)
-
-
FN_ref_t (3N)
- an XFN reference
-
-
fn_ref_type(3N)
- See FN_ref_t (3N)
-
-
fn_search_control_assign(3N)
- See FN_search_control_t(3N)
-
-
fn_search_control_copy(3N)
- See FN_search_control_t(3N)
-
-
fn_search_control_create(3N)
- See FN_search_control_t(3N)
-
-
fn_search_control_destroy(3N)
- See FN_search_control_t(3N)
-
-
fn_search_control_follow_links(3N)
- See FN_search_control_t(3N)
-
-
fn_search_control_max_names(3N)
- See FN_search_control_t(3N)
-
-
fn_search_control_return_attr_ids(3N)
- See FN_search_control_t(3N)
-
-
fn_search_control_return_ref(3N)
- See FN_search_control_t(3N)
-
-
fn_search_control_scope(3N)
- See FN_search_control_t(3N)
-
-
FN_search_control_t(3N)
- options for attribute search
-
-
fn_search_filter_arguments(3N)
- See FN_search_filter_t(3N)
-
-
fn_search_filter_assign(3N)
- See FN_search_filter_t(3N)
-
-
fn_search_filter_copy(3N)
- See FN_search_filter_t(3N)
-
-
fn_search_filter_create(3N)
- See FN_search_filter_t(3N)
-
-
fn_search_filter_destroy(3N)
- See FN_search_filter_t(3N)
-
-
fn_search_filter_expression(3N)
- See FN_search_filter_t(3N)
-
-
FN_search_filter_t(3N)
- filter expression for attribute search
-
-
fn_searchlist_destroy(3N)
- See fn_attr_search(3N)
-
-
fn_searchlist_next(3N)
- See fn_attr_search(3N)
-
-
FN_searchlist_t(3N)
- See fn_attr_search(3N)
-
-
fn_status_advance_by_name(3N)
- See FN_status_t(3N)
-
-
fn_status_append_remaining_name(3N)
- See FN_status_t(3N)
-
-
fn_status_append_resolved_name(3N)
- See FN_status_t(3N)
-
-
fn_status_assign(3N)
- See FN_status_t(3N)
-
-
fn_status_code(3N)
- See FN_status_t(3N)
-
-
fn_status_copy(3N)
- See FN_status_t(3N)
-
-
fn_status_create(3N)
- See FN_status_t(3N)
-
-
fn_status_description(3N)
- See FN_status_t(3N)
-
-
fn_status_destroy(3N)
- See FN_status_t(3N)
-
-
fn_status_diagnostic_message(3N)
- See FN_status_t(3N)
-
-
fn_status_is_success(3N)
- See FN_status_t(3N)
-
-
fn_status_link_code(3N)
- See FN_status_t(3N)
-
-
fn_status_link_diagnostic_message(3N)
- See FN_status_t(3N)
-
-
fn_status_link_remaining_name(3N)
- See FN_status_t(3N)
-
-
fn_status_link_resolved_name(3N)
- See FN_status_t(3N)
-
-
fn_status_link_resolved_ref(3N)
- See FN_status_t(3N)
-
-
fn_status_remaining_name(3N)
- See FN_status_t(3N)
-
-
fn_status_resolved_name(3N)
- See FN_status_t(3N)
-
-
fn_status_resolved_ref(3N)
- See FN_status_t(3N)
-
-
fn_status_set(3N)
- See FN_status_t(3N)
-
-
fn_status_set_code(3N)
- See FN_status_t(3N)
-
-
fn_status_set_diagnostic_message(3N)
- See FN_status_t(3N)
-
-
fn_status_set_link_code(3N)
- See FN_status_t(3N)
-
-
fn_status_set_link_diagnostic_message(3N)
- See FN_status_t(3N)
-
-
fn_status_set_link_remaining_name(3N)
- See FN_status_t(3N)
-
-
fn_status_set_link_resolved_name(3N)
- See FN_status_t(3N)
-
-
fn_status_set_link_resolved_ref(3N)
- See FN_status_t(3N)
-
-
fn_status_set_remaining_name(3N)
- See FN_status_t(3N)
-
-
fn_status_set_resolved_name(3N)
- See FN_status_t(3N)
-
-
fn_status_set_resolved_ref(3N)
- See FN_status_t(3N)
-
-
fn_status_set_success(3N)
- See FN_status_t(3N)
-
-
FN_status_t(3N)
- an XFN status object
-
-
fn_string_assign(3N)
- See FN_string_t(3N)
-
-
fn_string_bytecount(3N)
- See FN_string_t(3N)
-
-
fn_string_charcount(3N)
- See FN_string_t(3N)
-
-
fn_string_code_set(3N)
- See FN_string_t(3N)
-
-
fn_string_compare(3N)
- See FN_string_t(3N)
-
-
fn_string_compare_substring(3N)
- See FN_string_t(3N)
-
-
fn_string_contents(3N)
- See FN_string_t(3N)
-
-
fn_string_copy(3N)
- See FN_string_t(3N)
-
-
fn_string_create(3N)
- See FN_string_t(3N)
-
-
fn_string_destroy(3N)
- See FN_string_t(3N)
-
-
fn_string_from_composite_name(3N)
- See FN_composite_name_t(3N)
-
-
fn_string_from_compound_name(3N)
- See FN_compound_name_t(3N)
-
-
fn_string_from_contents(3N)
- See FN_string_t(3N)
-
-
fn_string_from_str(3N)
- See FN_string_t(3N)
-
-
fn_string_from_strings(3N)
- See FN_string_t(3N)
-
-
fn_string_from_str_n(3N)
- See FN_string_t(3N)
-
-
fn_string_from_substring(3N)
- See FN_string_t(3N)
-
-
fn_string_is_empty(3N)
- See FN_string_t(3N)
-
-
fn_string_next_substring(3N)
- See FN_string_t(3N)
-
-
fn_string_prev_substring(3N)
- See FN_string_t(3N)
-
-
fn_string_str(3N)
- See FN_string_t(3N)
-
-
FN_string_t(3N)
- a character string
-
-
fn_valuelist_destroy(3N)
- See fn_attr_get_values(3N)
-
-
fn_valuelist_next(3N)
- See fn_attr_get_values(3N)
-
-
FN_valuelist_t(3N)
- See fn_attr_get_values(3N)
-
-
fopen(3B)
- open a stream
-
-
fopen(3S)
- open a stream
-
-
form_cursor(3X)
- position forms window cursor
-
-
form_data(3X)
- tell if forms field has off-screen data
- ahead or behind
-
-
form_driver(3X)
- command processor for the forms subsys-
- tem
-
-
form_field(3X)
- connect fields to forms
-
-
form_field_attributes(3X)
- format the general display attributes of
- forms
-
-
form_field_buffer(3X)
- set and get forms field attributes
-
-
form_field_info(3X)
- get forms field characteristics
-
-
form_field_just(3X)
- format the general appearance of forms
-
-
form_field_new(3X)
- create and destroy forms fields
-
-
form_field_opts(3X)
- forms field option routines
-
-
form_fields(3X)
- See form_field(3X)
-
-
form_fieldtype(3X)
- forms fieldtype routines
-
-
form_field_userptr(3X)
- associate application data with forms
-
-
form_field_validation(3X)
- forms field data type validation
-
-
form_hook(3X)
- assign application-specific routines for
- invocation by forms
-
-
form_init(3X)
- See form_hook(3X)
-
-
form_new(3X)
- create and destroy forms
-
-
form_new_page(3X)
- forms pagination
-
-
form_opts(3X)
- forms option routines
-
-
form_opts_off(3X)
- See form_opts(3X)
-
-
form_opts_on(3X)
- See form_opts(3X)
-
-
form_page(3X)
- set forms current page and field
-
-
form_post(3X)
- write or erase forms from associated
- subwindows
-
-
forms(3X)
- character based forms package
-
-
form_sub(3X)
- See form_win (3X)
-
-
form_term(3X)
- See form_hook(3X)
-
-
form_userptr (3X)
- associate application data with forms
-
-
form_win (3X)
- forms window and subwindow associa-
- tion routines
-
-
fpclass(3C)
- See isnan(3C)
-
-
fpgetmask(3C)
- See fpgetround(3C)
-
-
fpgetround(3C)
- IEEE floating-point environment control
-
-
fpgetsticky(3C)
- See fpgetround(3C)
-
-
fprintf(3B)
- See printf(3B)
-
-
fprintf(3S)
- See printf(3S)
-
-
fpsetmask(3C)
- See fpgetround(3C)
-
-
fpsetround(3C)
- See fpgetround(3C)
-
-
fpsetsticky(3C)
- See fpgetround(3C)
-
-
fputc(3S)
- See putc(3S)
-
-
fputs(3S)
- See puts(3S)
-
-
fputwc(3S)
- put wide-character code on a stream
-
-
fputws(3S)
- put wide character string on a stream
-
-
fread(3S)
- buffered binary input/output
-
-
free(3C)
- See malloc(3C)
-
-
free(3X)
- See bsdmalloc(3X)
-
-
free(3X)
- See malloc(3X)
-
-
free(3X)
- See mapmalloc(3X)
-
-
free(3X)
- See watchmalloc(3X)
-
-
free_field(3X)
- See form_field_new(3X)
-
-
free_fieldtype(3X)
- See form_fieldtype(3X)
-
-
free_form(3X)
- See form_new(3X)
-
-
free_item(3X)
- See menu_item_new(3X)
-
-
free_menu(3X)
- See menu_new(3X)
-
-
freenetconfigent(3N)
- See getnetconfig(3N)
-
-
freopen(3B)
- See fopen(3B)
-
-
freopen(3S)
- open a stream
-
-
frexp(3C)
- extract mantissa and exponent from dou-
- ble precision number
-
-
fscanf(3S)
- See scanf(3S)
-
-
fseek(3S)
- reposition a file-position indicator in a
- stream
-
-
fseeko (3S)
- See fseek(3S)
-
-
fsetpos(3S)
- reposition a file pointer in a stream
-
-
fsync(3C)
- synchronize a file's in-memory state with
- that on the physical medium
-
-
ftell(3S)
- return a file offset in a stream
-
-
ftello(3S)
- See ftell(3S)
-
-
ftime(3C)
- get date and time
-
-
ftok(3C)
- generate an IPC key
-
-
ftruncate(3C)
- See truncate(3C)
-
-
ftrylockfile(3S)
- See flockfile(3S)
-
-
ftw(3C)
- walk a file tree
-
-
func_to_decimal(3)
- See string_to_decimal(3)
-
-
funlockfile(3S)
- See flockfile(3S)
-
-
fwrite(3S)
- See fread(3S)
-
-
gamma(3M)
- See lgamma(3M)
-
-
gamma_r(3M)
- See lgamma(3M)
-
-
gconvert(3)
- See econvert(3)
-
-
gcvt(3)
- See econvert(3)
-
-
gcvt(3C)
- See ecvt(3C)
-
-
getacdir(3)
- See getacinfo(3)
-
-
getacflg (3)
- See getacinfo(3)
-
-
getacinfo(3)
- get audit control file information
-
-
getacmin(3)
- See getacinfo(3)
-
-
getacna(3)
- See getacinfo(3)
-
-
getauclassent(3)
- get audit_class entry
-
-
getauclassent_r(3)
- See getauclassent(3)
-
-
getauclassnam(3)
- See getauclassent(3)
-
-
getauclassnam_r(3)
- See getauclassent(3)
-
-
getauditflags(3)
- convert audit flag specifications
-
-
getauditflagsbin(3)
- See getauditflags(3)
-
-
getauditflagschar(3)
- See getauditflags(3)
-
-
getauevent (3)
- get audit_event entry
-
-
getauevent_r(3)
- See getauevent (3)
-
-
getauevnam(3)
- See getauevent (3)
-
-
getauevnam_r(3)
- See getauevent (3)
-
-
getauevnonam(3)
- See getauevent (3)
-
-
getauevnum(3)
- See getauevent (3)
-
-
getauevnum_r(3)
- See getauevent (3)
-
-
getauuserent(3)
- See getauusernam(3)
-
-
getauusernam(3)
- get audit_user entry
-
-
getbegyx(3X)
- See curs_getyx(3X)
-
-
getbegyx(3XC)
- get cursor or window coordinates
-
-
getbkgrnd(3XC)
- See bkgrnd(3XC)
-
-
getc(3S)
- get character or word from a stream
-
-
getcchar(3XC)
- get a wide character string (with rendi-
- tion) from a cchar_t
-
-
getch(3X)
- See curs_getch(3X)
-
-
getch(3XC)
- get a single-byte character from terminal
-
-
getchar(3S)
- See getc(3S)
-
-
getchar_unlocked(3S)
- See getc(3S)
-
-
getc_unlocked(3S)
- See getc(3S)
-
-
getcwd(3C)
- get pathname of current working direc-
- tory
-
-
getdate(3C)
- convert user format date and time
-
-
getdtablesize(3C)
- get the file descriptor table size
-
-
getenv(3C)
- return value for environment name
-
-
getexecname(3C)
- return pathname of executable
-
-
getfauditflags(3)
- generates the process audit state
-
-
getgrent(3C)
- See getgrnam(3C)
-
-
getgrent_r(3C)
- See getgrnam(3C)
-
-
getgrgid(3C)
- See getgrnam(3C)
-
-
getgrgid_r(3C)
- See getgrnam(3C)
-
-
getgrnam(3C)
- get group entry
-
-
getgrnam_r(3C)
- See getgrnam(3C)
-
-
gethostbyaddr(3N)
- See gethostbyname (3N)
-
-
gethostbyaddr(3XN)
- See endhostent(3XN)
-
-
gethostbyaddr_r (3N)
- See gethostbyname (3N)
-
-
gethostbyname (3N)
- get network host entry
-
-
gethostbyname (3XN)
- See endhostent(3XN)
-
-
gethostbyname_r(3N)
- See gethostbyname (3N)
-
-
gethostent(3N)
- See gethostbyname (3N)
-
-
gethostent(3XN)
- See endhostent(3XN)
-
-
gethostent_r(3N)
- See gethostbyname (3N)
-
-
gethostid(3C)
- get unique identifier of current host
-
-
gethostname(3C)
- get or set name of current host
-
-
gethostname(3XN)
- get name of current host
-
-
gethrtime(3C)
- get high resolution time
-
-
gethrvtime (3C)
- See gethrtime(3C)
-
-
getlogin(3C)
- get login name
-
-
getlogin_r(3C)
- See getlogin(3C)
-
-
getmaxyx(3X)
- See curs_getyx(3X)
-
-
getmaxyx(3XC)
- See getbegyx(3XC)
-
-
getmntany(3C)
- See getmntent(3C)
-
-
getmntent(3C)
- get mnttab file information
-
-
get_myaddress(3N)
- See rpc_soc(3N)
-
-
getnetbyaddr(3N)
- See getnetbyname (3N)
-
-
getnetbyaddr(3XN)
- See endnetent(3XN)
-
-
getnetbyaddr_r (3N)
- See getnetbyname (3N)
-
-
getnetbyname (3N)
- get network entry
-
-
getnetbyname (3XN)
- See endnetent(3XN)
-
-
getnetbyname_r(3N)
- See getnetbyname (3N)
-
-
getnetconfig(3N)
- get network configuration database entry
-
-
getnetconfigent(3N)
- See getnetconfig(3N)
-
-
getnetent(3N)
- See getnetbyname (3N)
-
-
getnetent(3XN)
- See endnetent(3XN)
-
-
getnetent_r(3N)
- See getnetbyname (3N)
-
-
getnetgrent(3N)
- get network group entry
-
-
getnetgrent_r(3N)
- See getnetgrent(3N)
-
-
getnetname(3N)
- See secure_rpc(3N)
-
-
getnetpath(3N)
- get /etc/netconfig entry corresponding to
- NETPATH component
-
-
getnstr(3XC)
- get a multibyte character string from ter-
- minal
-
-
getnwstr(3X)
- See curs_getwstr(3X)
-
-
getn_wstr(3XC)
- get a wide character string from terminal
-
-
getopt(3C)
- get option letter from argument vector
-
-
getpagesize(3C)
- get system page size
-
-
getparyx(3X)
- See curs_getyx(3X)
-
-
getparyx(3XC)
- See getbegyx(3XC)
-
-
getpass(3C)
- read a string of characters without echo
-
-
getpassphrase(3C)
- See getpass(3C)
-
-
getpeername(3N)
- get name of connected peer
-
-
getpeername(3XN)
- get the name of the peer socket
-
-
getpriority(3C)
- get or set process scheduling priority
-
-
getprotobyname(3N)
- get protocol entry
-
-
getprotobyname(3XN)
- See endprotoent(3XN)
-
-
getprotobyname_r(3N)
- See getprotobyname(3N)
-
-
getprotobynumber(3N)
- See getprotobyname(3N)
-
-
getprotobynumber(3XN)
- See endprotoent(3XN)
-
-
getprotobynumber_r(3N)
- See getprotobyname(3N)
-
-
getprotoent(3N)
- See getprotobyname(3N)
-
-
getprotoent(3XN)
- See endprotoent(3XN)
-
-
getprotoent_r(3N)
- See getprotobyname(3N)
-
-
getpublickey(3N)
- retrieve public or secret key
-
-
getpw(3C)
- get passwd entry from UID
-
-
getpwent(3C)
- See getpwnam(3C)
-
-
getpwent_r(3C)
- See getpwnam(3C)
-
-
getpwnam(3C)
- get password entry
-
-
getpwnam_r(3C)
- See getpwnam(3C)
-
-
getpwuid(3C)
- See getpwnam(3C)
-
-
getpwuid_r(3C)
- See getpwnam(3C)
-
-
getrpcbyname (3N)
- get RPC entry
-
-
getrpcbyname_r(3N)
- See getrpcbyname (3N)
-
-
getrpcbynumber(3N)
- See getrpcbyname (3N)
-
-
getrpcbynumber_r (3N)
- See getrpcbyname (3N)
-
-
getrpcent(3N)
- See getrpcbyname (3N)
-
-
getrpcent_r(3N)
- See getrpcbyname (3N)
-
-
getrpcport(3N)
- See rpc_soc(3N)
-
-
getrusage(3C)
- get information about resource utilization
-
-
gets(3S)
- get a string from a stream
-
-
getsecretkey(3N)
- See getpublickey(3N)
-
-
getservbyname(3N)
- get service entry
-
-
getservbyname(3XN)
- See endservent(3XN)
-
-
getservbyname_r(3N)
- See getservbyname(3N)
-
-
getservbyport(3N)
- See getservbyname(3N)
-
-
getservbyport(3XN)
- See endservent(3XN)
-
-
getservbyport_r(3N)
- See getservbyname(3N)
-
-
getservent(3N)
- See getservbyname(3N)
-
-
getservent(3XN)
- See endservent(3XN)
-
-
getservent_r(3N)
- See getservbyname(3N)
-
-
getsockname(3N)
- get socket name
-
-
getsockname(3XN)
- get the socket name
-
-
getsockopt(3N)
- get and set options on sockets
-
-
getsockopt(3XN)
- get the socket options
-
-
getspent(3C)
- See getspnam(3C)
-
-
getspent_r(3C)
- See getspnam(3C)
-
-
getspnam(3C)
- get password entry
-
-
getspnam_r(3C)
- See getspnam(3C)
-
-
getstr(3X)
- See curs_getstr(3X)
-
-
getstr(3XC)
- See getnstr(3XC)
-
-
getsubopt(3C)
- parse suboptions from a string
-
-
getsyx(3X)
- See curs_kernel(3X)
-
-
gettext(3C)
- message handling functions
-
-
gettimeofday(3B)
- get or set the date and time
-
-
gettimeofday(3C)
- get or set the date and time
-
-
gettxt(3C)
- retrieve a text string
-
-
getusershell(3C)
- get legal user shells
-
-
getutent(3C)
- access utmp file entry
-
-
getutid(3C)
- See getutent(3C)
-
-
getutline(3C)
- See getutent(3C)
-
-
getutmp(3C)
- See getutxent(3C)
-
-
getutmpx(3C)
- See getutxent(3C)
-
-
getutxent(3C)
- access utmpx file entry
-
-
getutxid(3C)
- See getutxent(3C)
-
-
getutxline(3C)
- See getutxent(3C)
-
-
getvfsany(3C)
- See getvfsent(3C)
-
-
getvfsent(3C)
- get vfstab file entry
-
-
getvfsfile(3C)
- See getvfsent(3C)
-
-
getvfsspec(3C)
- See getvfsent(3C)
-
-
getw(3S)
- See getc(3S)
-
-
getwc(3S)
- get wide character from a stream
-
-
getwch(3X)
- See curs_getwch(3X)
-
-
get_wch(3XC)
- get a wide character from terminal
-
-
getwchar(3S)
- get wide character from stdin stream
-
-
getwd(3C)
- get current working directory pathname
-
-
getwidth(3C)
- get codeset information
-
-
getwin(3X)
- See curs_util(3X)
-
-
getwin(3XC)
- read a window from, and write a window
- to, a file
-
-
getws(3S)
- convert a string of EUC characters from
- the stream to Process Code
-
-
getwstr(3X)
- See curs_getwstr(3X)
-
-
get_wstr(3XC)
- See getn_wstr(3XC)
-
-
getyx(3X)
- See curs_getyx(3X)
-
-
getyx(3XC)
- See getbegyx(3XC)
-
-
glob(3C)
- generate path names matching a pattern
-
-
global_variables(3XC)
- variables used for X/Open Curses
-
-
globfree(3C)
- See glob(3C)
-
-
gmatch(3G)
- shell global pattern matching
-
-
gmtime (3C)
- See ctime(3C)
-
-
gmtime_r(3C)
- See ctime(3C)
-
-
grantpt(3C)
- grant access to the slave pseudo-terminal
- device
-
-
gsignal(3C)
- See ssignal(3C)
-
-
halfdelay(3X)
- See curs_inopts(3X)
-
-
halfdelay(3XC)
- enable/disable half-delay mode
-
-
has_colors(3X)
- See curs_color(3X)
-
-
has_colors(3XC)
- See can_change_color(3XC)
-
-
has_ic(3X)
- See curs_termattrs(3X)
-
-
has_ic(3XC)
- determine insert/delete character/line
- capability
-
-
has_il(3X)
- See curs_termattrs(3X)
-
-
has_il(3XC)
- See has_ic(3XC)
-
-
hasmntopt(3C)
- See getmntent(3C)
-
-
havedisk(3N)
- See rstat(3N)
-
-
hcreate(3C)
- See hsearch(3C)
-
-
hdestroy (3C)
- See hsearch(3C)
-
-
hide_panel(3X)
- See panel_show(3X)
-
-
hline(3XC)
- use single-byte characters (and rendi-
- tions) to draw lines
-
-
hline_set(3XC)
- use complex characters (and renditions)
- to draw lines
-
-
host2netname(3N)
- See secure_rpc(3N)
-
-
hsearch(3C)
- manage hash search tables
-
-
htonl(3N)
- See byteorder(3N)
-
-
htonl(3XN)
- convert values between host and network
- byte order
-
-
htons(3N)
- See byteorder(3N)
-
-
htons(3XN)
- See htonl(3XN)
-
-
hypot(3M)
- Euclidean distance function
-
-
iconv (3)
- code conversion function
-
-
iconv_close(3)
- code conversion deallocation function
-
-
iconv_open(3)
- code conversion allocation function
-
-
idcok(3X)
- See curs_outopts(3X)
-
-
idcok(3XC)
- enable/disable hardware insert-character
- and delete-character features
-
-
idlok(3X)
- See curs_outopts(3X)
-
-
idlok(3XC)
- See clearok(3XC)
-
-
ilogb(3M)
- returns an unbiased exponent
-
-
immedok(3X)
- See curs_outopts(3X)
-
-
immedok(3XC)
- call refresh on changes to window
-
-
inch(3X)
- See curs_inch(3X)
-
-
inch(3XC)
- return a single-byte character (with rendi-
- tion)
-
-
inchnstr(3X)
- See curs_inchstr(3X)
-
-
inchnstr(3XC)
- retrieve a single-byte character string
- (with rendition)
-
-
inchstr(3X)
- See curs_inchstr(3X)
-
-
inchstr(3XC)
- See inchnstr(3XC)
-
-
index(3C)
- string operations
-
-
inet(3N)
- Internet address manipulation
-
-
inet_addr(3N)
- See inet(3N)
-
-
inet_addr(3XN)
- Internet address manipulation
-
-
inet_lnaof(3N)
- See inet(3N)
-
-
inet_lnaof(3XN)
- See inet_addr(3XN)
-
-
inet_makeaddr(3N)
- See inet(3N)
-
-
inet_makeaddr(3XN)
- See inet_addr(3XN)
-
-
inet_netof(3N)
- See inet(3N)
-
-
inet_netof(3XN)
- See inet_addr(3XN)
-
-
inet_network(3N)
- See inet(3N)
-
-
inet_network(3XN)
- See inet_addr(3XN)
-
-
inet_ntoa(3N)
- See inet(3N)
-
-
inet_ntoa(3XN)
- See inet_addr(3XN)
-
-
init_color(3X)
- See curs_color(3X)
-
-
init_color(3XC)
- See can_change_color(3XC)
-
-
initgroups(3C)
- initialize the supplementary group access
- list
-
-
init_pair(3X)
- See curs_color(3X)
-
-
init_pair(3XC)
- See can_change_color(3XC)
-
-
initscr(3X)
- See curs_initscr(3X)
-
-
initscr(3XC)
- screen initialization functions
-
-
initstate(3C)
- See random(3C)
-
-
innetgr(3N)
- See getnetgrent(3N)
-
-
innstr(3X)
- See curs_instr(3X)
-
-
innstr(3XC)
- retrieve a multibyte character string
- (without rendition)
-
-
innwstr(3X)
- See curs_inwstr(3X)
-
-
innwstr(3XC)
- retrieve a wide character string (without
- rendition)
-
-
insch(3X)
- See curs_insch(3X)
-
-
insch(3XC)
- insert a character
-
-
insdelln(3X)
- See curs_deleteln(3X)
-
-
insdelln(3XC)
- insert/delete lines to/from the window
-
-
insertln(3X)
- See curs_deleteln(3X)
-
-
insertln(3XC)
- insert a line in a window
-
-
insnstr(3X)
- See curs_insstr(3X)
-
-
insnstr(3XC)
- insert a multibyte character string
-
-
insnwstr(3X)
- See curs_inswstr(3X)
-
-
ins_nwstr(3XC)
- insert a wide character string
-
-
insque(3C)
- insert/remove element from a queue
-
-
insstr(3X)
- See curs_insstr(3X)
-
-
insstr(3XC)
- See insnstr(3XC)
-
-
instr(3X)
- See curs_instr(3X)
-
-
instr(3XC)
- See innstr(3XC)
-
-
inswch(3X)
- See curs_inswch(3X)
-
-
ins_wch(3XC)
- insert a complex character
-
-
inswstr(3X)
- See curs_inswstr(3X)
-
-
ins_wstr(3XC)
- See ins_nwstr(3XC)
-
-
intrflush(3X)
- See curs_inopts(3X)
-
-
intrflush(3XC)
- flush output in tty on interrupt
-
-
inwch(3X)
- See curs_inwch(3X)
-
-
in_wch(3XC)
- retrieve a complex character (with rendi-
- tion)
-
-
inwchnstr(3X)
- See curs_inwchstr(3X)
-
-
in_wchnstr(3XC)
- retrieve complex character string (with
- rendition)
-
-
inwchstr(3X)
- See curs_inwchstr(3X)
-
-
in_wchstr(3XC)
- See in_wchnstr(3XC)
-
-
inwstr(3X)
- See curs_inwstr(3X)
-
-
inwstr(3XC)
- See innwstr(3XC)
-
-
isalnum(3C)
- See ctype(3C)
-
-
isalpha(3C)
- See ctype(3C)
-
-
isascii(3C)
- See ctype(3C)
-
-
isastream(3C)
- test a file descriptor
-
-
isatty(3C)
- test for a terminal device
-
-
iscntrl(3C)
- See ctype(3C)
-
-
isdigit(3C)
- See ctype(3C)
-
-
isencrypt(3G)
- determine whether a buffer of characters
- is encrypted
-
-
isendwin(3X)
- See curs_initscr(3X)
-
-
isendwin(3XC)
- See endwin(3XC)
-
-
isenglish(3C)
- See iswalpha(3C)
-
-
isgraph(3C)
- See ctype(3C)
-
-
isideogram(3C)
- See iswalpha(3C)
-
-
is_linetouched(3X)
- See curs_touch(3X)
-
-
is_linetouched(3XC)
- control window refresh
-
-
islower(3C)
- See ctype(3C)
-
-
isnan(3C)
- determine type of floating-point number
-
-
isnan(3M)
- test for NaN
-
-
isnand(3C)
- See isnan(3C)
-
-
isnanf(3C)
- See isnan(3C)
-
-
isnumber(3C)
- See iswalpha(3C)
-
-
isphonogram(3C)
- See iswalpha(3C)
-
-
isprint(3C)
- See ctype(3C)
-
-
ispunct(3C)
- See ctype(3C)
-
-
isspace(3C)
- See ctype(3C)
-
-
isspecial(3C)
- See iswalpha(3C)
-
-
isupper(3C)
- See ctype(3C)
-
-
iswalnum(3C)
- See iswalpha(3C)
-
-
iswalpha(3C)
- wide-character code classification func-
- tions
-
-
iswascii(3C)
- See iswalpha(3C)
-
-
iswcntrl(3C)
- See iswalpha(3C)
-
-
iswctype(3C)
- test character for specified class
-
-
iswdigit(3C)
- See iswalpha(3C)
-
-
iswgraph(3C)
- See iswalpha(3C)
-
-
is_wintouched(3X)
- See curs_touch(3X)
-
-
is_wintouched(3XC)
- See is_linetouched(3XC)
-
-
iswlower(3C)
- See iswalpha(3C)
-
-
iswprint(3C)
- See iswalpha(3C)
-
-
iswpunct(3C)
- See iswalpha(3C)
-
-
iswspace(3C)
- See iswalpha(3C)
-
-
iswupper(3C)
- See iswalpha(3C)
-
-
iswxdigit(3C)
- See iswalpha(3C)
-
-
isxdigit(3C)
- See ctype(3C)
-
-
item_count(3X)
- See menu_items(3X)
-
-
item_description(3X)
- See menu_item_name(3X)
-
-
item_index(3X)
- See menu_item_current(3X)
-
-
item_init(3X)
- See menu_hook(3X)
-
-
item_name(3X)
- See menu_item_name(3X)
-
-
item_opts(3X)
- See menu_item_opts(3X)
-
-
item_opts_off(3X)
- See menu_item_opts(3X)
-
-
item_opts_on(3X)
- See menu_item_opts(3X)
-
-
item_term(3X)
- See menu_hook(3X)
-
-
item_userptr(3X)
- See menu_item_userptr(3X)
-
-
item_value(3X)
- See menu_item_value(3X)
-
-
item_visible(3X)
- See menu_item_visible(3X)
-
-
j0(3M)
- Bessel functions of the first kind
-
-
j1(3M)
- See j0(3M)
-
-
jn(3M)
- See j0(3M)
-
-
jrand48(3C)
- See drand48(3C)
-
-
kerberos (3N)
- Kerberos authentication library
-
-
kerberos_rpc(3N)
- library routines for remote procedure
- calls using Kerberos authentication
-
-
key_decryptsession(3N)
- See secure_rpc(3N)
-
-
key_encryptsession(3N)
- See secure_rpc(3N)
-
-
key_gendes(3N)
- See secure_rpc(3N)
-
-
keyname(3X)
- See curs_util(3X)
-
-
keyname(3XC)
- return character string used as key name
-
-
key_name(3XC)
- See keyname(3XC)
-
-
keypad(3X)
- See curs_inopts(3X)
-
-
keypad(3XC)
- enable/disable keypad handling
-
-
key_secretkey_is_set(3N)
- See secure_rpc(3N)
-
-
key_setsecret(3N)
- See secure_rpc(3N)
-
-
killchar(3X)
- See curs_termattrs(3X)
-
-
killchar(3XC)
- See erasechar(3XC)
-
-
killpg(3C)
- send signal to a process group
-
-
killwchar(3XC)
- See erasechar(3XC)
-
-
krb_get_admhst(3N)
- See krb_realmofhost(3N)
-
-
krb_get_cred(3N)
- See kerberos (3N)
-
-
krb_get_krbhst(3N)
- See krb_realmofhost(3N)
-
-
krb_get_lrealm(3N)
- See krb_realmofhost(3N)
-
-
krb_get_phost(3N)
- See krb_realmofhost(3N)
-
-
krb_kntoln(3N)
- See kerberos (3N)
-
-
krb_mk_err(3N)
- See kerberos (3N)
-
-
krb_mk_req(3N)
- See kerberos (3N)
-
-
krb_mk_safe(3N)
- See kerberos (3N)
-
-
krb_net_read(3N)
- See krb_sendauth(3N)
-
-
krb_net_write(3N)
- See krb_sendauth(3N)
-
-
krb_rd_err(3N)
- See kerberos (3N)
-
-
krb_rd_req(3N)
- See kerberos (3N)
-
-
krb_rd_safe(3N)
- See kerberos (3N)
-
-
krb_realmofhost(3N)
- additional Kerberos utility routines
-
-
krb_recvauth(3N)
- See krb_sendauth(3N)
-
-
krb_sendauth(3N)
- Kerberos routines for sending authentica-
- tion via network stream sockets
-
-
krb_set_key(3N)
- See kerberos (3N)
-
-
krb_set_tkt_string(3N)
- set Kerberos ticket cache file name
-
-
kstat(3K)
- kernel statistics facility
-
-
kstat_chain_update(3K)
- update the kstat header chain
-
-
kstat_close(3K)
- See kstat_open(3K)
-
-
kstat_data_lookup(3K)
- See kstat_lookup(3K)
-
-
kstat_lookup(3K)
- find a kstat by name
-
-
kstat_open(3K)
- initialize kernel statistics facility
-
-
kstat_read(3K)
- read or write kstat data
-
-
kstat_write(3K)
- See kstat_read(3K)
-
-
kvm_close(3K)
- See kvm_open(3K)
-
-
kvm_getcmd(3K)
- See kvm_getu(3K)
-
-
kvm_getproc(3K)
- See kvm_nextproc (3K)
-
-
kvm_getu(3K)
- get the u-area or invocation arguments
- for a process
-
-
kvm_kread(3K)
- See kvm_read(3K)
-
-
kvm_kwrite(3K)
- See kvm_read(3K)
-
-
kvm_nextproc (3K)
- read system process structures
-
-
kvm_nlist(3K)
- get entries from kernel symbol table
-
-
kvm_open(3K)
- specify a kernel to examine
-
-
kvm_read(3K)
- copy data to or from a kernel image or
- running system
-
-
kvm_setproc(3K)
- See kvm_nextproc (3K)
-
-
kvm_uread(3K)
- See kvm_read(3K)
-
-
kvm_uwrite(3K)
- See kvm_read(3K)
-
-
kvm_write(3K)
- See kvm_read(3K)
-
-
l64a(3C)
- See a64l(3C)
-
-
label(3)
- See plot(3)
-
-
labs(3C)
- See abs(3C)
-
-
lckpwdf(3C)
- manipulate shadow password database
- lock file
-
-
lcong48 (3C)
- See drand48(3C)
-
-
ldexp(3C)
- load exponent of a floating point number
-
-
ldiv(3C)
- See div (3C)
-
-
leaveok(3X)
- See curs_outopts(3X)
-
-
leaveok(3XC)
- See clearok(3XC)
-
-
lfind(3C)
- See lsearch(3C)
-
-
lfmt(3C)
- display error message in standard format
- and pass to logging and monitoring ser-
- vices
-
-
lgamma(3M)
- log gamma function
-
-
lgamma_r(3M)
- See lgamma(3M)
-
-
libpthread(3T)
- See threads(3T)
-
-
libthread(3T)
- See threads(3T)
-
-
libthread_db(3T)
- library of interfaces for monitoring and
- manipulating threads-related aspects of
- multithreaded programs
-
-
libtnfctl(3X)
- library for TNF probe control in a process
- or the kernel
-
-
line(3)
- See plot(3)
-
-
link_field(3X)
- See form_field_new(3X)
-
-
link_fieldtype(3X)
- See form_fieldtype(3X)
-
-
linmod(3)
- See plot(3)
-
-
lio_listio(3R)
- list directed I/O
-
-
listen(3N)
- listen for connections on a socket
-
-
listen(3XN)
- listen for socket connections and limit the
- queue of incoming connections
-
-
llabs(3C)
- See abs(3C)
-
-
lldiv(3C)
- See div (3C)
-
-
lltostr(3C)
- See strtol(3C)
-
-
localeconv(3C)
- get numeric formatting information
-
-
localtime(3C)
- See ctime(3C)
-
-
localtime_r(3C)
- See ctime(3C)
-
-
lockf(3C)
- record locking on files
-
-
log(3M)
- natural logarithm function
-
-
log10(3M)
- base 10 logarithm function
-
-
log1p(3M)
- compute natural logarithm
-
-
logb(3M)
- radix-independent exponent
-
-
_longjmp(3B)
- See setjmp(3B)
-
-
longjmp(3B)
- See setjmp(3B)
-
-
_longjmp(3C)
- non-local goto
-
-
longjmp(3C)
- See setjmp(3C)
-
-
longname(3X)
- See curs_termattrs(3X)
-
-
longname(3XC)
- return full terminal type name
-
-
lrand48(3C)
- See drand48(3C)
-
-
lsearch(3C)
- linear search and update
-
-
madvise(3)
- provide advice to VM system
-
-
maillock(3X)
- functions to manage lockfile(s) for user's
- mailbox
-
-
mailunlock(3X)
- See maillock(3X)
-
-
major(3C)
- See makedev(3C)
-
-
makecontext(3C)
- manipulate user contexts
-
-
makedev(3C)
- manage a device number
-
-
mallinfo(3X)
- See malloc(3X)
-
-
malloc(3C)
- memory allocator
-
-
malloc(3X)
- memory allocator
-
-
malloc(3X)
- See bsdmalloc(3X)
-
-
malloc(3X)
- See watchmalloc(3X)
-
-
mallopt(3X)
- See malloc(3X)
-
-
mapmalloc(3X)
- memory allocator
-
-
matherr(3M)
- math library exception-handling function
-
-
mblen(3C)
- get number of bytes in a character
-
-
mbstowcs(3C)
- convert a character string to a wide-
- character string
-
-
mbtowc(3C)
- convert a character to a wide-character
- code
-
-
mctl(3B)
- memory management control
-
-
media_findname(3X)
- convert a supplied name into an absolute
- pathname that can be used to access
- removable media
-
-
media_getattr(3X)
- get and set media attributes
-
-
media_setattr(3X)
- See media_getattr(3X)
-
-
memalign(3C)
- See malloc(3C)
-
-
memalign(3X)
- See watchmalloc(3X)
-
-
memccpy(3C)
- See memory(3C)
-
-
memchr(3C)
- See memory(3C)
-
-
memcmp(3C)
- See memory(3C)
-
-
memcpy(3C)
- See memory(3C)
-
-
memmove(3C)
- See memory(3C)
-
-
memory(3C)
- memory operations
-
-
memset(3C)
- See memory(3C)
-
-
menu_attributes(3X)
- control menus display attributes
-
-
menu_back(3X)
- See menu_attributes(3X)
-
-
menu_cursor(3X)
- correctly position a menus cursor
-
-
menu_driver(3X)
- command processor for the menus sub-
- system
-
-
menu_fore(3X)
- See menu_attributes(3X)
-
-
menu_format(3X)
- set and get maximum numbers of rows
- and columns in menus
-
-
menu_grey(3X)
- See menu_attributes(3X)
-
-
menu_hook(3X)
- assign application-specific routines for
- automatic invocation by menus
-
-
menu_init(3X)
- See menu_hook(3X)
-
-
menu_item_current(3X)
- set and get current menus items
-
-
menu_item_name(3X)
- get menus item name and description
-
-
menu_item_new(3X)
- create and destroy menus items
-
-
menu_item_opts(3X)
- menus item option routines
-
-
menu_items(3X)
- connect and disconnect items to and from
- menus
-
-
menu_item_userptr(3X)
- associate application data with menus
- items
-
-
menu_item_value(3X)
- set and get menus item values
-
-
menu_item_visible(3X)
- tell if menus item is visible
-
-
menu_mark (3X)
- menus mark string routines
-
-
menu_new(3X)
- create and destroy menus
-
-
menu_opts(3X)
- menus option routines
-
-
menu_opts_off(3X)
- See menu_opts(3X)
-
-
menu_opts_on(3X)
- See menu_opts(3X)
-
-
menu_pad(3X)
- See menu_attributes(3X)
-
-
menu_pattern(3X)
- set and get menus pattern match buffer
-
-
menu_post(3X)
- write or erase menus from associated
- subwindows
-
-
menus(3X)
- character based menus package
-
-
menu_sub(3X)
- See menu_win(3X)
-
-
menu_term(3X)
- See menu_hook(3X)
-
-
menu_userptr(3X)
- associate application data with menus
-
-
menu_win(3X)
- menus window and subwindow associa-
- tion routines
-
-
meta(3X)
- See curs_inopts(3X)
-
-
meta(3XC)
- enable/disable meta keys
-
-
minor(3C)
- See makedev(3C)
-
-
mkdirp(3G)
- create, remove directories in a path
-
-
mkfifo(3C)
- create a new FIFO
-
-
mkstemp(3C)
- make a unique file name
-
-
mktemp(3C)
- make a unique file name
-
-
mktime(3C)
- converts a tm structure to a calendar time
-
-
mlock(3C)
- lock (or unlock) pages in memory
-
-
mlockall(3C)
- lock or unlock address space
-
-
modf(3C)
- decompose floating-point number
-
-
modff(3C)
- See modf(3C)
-
-
monitor(3C)
- prepare process execution profile
-
-
move(3)
- See plot(3)
-
-
move(3X)
- See curs_move(3X)
-
-
move(3XC)
- move cursor in window
-
-
move_field(3X)
- See form_field(3X)
-
-
movenextch (3X)
- See curs_alecompat(3X)
-
-
move_panel(3X)
- See panel_move(3X)
-
-
moveprevch(3X)
- See curs_alecompat(3X)
-
-
mp (3M)
- multiple precision integer arithmetic
-
-
mp_gcd(3M)
- See mp (3M)
-
-
mp_itom(3M)
- See mp (3M)
-
-
mp_madd(3M)
- See mp (3M)
-
-
mp_mcmp(3M)
- See mp (3M)
-
-
mp_mdiv(3M)
- See mp (3M)
-
-
mp_mfree(3M)
- See mp (3M)
-
-
mp_min(3M)
- See mp (3M)
-
-
mp_mout(3M)
- See mp (3M)
-
-
mp_msub(3M)
- See mp (3M)
-
-
mp_mtox(3M)
- See mp (3M)
-
-
mp_mult(3M)
- See mp (3M)
-
-
mp_pow (3M)
- See mp (3M)
-
-
mp_rpow(3M)
- See mp (3M)
-
-
mp_xtom(3M)
- See mp (3M)
-
-
mq_close(3R)
- close a message queue
-
-
mq_getattr(3R)
- See mq_setattr(3R)
-
-
mq_notify(3R)
- notify process (or thread) that a message
- is available on a queue
-
-
mq_open(3R)
- open a message queue
-
-
mq_receive(3R)
- receive a message from a message queue
-
-
mq_send(3R)
- send a message to a message queue
-
-
mq_setattr(3R)
- set/get message queue attributes
-
-
mq_unlink(3R)
- remove a message queue
-
-
mrand48 (3C)
- See drand48(3C)
-
-
msync(3C)
- synchronize memory with physical
- storage
-
-
munlock(3C)
- See mlock(3C)
-
-
munlockall(3C)
- See mlockall(3C)
-
-
mutex(3T)
- mutual exclusion locks
-
-
mutex_destroy(3T)
- See mutex(3T)
-
-
mutex_init(3T)
- See mutex(3T)
-
-
mutex_lock(3T)
- See mutex(3T)
-
-
mutex_trylock(3T)
- See mutex(3T)
-
-
mutex_unlock(3T)
- See mutex(3T)
-
-
mvaddch(3X)
- See curs_addch(3X)
-
-
mvaddch(3XC)
- See addch(3XC)
-
-
mvaddchnstr(3X)
- See curs_addchstr(3X)
-
-
mvaddchnstr(3XC)
- See addchstr(3XC)
-
-
mvaddchstr(3X)
- See curs_addchstr(3X)
-
-
mvaddchstr(3XC)
- See addchstr(3XC)
-
-
mvaddnstr(3X)
- See curs_addstr(3X)
-
-
mvaddnstr(3XC)
- See addnstr(3XC)
-
-
mvaddnwstr(3X)
- See curs_addwstr(3X)
-
-
mvaddnwstr(3XC)
- See addnwstr(3XC)
-
-
mvaddstr(3X)
- See curs_addstr(3X)
-
-
mvaddstr(3XC)
- See addnstr(3XC)
-
-
mvaddwch(3X)
- See curs_addwch(3X)
-
-
mvadd_wch(3XC)
- See add_wch(3XC)
-
-
mvaddwchnstr(3X)
- See curs_addwchstr(3X)
-
-
mvadd_wchnstr(3XC)
- See add_wchnstr(3XC)
-
-
mvaddwchstr(3X)
- See curs_addwchstr(3X)
-
-
mvadd_wchstr(3XC)
- See add_wchnstr(3XC)
-
-
mvaddwstr(3X)
- See curs_addwstr(3X)
-
-
mvaddwstr(3XC)
- See addnwstr(3XC)
-
-
mvchgat(3XC)
- See chgat(3XC)
-
-
mvcur(3X)
- See curs_terminfo(3X)
-
-
mvcur(3XC)
- move the cursor
-
-
mvdelch(3X)
- See curs_delch(3X)
-
-
mvdelch(3XC)
- See delch(3XC)
-
-
mvderwin(3X)
- See curs_window(3X)
-
-
mvderwin(3XC)
- map area of parent window to subwin-
- dow
-
-
mvgetch(3X)
- See curs_getch(3X)
-
-
mvgetch(3XC)
- See getch(3XC)
-
-
mvgetnstr(3XC)
- See getnstr(3XC)
-
-
mvgetnwstr(3X)
- See curs_getwstr(3X)
-
-
mvgetn_wstr(3XC)
- See getn_wstr(3XC)
-
-
mvgetstr (3X)
- See curs_getstr(3X)
-
-
mvgetstr (3XC)
- See getnstr(3XC)
-
-
mvgetwch(3X)
- See curs_getwch(3X)
-
-
mvget_wch(3XC)
- See get_wch(3XC)
-
-
mvgetwstr(3X)
- See curs_getwstr(3X)
-
-
mvget_wstr(3XC)
- See getn_wstr(3XC)
-
-
mvhline(3XC)
- See hline(3XC)
-
-
mvhline_set(3XC)
- See hline_set(3XC)
-
-
mvinch(3X)
- See curs_inch(3X)
-
-
mvinch(3XC)
- See inch(3XC)
-
-
mvinchnstr(3X)
- See curs_inchstr(3X)
-
-
mvinchnstr(3XC)
- See inchnstr(3XC)
-
-
mvinchstr(3X)
- See curs_inchstr(3X)
-
-
mvinchstr(3XC)
- See inchnstr(3XC)
-
-
mvinnstr(3X)
- See curs_instr(3X)
-
-
mvinnstr(3XC)
- See innstr(3XC)
-
-
mvinnwstr(3X)
- See curs_inwstr(3X)
-
-
mvinnwstr(3XC)
- See innwstr(3XC)
-
-
mvinsch(3X)
- See curs_insch(3X)
-
-
mvinsch(3XC)
- See insch(3XC)
-
-
mvinsnstr(3X)
- See curs_insstr(3X)
-
-
mvinsnstr(3XC)
- See insnstr(3XC)
-
-
mvinsnwstr(3X)
- See curs_inswstr(3X)
-
-
mvins_nwstr(3XC)
- See ins_nwstr(3XC)
-
-
mvinsstr(3X)
- See curs_insstr(3X)
-
-
mvinsstr(3XC)
- See insnstr(3XC)
-
-
mvinstr(3X)
- See curs_instr(3X)
-
-
mvinstr(3XC)
- See innstr(3XC)
-
-
mvinswch(3X)
- See curs_inswch(3X)
-
-
mvins_wch(3XC)
- See ins_wch(3XC)
-
-
mvinswstr(3X)
- See curs_inswstr(3X)
-
-
mvins_wstr(3XC)
- See ins_nwstr(3XC)
-
-
mvinwch(3X)
- See curs_inwch(3X)
-
-
mvin_wch(3XC)
- See in_wch(3XC)
-
-
mvinwchnstr(3X)
- See curs_inwchstr(3X)
-
-
mvin_wchnstr(3XC)
- See in_wchnstr(3XC)
-
-
mvinwchstr(3X)
- See curs_inwchstr(3X)
-
-
mvin_wchstr(3XC)
- See in_wchnstr(3XC)
-
-
mvinwstr(3X)
- See curs_inwstr(3X)
-
-
mvinwstr(3XC)
- See innwstr(3XC)
-
-
mvprintw(3X)
- See curs_printw(3X)
-
-
mvprintw(3XC)
- write formatted output to window
-
-
mvscanw(3X)
- See curs_scanw(3X)
-
-
mvscanw(3XC)
- read formatted input from window
-
-
mvvline(3XC)
- See hline(3XC)
-
-
mvvline_set(3XC)
- See hline_set(3XC)
-
-
mvwaddch(3X)
- See curs_addch(3X)
-
-
mvwaddch(3XC)
- See addch(3XC)
-
-
mvwaddchnstr(3X)
- See curs_addchstr(3X)
-
-
mvwaddchnstr(3XC)
- See addchstr(3XC)
-
-
mvwaddchstr(3X)
- See curs_addchstr(3X)
-
-
mvwaddchstr(3XC)
- See addchstr(3XC)
-
-
mvwaddnstr(3X)
- See curs_addstr(3X)
-
-
mvwaddnstr(3XC)
- See addnstr(3XC)
-
-
mvwaddnwstr(3X)
- See curs_addwstr(3X)
-
-
mvwaddnwstr(3XC)
- See addnwstr(3XC)
-
-
mvwaddstr(3X)
- See curs_addstr(3X)
-
-
mvwaddstr(3XC)
- See addnstr(3XC)
-
-
mvwaddwch(3X)
- See curs_addwch(3X)
-
-
mvwadd_wch(3XC)
- See add_wch(3XC)
-
-
mvwaddwchnstr(3X)
- See curs_addwchstr(3X)
-
-
mvwadd_wchnstr(3XC)
- See add_wchnstr(3XC)
-
-
mvwaddwchstr(3X)
- See curs_addwchstr(3X)
-
-
mvwadd_wchstr(3XC)
- See add_wchnstr(3XC)
-
-
mvwaddwstr(3X)
- See curs_addwstr(3X)
-
-
mvwaddwstr(3XC)
- See addnwstr(3XC)
-
-
mvwchgat(3XC)
- See chgat(3XC)
-
-
mvwdelch(3X)
- See curs_delch(3X)
-
-
mvwdelch(3XC)
- See delch(3XC)
-
-
mvwgetch(3X)
- See curs_getch(3X)
-
-
mvwgetch(3XC)
- See getch(3XC)
-
-
mvwgetnstr(3XC)
- See getnstr(3XC)
-
-
mvwgetnwstr(3X)
- See curs_getwstr(3X)
-
-
mvwgetn_wstr(3XC)
- See getn_wstr(3XC)
-
-
mvwgetstr(3X)
- See curs_getstr(3X)
-
-
mvwgetstr(3XC)
- See getnstr(3XC)
-
-
mvwgetwch(3X)
- See curs_getwch(3X)
-
-
mvwget_wch(3XC)
- See get_wch(3XC)
-
-
mvwgetwstr(3X)
- See curs_getwstr(3X)
-
-
mvwget_wstr(3XC)
- See getn_wstr(3XC)
-
-
mvwhline(3XC)
- See hline(3XC)
-
-
mvwhline_set(3XC)
- See hline_set(3XC)
-
-
mvwin(3X)
- See curs_window(3X)
-
-
mvwin(3XC)
- move window
-
-
mvwinch(3X)
- See curs_inch(3X)
-
-
mvwinch(3XC)
- See inch(3XC)
-
-
mvwinchnstr(3X)
- See curs_inchstr(3X)
-
-
mvwinchnstr(3XC)
- See inchnstr(3XC)
-
-
mvwinchstr(3X)
- See curs_inchstr(3X)
-
-
mvwinchstr(3XC)
- See inchnstr(3XC)
-
-
mvwinnstr(3X)
- See curs_instr(3X)
-
-
mvwinnstr(3XC)
- See innstr(3XC)
-
-
mvwinnwstr(3X)
- See curs_inwstr(3X)
-
-
mvwinnwstr(3XC)
- See innwstr(3XC)
-
-
mvwinsch(3X)
- See curs_insch(3X)
-
-
mvwinsch(3XC)
- See insch(3XC)
-
-
mvwinsnstr(3X)
- See curs_insstr(3X)
-
-
mvwinsnstr(3XC)
- See insnstr(3XC)
-
-
mvwins_nstr(3XC)
- See ins_nwstr(3XC)
-
-
mvwinsnwstr(3X)
- See curs_inswstr(3X)
-
-
mvwins_nwstr(3XC)
- See ins_nwstr(3XC)
-
-
mvwinsstr(3X)
- See curs_insstr(3X)
-
-
mvwinsstr(3XC)
- See insnstr(3XC)
-
-
mvwinstr(3X)
- See curs_instr(3X)
-
-
mvwinstr(3XC)
- See innstr(3XC)
-
-
mvwinswch(3X)
- See curs_inswch(3X)
-
-
mvwins_wch(3XC)
- See ins_wch(3XC)
-
-
mvwinswstr(3X)
- See curs_inswstr(3X)
-
-
mvwinwch(3X)
- See curs_inwch(3X)
-
-
mvwin_wch(3XC)
- See in_wch(3XC)
-
-
mvwinwchnstr(3X)
- See curs_inwchstr(3X)
-
-
mvwin_wchnstr(3XC)
- See in_wchnstr(3XC)
-
-
mvwinwchstr(3X)
- See curs_inwchstr(3X)
-
-
mvwin_wchstr(3XC)
- See in_wchnstr(3XC)
-
-
mvwinwstr(3X)
- See curs_inwstr(3X)
-
-
mvwinwstr(3XC)
- See innwstr(3XC)
-
-
mvwprintw(3X)
- See curs_printw(3X)
-
-
mvwprintw(3XC)
- See mvprintw(3XC)
-
-
mvwscanw(3X)
- See curs_scanw(3X)
-
-
mvwscanw(3XC)
- See mvscanw(3XC)
-
-
mvwvline(3XC)
- See hline(3XC)
-
-
mvwvline_set(3XC)
- See hline_set(3XC)
-
-
nanosleep(3R)
- high resolution sleep
-
-
napms(3X)
- See curs_kernel(3X)
-
-
napms(3XC)
- sleep process for a specified length of
- time
-
-
nc_perror(3N)
- See getnetconfig(3N)
-
-
nc_sperror(3N)
- See getnetconfig(3N)
-
-
netdir(3N)
- generic transport name-to-address trans-
- lation
-
-
netdir_free(3N)
- See netdir(3N)
-
-
netdir_getbyaddr(3N)
- See netdir(3N)
-
-
netdir_getbyname(3N)
- See netdir(3N)
-
-
netdir_mergeaddr(3N)
- See netdir(3N)
-
-
netdir_options(3N)
- See netdir(3N)
-
-
netdir_perror(3N)
- See netdir(3N)
-
-
netdir_sperror(3N)
- See netdir(3N)
-
-
netname2host(3N)
- See secure_rpc(3N)
-
-
netname2user(3N)
- See secure_rpc(3N)
-
-
new_field(3X)
- See form_field_new(3X)
-
-
new_fieldtype(3X)
- See form_fieldtype(3X)
-
-
new_form(3X)
- See form_new(3X)
-
-
new_item(3X)
- See menu_item_new(3X)
-
-
new_menu(3X)
- See menu_new(3X)
-
-
newpad(3X)
- See curs_pad(3X)
-
-
newpad(3XC)
- create or refresh a pad or subpad
-
-
new_page(3X)
- See form_new_page(3X)
-
-
new_panel(3X)
- See panel_new(3X)
-
-
newterm(3X)
- See curs_initscr(3X)
-
-
newterm(3XC)
- See initscr(3XC)
-
-
newwin(3X)
- See curs_window(3X)
-
-
newwin(3XC)
- See derwin(3XC)
-
-
nextafter(3M)
- next representable double-precision
- floating-point number
-
-
nextkey(3B)
- See dbm(3B)
-
-
nftw(3C)
- See ftw(3C)
-
-
nice(3B)
- change priority of a process
-
-
nis_add(3N)
- See nis_names(3N)
-
-
nis_add_entry(3N)
- See nis_tables(3N)
-
-
nis_addmember(3N)
- See nis_groups(3N)
-
-
nis_checkpoint(3N)
- See nis_ping(3N)
-
-
nis_clone_object(3N)
- See nis_subr(3N)
-
-
nis_creategroup(3N)
- See nis_groups(3N)
-
-
nis_db(3N)
- NIS+ Database access functions
-
-
nis_destroygroup (3N)
- See nis_groups(3N)
-
-
nis_destroy_object(3N)
- See nis_subr(3N)
-
-
nis_dir_cmp(3N)
- See nis_subr(3N)
-
-
nis_domain_of(3N)
- See nis_subr(3N)
-
-
nis_error(3N)
- display NIS+ error messages
-
-
nis_first_entry(3N)
- See nis_tables(3N)
-
-
nis_freenames(3N)
- See nis_subr(3N)
-
-
nis_freeresult(3N)
- See nis_names(3N)
-
-
nis_freeservlist(3N)
- See nis_server(3N)
-
-
nis_freetags(3N)
- See nis_server(3N)
-
-
nis_getnames(3N)
- See nis_subr(3N)
-
-
nis_getservlist(3N)
- See nis_server(3N)
-
-
nis_groups(3N)
- NIS+ group manipulation functions
-
-
nis_ismember(3N)
- See nis_groups(3N)
-
-
nis_leaf_of(3N)
- See nis_subr(3N)
-
-
nis_lerror(3N)
- See nis_error(3N)
-
-
nis_list(3N)
- See nis_tables(3N)
-
-
nis_local_directory(3N)
- See nis_local_names(3N)
-
-
nis_local_group(3N)
- See nis_local_names(3N)
-
-
nis_local_host(3N)
- See nis_local_names(3N)
-
-
nis_local_names(3N)
- NIS+ local names
-
-
nis_local_principal(3N)
- See nis_local_names(3N)
-
-
nis_lookup(3N)
- See nis_names(3N)
-
-
__nis_map_group(3N)
- See nis_groups(3N)
-
-
nis_map_group(3N)
- See nis_groups(3N)
-
-
nis_mkdir(3N)
- See nis_server(3N)
-
-
nis_modify(3N)
- See nis_names(3N)
-
-
nis_modify_entry(3N)
- See nis_tables(3N)
-
-
nis_name_of(3N)
- See nis_subr(3N)
-
-
nis_names(3N)
- NIS+ namespace functions
-
-
nis_next_entry(3N)
- See nis_tables(3N)
-
-
nis_objects(3N)
- NIS+ object formats
-
-
nis_perror(3N)
- See nis_error(3N)
-
-
nis_ping(3N)
- misc NIS+ log administration functions
-
-
nis_print_group_entry(3N)
- See nis_groups(3N)
-
-
nis_print_object(3N)
- See nis_subr(3N)
-
-
nis_remove(3N)
- See nis_names(3N)
-
-
nis_remove_entry(3N)
- See nis_tables(3N)
-
-
nis_removemember(3N)
- See nis_groups(3N)
-
-
nis_rmdir(3N)
- See nis_server(3N)
-
-
nis_server(3N)
- miscellaneous NIS+ functions
-
-
nis_servstate(3N)
- See nis_server(3N)
-
-
nis_sperrno(3N)
- See nis_error(3N)
-
-
nis_sperror(3N)
- See nis_error(3N)
-
-
nis_sperror_r(3N)
- See nis_error(3N)
-
-
nis_stats(3N)
- See nis_server(3N)
-
-
nis_subr(3N)
- NIS+ subroutines
-
-
nis_tables(3N)
- NIS+ table functions
-
-
nis_verifygroup(3N)
- See nis_groups(3N)
-
-
nl(3X)
- See curs_outopts(3X)
-
-
nl(3XC)
- enable/disable newline control
-
-
nlist(3B)
- get entries from symbol table
-
-
nlist(3E)
- get entries from name list
-
-
nl_langinfo(3C)
- language information
-
-
nlsgetcall(3N)
- get client's data passed via the listener
-
-
nlsprovider(3N)
- get name of transport provider
-
-
nlsrequest(3N)
- format and send listener service request
- message
-
-
nocbreak(3X)
- See curs_inopts(3X)
-
-
nocbreak(3XC)
- See cbreak(3XC)
-
-
nodelay(3X)
- See curs_inopts(3X)
-
-
nodelay(3XC)
- set blocking or non-blocking read
-
-
noecho(3X)
- See curs_inopts(3X)
-
-
noecho(3XC)
- See echo(3XC)
-
-
nonl(3X)
- See curs_outopts(3X)
-
-
nonl(3XC)
- See nl(3XC)
-
-
noqiflush(3X)
- See curs_inopts(3X)
-
-
noqiflush(3XC)
- control flush of input and output on inter-
- rupt
-
-
noraw(3X)
- See curs_inopts(3X)
-
-
noraw(3XC)
- See cbreak(3XC)
-
-
NOTE(3X)
- annotate source code with info for tools
-
-
_NOTE(3X)
- See NOTE(3X)
-
-
notimeout(3X)
- See curs_inopts(3X)
-
-
notimeout(3XC)
- set timed blocking or non-blocking read
-
-
nrand48(3C)
- See drand48(3C)
-
-
ntohl(3N)
- See byteorder(3N)
-
-
ntohl(3XN)
- See htonl(3XN)
-
-
ntohs(3N)
- See byteorder(3N)
-
-
ntohs(3XN)
- See htonl(3XN)
-
-
offsetof(3C)
- offset of structure member
-
-
opendir(3C)
- open directory
-
-
openlog(3)
- See syslog(3)
-
-
openpl(3)
- See plot(3)
-
-
openvt(3)
- See plot(3)
-
-
overlay(3X)
- See curs_overlay(3X)
-
-
overlay(3XC)
- overlap or overwrite windows
-
-
overwrite(3X)
- See curs_overlay(3X)
-
-
overwrite(3XC)
- See overlay(3XC)
-
-
p2close(3G)
- See p2open(3G)
-
-
p2open(3G)
- open, close pipes to and from a command
-
-
pair_content(3X)
- See curs_color(3X)
-
-
pair_content(3XC)
- See can_change_color(3XC)
-
-
PAIR_NUMBER(3XC)
- See can_change_color(3XC)
-
-
pam (3)
- PAM (Pluggable Authentication Module)
-
-
pam_acct_mgmt(3)
- perform PAM account validation pro-
- cedures
-
-
pam_authenticate(3)
- perform authentication within the PAM
- framework
-
-
pam_chauthtok(3)
- perform password related functions
- within the PAM framework
-
-
pam_close_session(3)
- See pam_open_session(3)
-
-
pam_end(3)
- See pam_start(3)
-
-
pam_get_data(3)
- See pam_set_data(3)
-
-
pam_getenv(3)
- returns the value for a PAM environment
- name
-
-
pam_getenvlist(3)
- returns a list of all the PAM environment
- variables
-
-
pam_get_item(3)
- See pam_set_item(3)
-
-
pam_get_user(3)
- PAM routine to retrieve user name
-
-
pam_open_session(3)
- perform PAM session creation and termi-
- nation operations
-
-
pam_putenv(3)
- change or add a value to the PAM
- environment
-
-
pam_setcred(3)
- modify/delete user credentials for an
- authentication service
-
-
pam_set_data(3)
- PAM routines to maintain module
- specific state
-
-
pam_set_item(3)
- authentication information routines for
- PAM
-
-
pam_sm(3)
- PAM Service Module APIs
-
-
pam_sm_acct_mgmt(3)
- service provider implementation for
- pam_acct_mgmt
-
-
pam_sm_authenticate(3)
- service provider implementation for
- pam_authenticate
-
-
pam_sm_chauthtok(3)
- service provider implementation for
- pam_chauthtok
-
-
pam_sm_close_session(3)
- See pam_sm_open_session(3)
-
-
pam_sm_open_session(3)
- service provider implementation for
- pam_open_session and
- pam_close_session
-
-
pam_sm_setcred(3)
- service provider implementation for
- pam_setcred
-
-
pam_start(3)
- authentication transaction routines for
- PAM
-
-
pam_strerror(3)
- get PAM error message string
-
-
panel_above(3X)
- panels deck traversal primitives
-
-
panel_below(3X)
- See panel_above(3X)
-
-
panel_hidden(3X)
- See panel_show(3X)
-
-
panel_move(3X)
- move a panels window on the virtual
- screen
-
-
panel_new(3X)
- create and destroy panels
-
-
panels(3X)
- character based panels package
-
-
panel_show(3X)
- panels deck manipulation routines
-
-
panel_top(3X)
- panels deck manipulation routines
-
-
panel_update(3X)
- panels virtual screen refresh routine
-
-
panel_userptr(3X)
- associate application data with a panels
- panel
-
-
panel_window(3X)
- get or set the current window of a panels
- panel
-
-
pathfind(3G)
- search for named file in named direc-
- tories
-
-
pclose(3S)
- See popen(3S)
-
-
pechochar(3X)
- See curs_pad(3X)
-
-
pechochar(3XC)
- add character and refresh window
-
-
pechowchar(3X)
- See curs_pad(3X)
-
-
pecho_wchar(3XC)
- See pechochar(3XC)
-
-
perror(3C)
- print system error messages
-
-
pfmt(3C)
- display error message in standard format
-
-
plock(3C)
- lock or unlock into memory process, text,
- or data
-
-
plot(3)
- graphics interface
-
-
pmap_getmaps(3N)
- See rpc_soc(3N)
-
-
pmap_getport(3N)
- See rpc_soc(3N)
-
-
pmap_rmtcall(3N)
- See rpc_soc(3N)
-
-
pmap_set(3N)
- See rpc_soc(3N)
-
-
pmap_unset(3N)
- See rpc_soc(3N)
-
-
pnoutrefresh(3X)
- See curs_pad(3X)
-
-
pnoutrefresh(3XC)
- See newpad(3XC)
-
-
point(3)
- See plot(3)
-
-
popen(3S)
- initiate pipe to/from a process
-
-
pos_form_cursor(3X)
- See form_cursor(3X)
-
-
pos_menu_cursor(3X)
- See menu_cursor(3X)
-
-
post_form(3X)
- See form_post(3X)
-
-
post_menu(3X)
- See menu_post(3X)
-
-
pow (3M)
- power function
-
-
prefresh(3X)
- See curs_pad(3X)
-
-
prefresh(3XC)
- See newpad(3XC)
-
-
printf(3B)
- formatted output conversion
-
-
printf(3S)
- print formatted output
-
-
printw(3X)
- See curs_printw(3X)
-
-
printw(3XC)
- See mvprintw(3XC)
-
-
proc_service(3T)
- process service interfaces
-
-
psiginfo(3C)
- See psignal(3C)
-
-
psignal(3B)
- system signal messages
-
-
psignal(3C)
- system signal messages
-
-
ps_kill(3T)
- See ps_pstop(3T)
-
-
ps_lcontinue(3T)
- See ps_pstop(3T)
-
-
ps_lgetfpregs(3T)
- See ps_lgetregs(3T)
-
-
ps_lgetregs(3T)
- routines that access the target process
- register in libthread_db
-
-
ps_lgetxregs(3T)
- See ps_lgetregs(3T)
-
-
ps_lgetxregsize(3T)
- See ps_lgetregs(3T)
-
-
ps_lrolltoaddr(3T)
- See ps_pstop(3T)
-
-
ps_lsetfpregs(3T)
- See ps_lgetregs(3T)
-
-
ps_lsetregs(3T)
- See ps_lgetregs(3T)
-
-
ps_lsetxregs(3T)
- See ps_lgetregs(3T)
-
-
ps_lstop(3T)
- See ps_pstop(3T)
-
-
ps_pcontinue(3T)
- See ps_pstop(3T)
-
-
ps_pdread(3T)
- interfaces in libthread_db that target pro-
- cess memory access
-
-
ps_pdwrite(3T)
- See ps_pdread(3T)
-
-
ps_pglobal_lookup(3T)
- looks up the symbol in the symbol table
- of the load object in the target process
-
-
ps_pstop(3T)
- process and LWP control in libthread_db
-
-
ps_ptread(3T)
- See ps_pdread(3T)
-
-
ps_ptwrite(3T)
- See ps_pdread(3T)
-
-
pthread_atfork(3T)
- register fork handlers
-
-
pthread_attr_destroy(3T)
- See pthread_attr_init(3T)
-
-
pthread_attr_getdetachstate(3T)
- See pthread_attr_init(3T)
-
-
pthread_attr_getinheritsched(3T)
- See pthread_attr_init(3T)
-
-
pthread_attr_getschedparam(3T)
- See pthread_attr_init(3T)
-
-
pthread_attr_getschedpolicy(3T)
- See pthread_attr_init(3T)
-
-
pthread_attr_getscope(3T)
- See pthread_attr_init(3T)
-
-
pthread_attr_getstackaddr(3T)
- See pthread_attr_init(3T)
-
-
pthread_attr_getstacksize(3T)
- See pthread_attr_init(3T)
-
-
pthread_attr_init(3T)
- thread creation attributes
-
-
pthread_attr_setdetachstate(3T)
- See pthread_attr_init(3T)
-
-
pthread_attr_setinheritsched(3T)
- See pthread_attr_init(3T)
-
-
pthread_attr_setschedparam(3T)
- See pthread_attr_init(3T)
-
-
pthread_attr_setschedpolicy(3T)
- See pthread_attr_init(3T)
-
-
pthread_attr_setscope(3T)
- See pthread_attr_init(3T)
-
-
pthread_attr_setstackaddr(3T)
- See pthread_attr_init(3T)
-
-
pthread_attr_setstacksize(3T)
- See pthread_attr_init(3T)
-
-
pthread_cancel(3T)
- cancel execution of a thread
-
-
pthread_cleanup_pop(3T)
- pop a thread cancellation cleanup handler
-
-
pthread_cleanup_push(3T)
- push a thread cancellation cleanup
- handler
-
-
pthread_condattr_destroy(3T)
- See pthread_condattr_init(3T)
-
-
pthread_condattr_getpshared(3T)
- See pthread_condattr_init(3T)
-
-
pthread_condattr_init(3T)
- condition variable initialization attributes
-
-
pthread_condattr_setpshared(3T)
- See pthread_condattr_init(3T)
-
-
pthread_cond_broadcast(3T)
- See condition(3T)
-
-
pthread_cond_destroy(3T)
- See condition(3T)
-
-
pthread_cond_init(3T)
- See condition(3T)
-
-
pthread_cond_signal(3T)
- See condition(3T)
-
-
pthread_cond_timedwait(3T)
- See condition(3T)
-
-
pthread_cond_wait(3T)
- See condition(3T)
-
-
pthread_create(3T)
- thread creation
-
-
pthread_detach(3T)
- dynamically detaching a thread
-
-
pthread_equal(3T)
- compare thread IDs
-
-
pthread_exit(3T)
- thread termination
-
-
pthread_getschedparam(3T)
- See pthread_setschedparam(3T)
-
-
pthread_getspecific(3T)
- See pthread_key_create(3T)
-
-
pthread_join(3T)
- wait for thread termination
-
-
pthread_key_create(3T)
- thread-specific-data functions
-
-
pthread_key_delete(3T)
- See pthread_key_create(3T)
-
-
pthread_kill(3T)
- send a signal to a thread
-
-
pthread_mutexattr_destroy(3T)
- See pthread_mutexattr_init(3T)
-
-
pthread_mutexattr_getprioceiling(3T)
- See pthread_mutexattr_init(3T)
-
-
pthread_mutexattr_getprotocol(3T)
- See pthread_mutexattr_init(3T)
-
-
pthread_mutexattr_getpshared(3T)
- See pthread_mutexattr_init(3T)
-
-
pthread_mutexattr_init(3T)
- mutex initialization attributes
-
-
pthread_mutexattr_setprioceiling(3T)
- See pthread_mutexattr_init(3T)
-
-
pthread_mutexattr_setprotocol(3T)
- See pthread_mutexattr_init(3T)
-
-
pthread_mutexattr_setpshared(3T)
- See pthread_mutexattr_init(3T)
-
-
pthread_mutex_destroy(3T)
- See mutex(3T)
-
-
pthread_mutex_getprioceiling(3T)
- See pthread_mutex_setprioceiling(3T)
-
-
pthread_mutex_init(3T)
- See mutex(3T)
-
-
pthread_mutex_lock(3T)
- See mutex(3T)
-
-
pthread_mutex_setprioceiling(3T)
- change the priority ceiling of a mutex
-
-
pthread_mutex_trylock(3T)
- See mutex(3T)
-
-
pthread_mutex_unlock(3T)
- See mutex(3T)
-
-
pthread_once(3T)
- dynamic package initialization
-
-
pthreads(3T)
- See threads(3T)
-
-
pthread_self(3T)
- get calling thread's ID
-
-
pthread_setcancelstate(3T)
- enable or disable cancellation
-
-
pthread_setcanceltype(3T)
- set the cancellation type of a thread
-
-
pthread_setschedparam(3T)
- dynamic access to thread scheduling
-
-
pthread_setspecific(3T)
- See pthread_key_create(3T)
-
-
pthread_sigmask(3T)
- change and/or examine calling thread's
- signal mask
-
-
pthread_testcancel(3T)
- create cancellation point in the calling
- thread
-
-
ptsname(3C)
- get name of the slave pseudo-terminal
- device
-
-
publickey(3N)
- See getpublickey(3N)
-
-
putc(3S)
- put character or word on a stream
-
-
putchar(3S)
- See putc(3S)
-
-
putchar_unlocked(3S)
- See putc(3S)
-
-
putc_unlocked(3S)
- See putc(3S)
-
-
putenv(3C)
- change or add value to environment
-
-
putmntent(3C)
- See getmntent(3C)
-
-
putp(3X)
- See curs_terminfo(3X)
-
-
putp(3XC)
- apply padding information and output
- string
-
-
putpwent(3C)
- write password file entry
-
-
puts(3S)
- put a string on a stream
-
-
putspent(3C)
- write shadow password file entry
-
-
pututline(3C)
- See getutent(3C)
-
-
pututxline(3C)
- See getutxent(3C)
-
-
putw(3S)
- See putc(3S)
-
-
putwc(3S)
- put wide character on a stream
-
-
putwchar(3S)
- put wide character on stdout stream
-
-
putwin(3X)
- See curs_util(3X)
-
-
putwin(3XC)
- See getwin(3XC)
-
-
putws(3S)
- convert a string of Process Code charac-
- ters to EUC characters
-
-
qeconvert (3)
- See econvert(3)
-
-
qfconvert(3)
- See econvert(3)
-
-
qgconvert(3)
- See econvert(3)
-
-
qiflush(3X)
- See curs_inopts(3X)
-
-
qiflush(3XC)
- See noqiflush(3XC)
-
-
qsort(3C)
- quick sort
-
-
quadruple_to_decimal(3)
- See floating_to_decimal(3)
-
-
rac_drop (3N)
- See rpc_rac(3N)
-
-
rac_poll(3N)
- See rpc_rac(3N)
-
-
rac_recv(3N)
- See rpc_rac(3N)
-
-
rac_send(3N)
- See rpc_rac(3N)
-
-
raise(3C)
- send signal to program
-
-
rand(3B)
- simple random number generator
-
-
rand(3C)
- simple random-number generator
-
-
random(3C)
- pseudorandom number functions
-
-
rand_r (3C)
- See rand(3C)
-
-
raw(3X)
- See curs_inopts(3X)
-
-
raw(3XC)
- See cbreak(3XC)
-
-
rcmd(3N)
- routines for returning a stream to a
- remote command
-
-
readdir(3B)
- read a directory entry
-
-
readdir(3C)
- read directory
-
-
readdir_r(3C)
- See readdir(3C)
-
-
read_vtoc(3X)
- read and write a disk's VTOC
-
-
realloc(3C)
- See malloc(3C)
-
-
realloc(3X)
- See bsdmalloc(3X)
-
-
realloc(3X)
- See malloc(3X)
-
-
realloc(3X)
- See mapmalloc(3X)
-
-
realloc(3X)
- See watchmalloc(3X)
-
-
realpath(3C)
- resolve pathname
-
-
reboot(3C)
- reboot system or halt processor
-
-
re_comp(3C)
- compile and execute regular expressions
-
-
recv(3N)
- receive a message from a socket
-
-
recv(3XN)
- receive a message from a connected
- socket
-
-
recvfrom(3N)
- See recv(3N)
-
-
recvfrom(3XN)
- receive a message from a socket
-
-
recvmsg(3N)
- See recv(3N)
-
-
recvmsg(3XN)
- receive a message from a socket
-
-
redrawwin(3X)
- See curs_refresh(3X)
-
-
redrawwin(3XC)
- redraw screen or portion of screen
-
-
re_exec(3C)
- See re_comp(3C)
-
-
refresh(3X)
- See curs_refresh(3X)
-
-
refresh(3XC)
- See doupdate(3XC)
-
-
regcmp(3C)
- compile and execute regular expression
-
-
regcomp(3C)
- regular expression matching
-
-
regerror(3C)
- See regcomp(3C)
-
-
regex(3C)
- See regcmp(3C)
-
-
regexec(3C)
- See regcomp(3C)
-
-
regexpr(3G)
- regular expression compile and match
- routines
-
-
regfree(3C)
- See regcomp(3C)
-
-
registerrpc(3N)
- See rpc_soc(3N)
-
-
remainder(3M)
- remainder function
-
-
remove(3C)
- remove file
-
-
remque (3C)
- See insque(3C)
-
-
replace_panel(3X)
- See panel_window(3X)
-
-
reset_prog_mode(3X)
- See curs_kernel(3X)
-
-
reset_prog_mode(3XC)
- See def_prog_mode(3XC)
-
-
reset_shell_mode(3X)
- See curs_kernel(3X)
-
-
reset_shell_mode(3XC)
- See def_prog_mode(3XC)
-
-
resetty(3X)
- See curs_kernel(3X)
-
-
resetty(3XC)
- restore/save terminal modes
-
-
res_init(3N)
- See resolver(3N)
-
-
res_mkquery (3N)
- See resolver(3N)
-
-
resolver(3N)
- resolver routines
-
-
res_query (3N)
- See resolver(3N)
-
-
res_search(3N)
- See resolver(3N)
-
-
res_send(3N)
- See resolver(3N)
-
-
restartterm(3X)
- See curs_terminfo(3X)
-
-
restartterm(3XC)
- See del_curterm(3XC)
-
-
rewind(3S)
- reset file position indicator in a stream
-
-
rewinddir(3C)
- reset position of directory stream to the
- beginning of a directory
-
-
rexec(3N)
- return stream to a remote command
-
-
rindex(3C)
- See index(3C)
-
-
rint(3M)
- round-to-nearest integral value
-
-
ripoffline(3X)
- See curs_kernel(3X)
-
-
ripoffline(3XC)
- reserve screen line for dedicated purpose
-
-
rmdirp(3G)
- See mkdirp(3G)
-
-
rnusers(3N)
- See rusers(3N)
-
-
rpc(3N)
- library routines for remote procedure
- calls
-
-
rpcb_getaddr(3N)
- See rpcbind(3N)
-
-
rpcb_getmaps(3N)
- See rpcbind(3N)
-
-
rpcb_gettime(3N)
- See rpcbind(3N)
-
-
rpcbind(3N)
- library routines for RPC bind service
-
-
rpcb_rmtcall(3N)
- See rpcbind(3N)
-
-
rpc_broadcast(3N)
- See rpc_clnt_calls(3N)
-
-
rpc_broadcast_exp(3N)
- See rpc_clnt_calls(3N)
-
-
rpcb_set(3N)
- See rpcbind(3N)
-
-
rpcb_unset(3N)
- See rpcbind(3N)
-
-
rpc_call(3N)
- See rpc_clnt_calls(3N)
-
-
rpc_clnt_auth(3N)
- library routines for client side remote pro-
- cedure call authentication
-
-
rpc_clnt_calls(3N)
- library routines for client side calls
-
-
rpc_clnt_create(3N)
- library routines for dealing with creation
- and manipulation of CLIENT handles
-
-
rpc_control(3N)
- library routine for manipulating global
- RPC attributes for client and server appli-
- cations
-
-
rpc_createerr(3N)
- See rpc_clnt_create(3N)
-
-
rpc_rac(3N)
- remote asynchronous calls
-
-
rpc_reg(3N)
- See rpc_svc_reg(3N)
-
-
rpc_soc(3N)
- obsolete library routines for RPC
-
-
rpc_svc_calls(3N)
- library routines for RPC servers
-
-
rpc_svc_create(3N)
- library routines for the creation of server
- handles
-
-
rpc_svc_err(3N)
- library routines for server side remote
- procedure call errors
-
-
rpc_svc_reg(3N)
- library routines for registering servers
-
-
rpc_xdr(3N)
- XDR library routines for remote pro-
- cedure calls
-
-
rresvport(3N)
- See rcmd(3N)
-
-
rstat(3N)
- get performance data from remote kernel
-
-
ruserok (3N)
- See rcmd(3N)
-
-
rusers(3N)
- return information about users on remote
- machines
-
-
rwall(3N)
- write to specified remote machines
-
-
rwlock(3T)
- multiple readers, single writer locks
-
-
rwlock_destroy(3T)
- See rwlock(3T)
-
-
rwlock_init(3T)
- See rwlock(3T)
-
-
rw_rdlock(3T)
- See rwlock(3T)
-
-
rw_tryrdlock(3T)
- See rwlock(3T)
-
-
rw_trywrlock(3T)
- See rwlock(3T)
-
-
rw_unlock(3T)
- See rwlock(3T)
-
-
rw_wrlock(3T)
- See rwlock(3T)
-
-
savetty(3X)
- See curs_kernel(3X)
-
-
savetty(3XC)
- See resetty(3XC)
-
-
scalb(3M)
- load exponent of a radix-independent
- floating-point number
-
-
scalbn(3M)
- load exponent of a radix-independent
- floating-point number
-
-
scale_form(3X)
- See form_win (3X)
-
-
scale_menu(3X)
- See menu_win(3X)
-
-
scandir(3B)
- scan a directory
-
-
scanf(3S)
- convert formatted input
-
-
scanw(3X)
- See curs_scanw(3X)
-
-
scanw(3XC)
- See mvscanw(3XC)
-
-
schedctl_exit(3X)
- See schedctl_init(3X)
-
-
schedctl_init(3X)
- preemption control
-
-
schedctl_lookup(3X)
- See schedctl_init(3X)
-
-
schedctl_start(3X)
- See schedctl_init(3X)
-
-
schedctl_stop(3X)
- See schedctl_init(3X)
-
-
sched_getparam(3R)
- See sched_setparam(3R)
-
-
sched_get_priority_max(3R)
- get scheduling parameter limits
-
-
sched_get_priority_min(3R)
- See sched_get_priority_max(3R)
-
-
sched_getscheduler(3R)
- See sched_setscheduler(3R)
-
-
sched_rr_get_interval(3R)
- See sched_get_priority_max(3R)
-
-
sched_setparam(3R)
- set/get scheduling parameters
-
-
sched_setscheduler(3R)
- set/get scheduling policy and scheduling
- parameters
-
-
sched_yield(3R)
- yield processor
-
-
scr_dump(3X)
- See curs_scr_dump(3X)
-
-
scr_dump(3XC)
- write screen contents to/from a file
-
-
scr_init(3X)
- See curs_scr_dump(3X)
-
-
scr_init(3XC)
- See scr_dump(3XC)
-
-
scrl(3X)
- See curs_scroll(3X)
-
-
scrl(3XC)
- scroll a window
-
-
scroll(3X)
- See curs_scroll(3X)
-
-
scroll(3XC)
- See scrl(3XC)
-
-
scrollok(3X)
- See curs_outopts(3X)
-
-
scrollok(3XC)
- See clearok(3XC)
-
-
scr_restore(3X)
- See curs_scr_dump(3X)
-
-
scr_restore(3XC)
- See scr_dump(3XC)
-
-
scr_set(3X)
- See curs_scr_dump(3X)
-
-
scr_set(3XC)
- See scr_dump(3XC)
-
-
seconvert(3)
- See econvert(3)
-
-
secure_rpc(3N)
- library routines for secure remote pro-
- cedure calls
-
-
seed48(3C)
- See drand48(3C)
-
-
seekdir(3C)
- set position of directory stream
-
-
select(3C)
- synchronous I/O multiplexing
-
-
sema_destroy(3T)
- See semaphore (3T)
-
-
sema_init(3T)
- See semaphore (3T)
-
-
semaphore (3T)
- semaphores
-
-
sema_post(3T)
- See semaphore (3T)
-
-
sema_trywait(3T)
- See semaphore (3T)
-
-
sema_wait(3T)
- See semaphore (3T)
-
-
sem_close(3R)
- close a named semaphore
-
-
sem_destroy(3R)
- destroy an unnamed semaphore
-
-
sem_getvalue(3R)
- get the value of a semaphore
-
-
sem_init(3R)
- initialize an unnamed semaphore
-
-
sem_open(3R)
- initialize/open a named semaphore
-
-
sem_post(3R)
- increment the count of a semaphore
-
-
sem_trywait(3R)
- See sem_wait(3R)
-
-
sem_unlink(3R)
- remove a named semaphore
-
-
sem_wait(3R)
- acquire or wait for a semaphore
-
-
send(3N)
- send a message from a socket
-
-
send(3XN)
- send a message on a socket
-
-
sendmsg(3N)
- See send(3N)
-
-
sendmsg(3XN)
- send a message on a socket using a mes-
- sage structure
-
-
sendto(3N)
- See send(3N)
-
-
sendto(3XN)
- send a message on a socket
-
-
setac(3)
- See getacinfo(3)
-
-
setauclass(3)
- See getauclassent(3)
-
-
setauevent(3)
- See getauevent (3)
-
-
setauuser(3)
- See getauusernam(3)
-
-
setbuf(3S)
- assign buffering to a stream
-
-
setbuffer(3C)
- assign buffering to a stream
-
-
setcat(3C)
- define default catalog
-
-
setcchar(3XC)
- set a cchar_t type character from a wide
- character and rendition
-
-
set_current_field(3X)
- See form_page(3X)
-
-
set_current_item(3X)
- See menu_item_current(3X)
-
-
set_curterm(3X)
- See curs_terminfo(3X)
-
-
set_curterm(3XC)
- See del_curterm(3XC)
-
-
set_field_back(3X)
- See form_field_attributes(3X)
-
-
set_field_buffer(3X)
- See form_field_buffer(3X)
-
-
set_field_fore(3X)
- See form_field_attributes(3X)
-
-
set_field_init(3X)
- See form_hook(3X)
-
-
set_field_just(3X)
- See form_field_just(3X)
-
-
set_field_opts(3X)
- See form_field_opts(3X)
-
-
set_field_pad(3X)
- See form_field_attributes(3X)
-
-
set_field_status(3X)
- See form_field_buffer(3X)
-
-
set_field_term(3X)
- See form_hook(3X)
-
-
set_field_type(3X)
- See form_field_validation(3X)
-
-
set_fieldtype_arg(3X)
- See form_fieldtype(3X)
-
-
set_fieldtype_choice(3X)
- See form_fieldtype(3X)
-
-
set_field_userptr(3X)
- See form_field_userptr(3X)
-
-
set_form_fields(3X)
- See form_field(3X)
-
-
set_form_init(3X)
- See form_hook(3X)
-
-
set_form_opts(3X)
- See form_opts(3X)
-
-
set_form_page(3X)
- See form_page(3X)
-
-
set_form_sub(3X)
- See form_win (3X)
-
-
set_form_term(3X)
- See form_hook(3X)
-
-
set_form_userptr(3X)
- See form_userptr (3X)
-
-
set_form_win(3X)
- See form_win (3X)
-
-
setgrent(3C)
- See getgrnam(3C)
-
-
sethostent(3N)
- See gethostbyname (3N)
-
-
sethostent(3XN)
- See endhostent(3XN)
-
-
sethostname(3C)
- See gethostname(3C)
-
-
set_item_init(3X)
- See menu_hook(3X)
-
-
set_item_opts(3X)
- See menu_item_opts(3X)
-
-
set_item_term(3X)
- See menu_hook(3X)
-
-
set_item_userptr(3X)
- See menu_item_userptr(3X)
-
-
set_item_value(3X)
- See menu_item_value(3X)
-
-
setjmp(3B)
- non-local goto
-
-
_setjmp(3B)
- See setjmp(3B)
-
-
setjmp(3C)
- non-local goto
-
-
_setjmp(3C)
- See _longjmp(3C)
-
-
setkey(3C)
- set encoding key
-
-
setlabel(3C)
- define the label for pfmt( ) and lfmt( )
-
-
setlinebuf(3C)
- See setbuffer(3C)
-
-
setlocale(3C)
- modify and query a program's locale
-
-
setlogmask(3)
- See syslog(3)
-
-
set_max_field(3X)
- See form_field_buffer(3X)
-
-
set_menu_back(3X)
- See menu_attributes(3X)
-
-
set_menu_fore(3X)
- See menu_attributes(3X)
-
-
set_menu_format(3X)
- See menu_format(3X)
-
-
set_menu_grey(3X)
- See menu_attributes(3X)
-
-
set_menu_init(3X)
- See menu_hook(3X)
-
-
set_menu_items(3X)
- See menu_items(3X)
-
-
set_menu_mark(3X)
- See menu_mark (3X)
-
-
set_menu_opts(3X)
- See menu_opts(3X)
-
-
set_menu_pad(3X)
- See menu_attributes(3X)
-
-
set_menu_pattern(3X)
- See menu_pattern(3X)
-
-
set_menu_sub(3X)
- See menu_win(3X)
-
-
set_menu_term(3X)
- See menu_hook(3X)
-
-
set_menu_userptr(3X)
- See menu_userptr(3X)
-
-
set_menu_win(3X)
- See menu_win(3X)
-
-
setnetconfig(3N)
- See getnetconfig(3N)
-
-
setnetent(3N)
- See getnetbyname (3N)
-
-
setnetent(3XN)
- See endnetent(3XN)
-
-
setnetgrent(3N)
- See getnetgrent(3N)
-
-
setnetpath(3N)
- See getnetpath(3N)
-
-
set_new_page(3X)
- See form_new_page(3X)
-
-
set_panel_userptr(3X)
- See panel_userptr(3X)
-
-
setpriority(3C)
- See getpriority(3C)
-
-
setprotoent(3N)
- See getprotobyname(3N)
-
-
setprotoent(3XN)
- See endprotoent(3XN)
-
-
setpwent(3C)
- See getpwnam(3C)
-
-
setrpcent(3N)
- See getrpcbyname (3N)
-
-
setscrreg(3X)
- See curs_outopts(3X)
-
-
setscrreg(3XC)
- See clearok(3XC)
-
-
setservent(3N)
- See getservbyname(3N)
-
-
setservent(3XN)
- See endservent(3XN)
-
-
setsockopt(3N)
- See getsockopt(3N)
-
-
setsockopt(3XN)
- set the socket options
-
-
setspent(3C)
- See getspnam(3C)
-
-
setstate(3C)
- See random(3C)
-
-
setsyx(3X)
- See curs_kernel(3X)
-
-
set_term(3X)
- See curs_initscr(3X)
-
-
setterm(3X)
- See curs_terminfo(3X)
-
-
setterm(3XC)
- See del_curterm(3XC)
-
-
set_term(3XC)
- switch between terminals
-
-
settimeofday(3B)
- See gettimeofday(3B)
-
-
settimeofday(3C)
- See gettimeofday(3C)
-
-
set_top_row(3X)
- See menu_item_current(3X)
-
-
setupterm(3X)
- See curs_terminfo(3X)
-
-
setupterm(3XC)
- See del_curterm(3XC)
-
-
setusershell(3C)
- See getusershell(3C)
-
-
setutent(3C)
- See getutent(3C)
-
-
setutxent(3C)
- See getutxent(3C)
-
-
setvbuf(3S)
- See setbuf(3S)
-
-
sfconvert(3)
- See econvert(3)
-
-
sgconvert(3)
- See econvert(3)
-
-
shm_open(3R)
- open a shared memory object
-
-
shm_unlink(3R)
- remove a shared memory object
-
-
show_panel(3X)
- See panel_show(3X)
-
-
shutdown(3N)
- shut down part of a full-duplex connec-
- tion
-
-
shutdown(3XN)
- shut down socket send and receive opera-
- tions
-
-
sig2str(3C)
- See str2sig(3C)
-
-
sigaddset(3C)
- See sigsetops(3C)
-
-
sigblock(3B)
- block signals
-
-
sigdelset(3C)
- See sigsetops(3C)
-
-
sigemptyset(3C)
- See sigsetops(3C)
-
-
sigfillset(3C)
- See sigsetops(3C)
-
-
sigfpe(3)
- signal handling for specific SIGFPE codes
-
-
sighold(3C)
- See signal(3C)
-
-
sigignore(3C)
- See signal(3C)
-
-
siginterrupt(3B)
- allow signals to interrupt functions
-
-
sigismember(3C)
- See sigsetops(3C)
-
-
siglongjmp(3C)
- See setjmp(3C)
-
-
sigmask(3B)
- See sigblock(3B)
-
-
signal(3B)
- simplified software signal facilities
-
-
signal(3C)
- simplified signal management for appli-
- cation processes
-
-
significand(3M)
- significand function
-
-
sigpause(3B)
- See sigblock(3B)
-
-
sigpause(3C)
- See signal(3C)
-
-
sigqueue(3R)
- queue a signal to a process
-
-
sigrelse(3C)
- See signal(3C)
-
-
sigset(3C)
- See signal(3C)
-
-
sigsetjmp(3C)
- See setjmp(3C)
-
-
sigsetmask(3B)
- See sigblock(3B)
-
-
sigsetops(3C)
- manipulate sets of signals
-
-
sigstack(3B)
- set and/or get signal stack context
-
-
sigstack(3C)
- set and/or get alternate signal stack con-
- text
-
-
sigtimedwait(3R)
- See sigwaitinfo(3R)
-
-
sigvec(3B)
- software signal facilities
-
-
sigwaitinfo(3R)
- wait for queued signals
-
-
sin(3M)
- sine function
-
-
single_to_decimal(3)
- See floating_to_decimal(3)
-
-
sinh(3M)
- hyperbolic sine function
-
-
sleep(3B)
- suspend execution for interval
-
-
sleep(3C)
- suspend execution for interval
-
-
slk_attroff(3X)
- See curs_slk(3X)
-
-
slk_attroff(3XC)
- manipulate soft labels
-
-
slk_attr_off(3XC)
- See slk_attroff(3XC)
-
-
slk_attron(3X)
- See curs_slk(3X)
-
-
slk_attr_on(3XC)
- See slk_attroff(3XC)
-
-
slk_attron(3XC)
- See slk_attroff(3XC)
-
-
slk_attrset(3X)
- See curs_slk(3X)
-
-
slk_attr_set(3XC)
- See slk_attroff(3XC)
-
-
slk_attrset(3XC)
- See slk_attroff(3XC)
-
-
slk_clear(3X)
- See curs_slk(3X)
-
-
slk_clear(3XC)
- See slk_attroff(3XC)
-
-
slk_color(3XC)
- See slk_attroff(3XC)
-
-
slk_init(3X)
- See curs_slk(3X)
-
-
slk_init(3XC)
- See slk_attroff(3XC)
-
-
slk_label(3X)
- See curs_slk(3X)
-
-
slk_label(3XC)
- See slk_attroff(3XC)
-
-
slk_noutrefresh(3X)
- See curs_slk(3X)
-
-
slk_noutrefresh(3XC)
- See slk_attroff(3XC)
-
-
slk_refresh(3X)
- See curs_slk(3X)
-
-
slk_refresh(3XC)
- See slk_attroff(3XC)
-
-
slk_restore(3X)
- See curs_slk(3X)
-
-
slk_restore(3XC)
- See slk_attroff(3XC)
-
-
slk_set(3X)
- See curs_slk(3X)
-
-
slk_set(3XC)
- See slk_attroff(3XC)
-
-
slk_touch(3X)
- See curs_slk(3X)
-
-
slk_touch(3XC)
- See slk_attroff(3XC)
-
-
slk_wset(3XC)
- See slk_attroff(3XC)
-
-
snprintf(3S)
- See printf(3S)
-
-
socket(3N)
- create an endpoint for communication
-
-
socket(3XN)
- create an endpoint for communication
-
-
socketpair(3N)
- create a pair of connected sockets
-
-
socketpair(3XN)
- create a pair of connected sockets
-
-
space(3)
- See plot(3)
-
-
spray (3N)
- scatter data in order to test the network
-
-
sprintf(3B)
- See printf(3B)
-
-
sprintf(3S)
- See printf(3S)
-
-
sqrt(3M)
- square root function
-
-
srand(3B)
- See rand(3B)
-
-
srand(3C)
- See rand(3C)
-
-
srand48(3C)
- See drand48(3C)
-
-
srandom (3C)
- See random(3C)
-
-
SSAAgentIsAlive(3X)
- Sun Solstice Enterprise Agent registration
- and communication helper functions
-
-
SSAGetTrapPort(3X)
- See SSAAgentIsAlive(3X)
-
-
SSAOidCmp(3X)
- Sun Solstice Enterprise Agent OID helper
- functions
-
-
SSAOidCpy(3X)
- See SSAOidCmp(3X)
-
-
SSAOidDup(3X)
- See SSAOidCmp(3X)
-
-
SSAOidFree(3X)
- See SSAOidCmp(3X)
-
-
SSAOidInit(3X)
- See SSAOidCmp(3X)
-
-
SSAOidNew(3X)
- See SSAOidCmp(3X)
-
-
SSAOidString(3X)
- See SSAOidCmp(3X)
-
-
SSAOidStrToOid(3X)
- See SSAOidCmp(3X)
-
-
SSAOidZero(3X)
- See SSAOidCmp(3X)
-
-
SSARegSubagent(3X)
- See SSAAgentIsAlive(3X)
-
-
SSARegSubtable(3X)
- See SSAAgentIsAlive(3X)
-
-
SSARegSubtree(3X)
- See SSAAgentIsAlive(3X)
-
-
SSASendTrap (3X)
- See SSAAgentIsAlive(3X)
-
-
SSAStringCpy(3X)
- Sun Solstice Enterprise Agent string
- helper functions
-
-
SSAStringInit(3X)
- See SSAStringCpy(3X)
-
-
SSAStringToChar(3X)
- See SSAStringCpy(3X)
-
-
SSAStringZero(3X)
- See SSAStringCpy(3X)
-
-
SSASubagentOpen(3X)
- See SSAAgentIsAlive(3X)
-
-
sscanf(3S)
- See scanf(3S)
-
-
ssignal(3C)
- software signals
-
-
standend(3X)
- See curs_attr(3X)
-
-
standend(3XC)
- set/clear window attributes
-
-
standout(3X)
- See curs_attr(3X)
-
-
standout(3XC)
- See standend(3XC)
-
-
start_color(3X)
- See curs_color(3X)
-
-
start_color(3XC)
- See can_change_color(3XC)
-
-
stdio(3S)
- standard buffered input/output package
-
-
step(3G)
- See regexpr(3G)
-
-
store(3B)
- See dbm(3B)
-
-
str(3G)
- See strfind(3G)
-
-
str2sig(3C)
- translation between signal name and sig-
- nal number
-
-
strcadd(3G)
- See strccpy(3G)
-
-
strcasecmp(3C)
- See string(3C)
-
-
strcat(3C)
- See string(3C)
-
-
strccpy(3G)
- copy strings, compressing or expanding
- escape codes
-
-
strchr(3C)
- See string(3C)
-
-
strcmp(3C)
- See string(3C)
-
-
strcoll(3C)
- string collation
-
-
strcpy(3C)
- See string(3C)
-
-
strcspn(3C)
- See string(3C)
-
-
strdup(3C)
- See string(3C)
-
-
streadd(3G)
- See strccpy(3G)
-
-
strecpy(3G)
- See strccpy(3G)
-
-
strerror(3C)
- get error message string
-
-
strfind(3G)
- string manipulations
-
-
strfmon(3C)
- convert monetary value to string
-
-
strftime(3C)
- convert date and time to string
-
-
string(3C)
- string operations
-
-
string_to_decimal(3)
- parse characters into decimal record
-
-
strlen(3C)
- See string(3C)
-
-
strncasecmp(3C)
- See string(3C)
-
-
strncat(3C)
- See string(3C)
-
-
strncmp(3C)
- See string(3C)
-
-
strncpy(3C)
- See string(3C)
-
-
strpbrk(3C)
- See string(3C)
-
-
strptime(3C)
- date and time conversion
-
-
strrchr(3C)
- See string(3C)
-
-
strrspn(3G)
- See strfind(3G)
-
-
strsignal(3C)
- get error message string
-
-
strspn(3C)
- See string(3C)
-
-
strstr(3C)
- See string(3C)
-
-
strtod(3C)
- convert string to double-precision
- number
-
-
strtok(3C)
- See string(3C)
-
-
strtok_r(3C)
- See string(3C)
-
-
strtol(3C)
- string conversion routines
-
-
strtoll(3C)
- See strtol(3C)
-
-
strtoul(3C)
- convert string to unsigned long
-
-
strtoull(3C)
- See strtoul(3C)
-
-
strtows(3C)
- code conversion for Process Code and
- File Code
-
-
strtrns(3G)
- See strfind(3G)
-
-
strxfrm(3C)
- string transformation
-
-
subpad(3X)
- See curs_pad(3X)
-
-
subpad(3XC)
- See newpad(3XC)
-
-
subwin(3X)
- See curs_window(3X)
-
-
subwin(3XC)
- See derwin(3XC)
-
-
svc_auth_reg(3N)
- See rpc_svc_reg(3N)
-
-
svc_control(3N)
- See rpc_svc_create(3N)
-
-
svc_create(3N)
- See rpc_svc_create(3N)
-
-
svc_destroy(3N)
- See rpc_svc_create(3N)
-
-
svc_dg_create(3N)
- See rpc_svc_create(3N)
-
-
svc_dg_enablecache(3N)
- See rpc_svc_calls(3N)
-
-
svc_done(3N)
- See rpc_svc_calls(3N)
-
-
svcerr_auth(3N)
- See rpc_svc_err(3N)
-
-
svcerr_decode(3N)
- See rpc_svc_err(3N)
-
-
svcerr_noproc(3N)
- See rpc_svc_err(3N)
-
-
svcerr_noprog(3N)
- See rpc_svc_err(3N)
-
-
svcerr_progvers(3N)
- See rpc_svc_err(3N)
-
-
svcerr_systemerr(3N)
- See rpc_svc_err(3N)
-
-
svcerr_weakauth(3N)
- See rpc_svc_err(3N)
-
-
svc_exit(3N)
- See rpc_svc_calls(3N)
-
-
svcfd_create(3N)
- See rpc_soc(3N)
-
-
svc_fd_create(3N)
- See rpc_svc_create(3N)
-
-
svc_fds(3N)
- See rpc_soc(3N)
-
-
svc_fdset(3N)
- See rpc_svc_calls(3N)
-
-
svc_freeargs(3N)
- See rpc_svc_calls(3N)
-
-
svc_getargs(3N)
- See rpc_svc_calls(3N)
-
-
svc_getcaller(3N)
- See rpc_soc(3N)
-
-
svc_getreq(3N)
- See rpc_soc(3N)
-
-
svc_getreq_common(3N)
- See rpc_svc_calls(3N)
-
-
svc_getreq_poll(3N)
- See rpc_svc_calls(3N)
-
-
svc_getreqset(3N)
- See rpc_svc_calls(3N)
-
-
svc_getrpccaller(3N)
- See rpc_svc_calls(3N)
-
-
svc_kerb_reg (3N)
- See kerberos_rpc(3N)
-
-
svc_max_pollfd(3N)
- See rpc_svc_calls(3N)
-
-
svc_pollfd(3N)
- See rpc_svc_calls(3N)
-
-
svcraw_create(3N)
- See rpc_soc(3N)
-
-
svc_raw_create(3N)
- See rpc_svc_create(3N)
-
-
svc_reg(3N)
- See rpc_svc_reg(3N)
-
-
svc_register(3N)
- See rpc_soc(3N)
-
-
svc_run(3N)
- See rpc_svc_calls(3N)
-
-
svc_sendreply(3N)
- See rpc_svc_calls(3N)
-
-
svctcp_create(3N)
- See rpc_soc(3N)
-
-
svc_tli_create(3N)
- See rpc_svc_create(3N)
-
-
svc_tp_create(3N)
- See rpc_svc_create(3N)
-
-
svcudp_bufcreate(3N)
- See rpc_soc(3N)
-
-
svcudp_create(3N)
- See rpc_soc(3N)
-
-
svc_unreg(3N)
- See rpc_svc_reg(3N)
-
-
svc_unregister(3N)
- See rpc_soc(3N)
-
-
svc_vc_create(3N)
- See rpc_svc_create(3N)
-
-
swab(3C)
- swap bytes
-
-
swapcontext(3C)
- See makecontext(3C)
-
-
sync_instruction_memory(3C)
- make modified instructions executable
-
-
syncok(3X)
- See curs_window(3X)
-
-
syncok(3XC)
- synchronize window with its parents or
- children
-
-
syscall(3B)
- indirect system call
-
-
sysconf(3C)
- get configurable system variables
-
-
syslog(3)
- control system log
-
-
sysmem(3)
- return physical memory information
-
-
sys_siglist(3B)
- See psignal(3B)
-
-
system(3S)
- issue a shell command
-
-
t_accept(3N)
- accept a connection request
-
-
taddr2uaddr(3N)
- See netdir(3N)
-
-
t_alloc(3N)
- allocate a library structure
-
-
tan(3M)
- tangent function
-
-
tanh(3M)
- hyperbolic tangent function
-
-
t_bind(3N)
- bind an address to a transport endpoint
-
-
tcdrain(3)
- wait for transmission of output
-
-
tcflow(3)
- suspend or restart the transmission or
- reception of data
-
-
tcflush(3)
- flush non-transmitted output data, non-
- read input data or both
-
-
tcgetattr(3)
- get the parameters associated with the
- terminal
-
-
tcgetpgrp(3)
- get foreground process group ID
-
-
tcgetsid(3)
- get process group ID for session leader
- for controlling terminal
-
-
t_close(3N)
- close a transport endpoint
-
-
t_connect(3N)
- establish a connection with another tran-
- sport user
-
-
tcsendbreak(3)
- send a ``break'' for a specific duration
-
-
tcsetattr(3)
- set the parameters associated with the ter-
- minal
-
-
tcsetpgrp(3)
- set foreground process group ID
-
-
tcsetpgrp(3C)
- set foreground process group ID of termi-
- nal
-
-
tdelete(3C)
- See tsearch(3C)
-
-
td_event_addset(3T)
- See td_ta_event_addr(3T)
-
-
td_event_delset(3T)
- See td_ta_event_addr(3T)
-
-
td_event_emptyset(3T)
- See td_ta_event_addr(3T)
-
-
td_event_fillset(3T)
- See td_ta_event_addr(3T)
-
-
td_eventisempty(3T)
- See td_ta_event_addr(3T)
-
-
td_eventismember(3T)
- See td_ta_event_addr(3T)
-
-
td_init(3T)
- performs initialization for libthread_db
- library of interfaces
-
-
td_log(3T)
- placeholder for future logging functional-
- ity
-
-
td_sync_get_info(3T)
- operations on a synchronization object in
- libthread_db
-
-
td_sync_setstate(3T)
- See td_sync_get_info(3T)
-
-
td_sync_waiters(3T)
- See td_sync_get_info(3T)
-
-
td_ta_clear_event(3T)
- See td_ta_event_addr(3T)
-
-
td_ta_delete(3T)
- See td_ta_new(3T)
-
-
td_ta_enable_stats(3T)
- collect target process statistics for
- libthread_db
-
-
td_ta_event_addr(3T)
- thread events in libthread_db
-
-
td_ta_event_getmsg(3T)
- See td_ta_event_addr(3T)
-
-
td_ta_get_nthreads(3T)
- gets the total number of threads in a pro-
- cess for libthread_db
-
-
td_ta_get_ph(3T)
- See td_ta_new(3T)
-
-
td_ta_get_stats(3T)
- See td_ta_enable_stats(3T)
-
-
td_ta_map_addr2sync(3T)
- get a synchronization object handle from
- a synchronization object's address
-
-
td_ta_map_id2thr(3T)
- convert a thread id or LWP id to a thread
- handle
-
-
td_ta_map_lwp2thr(3T)
- See td_ta_map_id2thr(3T)
-
-
td_ta_new(3T)
- allocate and deallocate process handles
- for libthread_db
-
-
td_ta_reset_stats(3T)
- See td_ta_enable_stats(3T)
-
-
td_ta_setconcurrency(3T)
- set concurrency level for target process
-
-
td_ta_set_event(3T)
- See td_ta_event_addr(3T)
-
-
td_ta_sync_iter(3T)
- iterator functions on process handles
- from libthread_db library of interfaces
-
-
td_ta_thr_iter(3T)
- See td_ta_sync_iter(3T)
-
-
td_ta_tsd_iter(3T)
- See td_ta_sync_iter(3T)
-
-
td_thr_clear_event(3T)
- See td_ta_event_addr(3T)
-
-
td_thr_dbresume(3T)
- See td_thr_dbsuspend(3T)
-
-
td_thr_dbsuspend(3T)
- suspend and resume threads in
- libthread_db
-
-
td_thr_event_enable(3T)
- See td_ta_event_addr(3T)
-
-
td_thr_event_getmsg(3T)
- See td_ta_event_addr(3T)
-
-
td_thr_getfpregs(3T)
- See td_thr_getgregs(3T)
-
-
td_thr_getgregs(3T)
- reading and writing thread registers in
- libthread_db
-
-
td_thr_get_info(3T)
- get thread information in libthread_db
- library of interfaces
-
-
td_thr_getxregs(3T)
- See td_thr_getgregs(3T)
-
-
td_thr_getxregsize(3T)
- See td_thr_getgregs(3T)
-
-
td_thr_lockowner(3T)
- iterate over the set of locks owned by a
- thread
-
-
td_thr_set_event(3T)
- See td_ta_event_addr(3T)
-
-
td_thr_setfpregs(3T)
- See td_thr_getgregs(3T)
-
-
td_thr_setgregs(3T)
- See td_thr_getgregs(3T)
-
-
td_thr_setprio(3T)
- set the priority of a thread
-
-
td_thr_setsigpending(3T)
- manage thread signals for libthread_db
-
-
td_thr_setxregs(3T)
- See td_thr_getgregs(3T)
-
-
td_thr_sigsetmask(3T)
- See td_thr_setsigpending(3T)
-
-
td_thr_sleepinfo(3T)
- return the synchronization handle for the
- object on which a thread is blocked
-
-
td_thr_tsd(3T)
- get a thread's thread-specific data for
- libthread_db library of interfaces
-
-
td_thr_validate(3T)
- test a thread handle for validity
-
-
tell(3C)
- return a file offset for a file descriptor
-
-
telldir(3C)
- current location of a named directory
- stream
-
-
tempnam(3S)
- See tmpnam(3S)
-
-
termattrs(3X)
- See curs_termattrs(3X)
-
-
termattrs(3XC)
- return the video attributes supported by
- the terminal
-
-
termios(3)
- general terminal interface
-
-
termname(3X)
- See curs_termattrs(3X)
-
-
termname(3XC)
- return the value of the environmental
- variable TERM
-
-
t_error(3N)
- produce error message
-
-
textdomain(3C)
- See gettext(3C)
-
-
tfind(3C)
- See tsearch(3C)
-
-
t_free(3N)
- free a library structure
-
-
tgetent(3X)
- See curs_termcap(3X)
-
-
tgetent(3XC)
- emulate the termcap database
-
-
tgetflag(3X)
- See curs_termcap(3X)
-
-
tgetflag(3XC)
- See tgetent(3XC)
-
-
t_getinfo(3N)
- get protocol-specific service information
-
-
tgetnum(3X)
- See curs_termcap(3X)
-
-
tgetnum(3XC)
- See tgetent(3XC)
-
-
t_getprotaddr(3N)
- get the protocol addresses
-
-
t_getstate(3N)
- get the current state
-
-
tgetstr(3X)
- See curs_termcap(3X)
-
-
tgetstr(3XC)
- See tgetent(3XC)
-
-
tgoto(3X)
- See curs_termcap(3X)
-
-
tgoto(3XC)
- See tgetent(3XC)
-
-
thr_continue(3T)
- See thr_suspend(3T)
-
-
thr_create(3T)
- See pthread_create(3T)
-
-
threads(3T)
- thread libraries: libpthread and libthread
-
-
thr_exit(3T)
- See pthread_exit(3T)
-
-
thr_getconcurrency(3T)
- See thr_setconcurrency(3T)
-
-
thr_getprio(3T)
- See pthread_setschedparam(3T)
-
-
thr_getspecific(3T)
- See pthread_key_create(3T)
-
-
thr_join(3T)
- See pthread_join(3T)
-
-
thr_keycreate(3T)
- See pthread_key_create(3T)
-
-
thr_kill(3T)
- See pthread_kill(3T)
-
-
thr_main(3T)
- identify the main thread
-
-
thr_min_stack(3T)
- returns the minimum-allowable size for a
- thread's stack
-
-
thr_self(3T)
- See pthread_self(3T)
-
-
thr_setconcurrency(3T)
- get/set thread concurrency level
-
-
thr_setprio(3T)
- See pthread_setschedparam(3T)
-
-
thr_setspecific(3T)
- See pthread_key_create(3T)
-
-
thr_sigsetmask(3T)
- See pthread_sigmask(3T)
-
-
thr_stksegment(3T)
- get thread stack bottom and stack size
-
-
thr_suspend(3T)
- suspend or continue thread execution
-
-
thr_yield(3T)
- thread yield to another thread
-
-
tigetflag(3X)
- See curs_terminfo(3X)
-
-
tigetflag(3XC)
- return the value of a terminfo capability
-
-
tigetnum(3X)
- See curs_terminfo(3X)
-
-
tigetnum(3XC)
- See tigetflag(3XC)
-
-
tigetstr(3X)
- See curs_terminfo(3X)
-
-
tigetstr(3XC)
- See tigetflag(3XC)
-
-
timeout(3X)
- See curs_inopts(3X)
-
-
timeout(3XC)
- See notimeout(3XC)
-
-
timer_create(3R)
- create a timer
-
-
timer_delete(3R)
- delete a per-LWP timer
-
-
timer_getoverrun(3R)
- See timer_settime(3R)
-
-
timer_gettime(3R)
- See timer_settime(3R)
-
-
timer_settime(3R)
- high-resolution timer operations
-
-
times(3B)
- get process times
-
-
t_listen(3N)
- listen for a connection indication
-
-
t_look(3N)
- look at the current event on a transport
- endpoint
-
-
tmpfile(3S)
- create a temporary file
-
-
tmpnam(3S)
- create a name for a temporary file
-
-
tmpnam_r(3S)
- See tmpnam(3S)
-
-
tnfctl_buffer_alloc(3X)
- allocate or deallocate a buffer for trace
- data
-
-
tnfctl_buffer_dealloc(3X)
- See tnfctl_buffer_alloc(3X)
-
-
tnfctl_check_libs(3X)
- See tnfctl_indirect_open(3X)
-
-
tnfctl_close(3X)
- close a tnfctl handle
-
-
tnfctl_continue(3X)
- See tnfctl_pid_open(3X)
-
-
tnfctl_exec_open(3X)
- See tnfctl_pid_open(3X)
-
-
tnfctl_filter_list_add(3X)
- See tnfctl_trace_state_set(3X)
-
-
tnfctl_filter_list_delete(3X)
- See tnfctl_trace_state_set(3X)
-
-
tnfctl_filter_list_get(3X)
- See tnfctl_trace_state_set(3X)
-
-
tnfctl_filter_state_set(3X)
- See tnfctl_trace_state_set(3X)
-
-
tnfctl_indirect_open(3X)
- control probes of another process where
- caller provides /proc functionality
-
-
tnfctl_internal_open(3X)
- create handle for internal process probe
- control
-
-
tnfctl_kernel_open(3X)
- create handle for kernel probe control
-
-
tnfctl_pid_open(3X)
- interfaces for direct probe and process
- control for another process
-
-
tnfctl_probe_apply(3X)
- iterate over probes
-
-
tnfctl_probe_apply_ids(3X)
- See tnfctl_probe_apply(3X)
-
-
tnfctl_probe_connect(3X)
- See tnfctl_probe_state_get(3X)
-
-
tnfctl_probe_disable(3X)
- See tnfctl_probe_state_get(3X)
-
-
tnfctl_probe_disconnect_all(3X)
- See tnfctl_probe_state_get(3X)
-
-
tnfctl_probe_enable(3X)
- See tnfctl_probe_state_get(3X)
-
-
tnfctl_probe_state_get(3X)
- interfaces to query and to change the state
- of a probe
-
-
tnfctl_probe_trace(3X)
- See tnfctl_probe_state_get(3X)
-
-
tnfctl_probe_untrace(3X)
- See tnfctl_probe_state_get(3X)
-
-
tnfctl_register_funcs(3X)
- register callbacks for probe creation and
- destruction
-
-
tnfctl_strerror(3X)
- map a tnfctl error code to a string
-
-
tnfctl_trace_attrs_get(3X)
- get the trace attributes from a tnfctl han-
- dle
-
-
tnfctl_trace_state_set(3X)
- control kernel tracing and process filter-
- ing
-
-
TNF_DEBUG(3X)
- See TNF_PROBE (3X)
-
-
TNF_DECLARE_RECORD(3X)
- TNF type extension interface for probes
-
-
TNF_DEFINE_RECORD_1(3X)
- See TNF_DECLARE_RECORD(3X)
-
-
TNF_DEFINE_RECORD_2(3X)
- See TNF_DECLARE_RECORD(3X)
-
-
TNF_DEFINE_RECORD_3(3X)
- See TNF_DECLARE_RECORD(3X)
-
-
TNF_DEFINE_RECORD_4(3X)
- See TNF_DECLARE_RECORD(3X)
-
-
TNF_DEFINE_RECORD_5(3X)
- See TNF_DECLARE_RECORD(3X)
-
-
TNF_PROBE_0 (3X)
- See TNF_PROBE (3X)
-
-
TNF_PROBE_0_DEBUG(3X)
- See TNF_PROBE (3X)
-
-
TNF_PROBE_1 (3X)
- See TNF_PROBE (3X)
-
-
TNF_PROBE_1_DEBUG(3X)
- See TNF_PROBE (3X)
-
-
TNF_PROBE_2 (3X)
- See TNF_PROBE (3X)
-
-
TNF_PROBE_2_DEBUG(3X)
- See TNF_PROBE (3X)
-
-
TNF_PROBE_3 (3X)
- See TNF_PROBE (3X)
-
-
TNF_PROBE_3_DEBUG(3X)
- See TNF_PROBE (3X)
-
-
TNF_PROBE_4 (3X)
- See TNF_PROBE (3X)
-
-
TNF_PROBE_4_DEBUG(3X)
- See TNF_PROBE (3X)
-
-
TNF_PROBE_5 (3X)
- See TNF_PROBE (3X)
-
-
TNF_PROBE_5_DEBUG(3X)
- See TNF_PROBE (3X)
-
-
tnf_process_disable(3X)
- probe control internal interface
-
-
tnf_process_enable(3X)
- See tnf_process_disable(3X)
-
-
tnf_thread_disable(3X)
- See tnf_process_disable(3X)
-
-
tnf_thread_enable(3X)
- See tnf_process_disable(3X)
-
-
toascii(3C)
- translate integer to a 7-bit ASCII character
-
-
_tolower (3C)
- transliterate upper-case characters to
- lower-case
-
-
tolower (3C)
- transliterate upper-case characters to
- lower-case
-
-
t_open(3N)
- establish a transport endpoint
-
-
top_panel(3X)
- See panel_top(3X)
-
-
top_row(3X)
- See menu_item_current(3X)
-
-
t_optmgmt (3N)
- manage options for a transport endpoint
-
-
touchline(3X)
- See curs_touch(3X)
-
-
touchline(3XC)
- See is_linetouched(3XC)
-
-
touchlock(3X)
- See maillock(3X)
-
-
touchwin(3X)
- See curs_touch(3X)
-
-
touchwin(3XC)
- See is_linetouched(3XC)
-
-
_toupper(3C)
- transliterate lower-case characters to
- upper-case
-
-
toupper(3C)
- transliterate lower-case characters to
- upper-case
-
-
towctrans(3C)
- wide-character mapping
-
-
towlower(3C)
- transliterate upper-case wide-character
- code to lower-case
-
-
towupper(3C)
- transliterate lower-case wide-character
- code to upper-case
-
-
tparm(3X)
- See curs_terminfo(3X)
-
-
tparm(3XC)
- See tigetflag(3XC)
-
-
tputs(3X)
- See curs_termcap(3X)
-
-
tputs(3X)
- See curs_terminfo(3X)
-
-
tputs(3XC)
- See putp(3XC)
-
-
tracing(3X)
- overview of tnf tracing system
-
-
t_rcv(3N)
- receive data or expedited data sent over a
- connection
-
-
t_rcvconnect(3N)
- receive the confirmation from a connec-
- tion request
-
-
t_rcvdis(3N)
- retrieve information from disconnect
-
-
t_rcvrel(3N)
- acknowledge receipt of an orderly release
- indication
-
-
t_rcvudata(3N)
- receive a data unit
-
-
t_rcvuderr(3N)
- receive a unit data error indication
-
-
truncate(3C)
- set a file to a specified length
-
-
tsearch(3C)
- manage binary search trees
-
-
t_snd(3N)
- send data or expedited data over a con-
- nection
-
-
t_snddis(3N)
- send user-initiated disconnection request
-
-
t_sndrel(3N)
- initiate an orderly release
-
-
t_sndudata(3N)
- send a data unit
-
-
t_strerror(3N)
- get error message string
-
-
t_sync(3N)
- synchronize transport library
-
-
ttyname(3C)
- find pathname of a terminal
-
-
ttyname_r(3C)
- See ttyname(3C)
-
-
ttyslot(3C)
- find the slot in the utmp file of the current
- user
-
-
t_unbind(3N)
- disable a transport endpoint
-
-
twalk(3C)
- See tsearch(3C)
-
-
typeahead(3X)
- See curs_inopts(3X)
-
-
typeahead(3XC)
- check for type-ahead characters
-
-
tzset(3C)
- See ctime(3C)
-
-
tzsetwall(3C)
- See ctime(3C)
-
-
uaddr2taddr(3N)
- See netdir(3N)
-
-
ualarm(3C)
- schedule signal after interval in
- microseconds
-
-
ulckpwdf(3C)
- See lckpwdf(3C)
-
-
ulltostr(3C)
- See strtol(3C)
-
-
unctrl(3X)
- See curs_util(3X)
-
-
unctrl(3XC)
- convert character to printable form
-
-
ungetc(3S)
- push character back onto input stream
-
-
ungetch(3X)
- See curs_getch(3X)
-
-
ungetch(3XC)
- push character back onto the input queue
-
-
ungetwc(3S)
- push wide-character code back into input
- stream
-
-
ungetwch(3X)
- See curs_getwch(3X)
-
-
unget_wch(3XC)
- See ungetch(3XC)
-
-
unlockpt(3C)
- unlock a pseudo-terminal master/slave
- pair
-
-
unordered(3C)
- See isnan(3C)
-
-
unpost_form(3X)
- See form_post(3X)
-
-
unpost_menu(3X)
- See menu_post(3X)
-
-
untouchwin(3X)
- See curs_touch(3X)
-
-
untouchwin(3XC)
- See is_linetouched(3XC)
-
-
update_panels(3X)
- See panel_update(3X)
-
-
updwtmp(3C)
- See getutxent(3C)
-
-
updwtmpx(3C)
- See getutxent(3C)
-
-
use_env(3X)
- See curs_util(3X)
-
-
use_env(3XC)
- set values of lines and columns
-
-
user2netname(3N)
- See secure_rpc(3N)
-
-
usleep(3C)
- suspend execution for interval in
- microseconds
-
-
utmpname(3C)
- See getutent(3C)
-
-
utmpxname(3C)
- See getutxent(3C)
-
-
valloc(3C)
- See malloc(3C)
-
-
valloc(3X)
- See watchmalloc(3X)
-
-
vfprintf(3B)
- See printf(3B)
-
-
vfprintf(3S)
- See vprintf(3S)
-
-
vidattr(3X)
- See curs_terminfo(3X)
-
-
vidattr(3XC)
- display string with video attributes
-
-
vid_attr(3XC)
- See vidattr(3XC)
-
-
vidputs(3X)
- See curs_terminfo(3X)
-
-
vid_puts(3XC)
- See vidattr(3XC)
-
-
vidputs(3XC)
- See vidattr(3XC)
-
-
vlfmt (3C)
- display error message in standard format
- and pass to logging and monitoring ser-
- vices
-
-
vline(3XC)
- See hline(3XC)
-
-
vline_set(3XC)
- See hline_set(3XC)
-
-
volmgt_acquire(3X)
- reserve removable media device
-
-
volmgt_check(3X)
- have Volume Management check for
- media
-
-
volmgt_feature_enabled(3X)
- check whether specific Volume Manage-
- ment features are enabled
-
-
volmgt_inuse(3X)
- check whether or not Volume Manage-
- ment is managing a pathname
-
-
volmgt_release(3X)
- release removable media device reserva-
- tion
-
-
volmgt_root(3X)
- return the Volume Management root
- directory
-
-
volmgt_running(3X)
- return whether or not Volume Manage-
- ment is running
| |