8322 nl: misleading-indentation
[unleashed/tickless.git] / usr / src / man / man3devinfo / di_prop_lookup_bytes.3devinfo
blob1f202fce730d34d9a41e1c471561619c1504bdcd
1 '\" te
2 .\" Copyright (c) 2001, Sun Microsystems, Inc.  All Rights Reserved
3 .\" The contents of this file are subject to the terms of the Common Development and Distribution License (the "License").  You may not use this file except in compliance with the License.
4 .\" You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE or http://www.opensolaris.org/os/licensing.  See the License for the specific language governing permissions and limitations under the License.
5 .\" When distributing Covered Code, include this CDDL HEADER in each file and include the License file at usr/src/OPENSOLARIS.LICENSE.  If applicable, add the following below this CDDL HEADER, with the fields enclosed by brackets "[]" replaced with your own identifying information: Portions Copyright [yyyy] [name of copyright owner]
6 .TH DI_PROP_LOOKUP_BYTES 3DEVINFO "Mar 26, 2001"
7 .SH NAME
8 di_prop_lookup_bytes, di_prop_lookup_ints, di_prop_lookup_int64,
9 di_prop_lookup_strings \- search for a property
10 .SH SYNOPSIS
11 .LP
12 .nf
13 \fBcc\fR [ \fIflag\fR... ] \fIfile\fR... \fB-ldevinfo\fR [ \fIlibrary\fR... ]
14 #include <libdevinfo.h>
16 \fBint\fR \fBdi_prop_lookup_bytes\fR(\fBdev_t\fR \fIdev\fR, \fBdi_node_t\fR \fInode\fR,
17      \fBconst char *\fR\fIprop_name\fR, \fBuchar_t **\fR\fIprop_data\fR);
18 .fi
20 .LP
21 .nf
22 \fBint\fR \fBdi_prop_lookup_ints\fR(\fBdev_t\fR \fIdev\fR, \fBdi_node_t\fR \fInode\fR,
23      \fBconst char *\fR\fIprop_name\fR, \fBint **\fR\fIprop_data\fR);
24 .fi
26 .LP
27 .nf
28 \fBint\fR \fBdi_prop_lookup_int64\fR(\fBdev_t\fR \fIdev\fR, \fBdi_node_t\fR \fInode\fR,
29      \fBconst char *\fR\fIprop_name\fR, \fBint64_t **\fR\fIprop_data\fR);
30 .fi
32 .LP
33 .nf
34 \fBint\fR \fBdi_prop_lookup_strings\fR(\fBdev_t\fR \fIdev\fR, \fBdi_node_t\fR \fInode\fR,
35      \fBconst char *\fR\fIprop_name\fR, \fBchar **\fR\fIprop_data\fR);
36 .fi
38 .SH PARAMETERS
39 .sp
40 .ne 2
41 .na
42 \fB\fIdev\fR\fR
43 .ad
44 .RS 13n
45 \fBdev_t\fR of minor node with which the property is associated.
46 \fBDDI_DEV_T_ANY\fR is a wild card that matches all \fBdev_t\fR's, including
47 \fBDDI_DEV_T_NONE\fR.
48 .RE
50 .sp
51 .ne 2
52 .na
53 \fB\fInode\fR\fR
54 .ad
55 .RS 13n
56 Handle to the device node with which the property is associated.
57 .RE
59 .sp
60 .ne 2
61 .na
62 \fB\fIprop_data\fR\fR
63 .ad
64 .RS 13n
65 For \fBdi_prop_lookup_bytes()\fR, the address to a pointer to an array of
66 unsigned characters containing the property data.
67 .sp
68 For \fBdi_prop_lookup_ints()\fR, the address to a pointer to an array of
69 integers containing the property data.
70 .sp
71 For \fBdi_prop_lookup_int64()\fR, the address to a pointer to an array of
72 64-bit integers containing the property data.
73 .sp
74 For \fBdi_prop_lookup_strings()\fR, the address to a pointer to a buffer
75 containing a concatenation of null-terminated strings containing the property
76 data.
77 .RE
79 .sp
80 .ne 2
81 .na
82 \fB\fIprop_name\fR\fR
83 .ad
84 .RS 13n
85 Name of the property for which to search.
86 .RE
88 .SH DESCRIPTION
89 .sp
90 .LP
91 These functions return the value of a known property name type and \fBdev_t\fR
92 value. All memory allocated by these functions is managed by the library and
93 must not be freed by the caller.
94 .SH RETURN VALUES
95 .sp
96 .LP
97 If the property is found, the number of entries in \fIprop_data\fR is returned.
98 If the property is a boolean type, 0 is returned and the existence of this
99 property indicates the value is true. Otherwise, -1 is returned and \fIerrno\fR
100 is set to indicate the error.
101 .SH ERRORS
104 These functions will fail if:
106 .ne 2
108 \fB\fBEINVAL\fR\fR
110 .RS 11n
111 Invalid argument.
115 .ne 2
117 \fB\fBENOTSUP\fR\fR
119 .RS 11n
120 The snapshot contains no property information.
124 .ne 2
126 \fB\fBENXIO\fR\fR
128 .RS 11n
129 The property does not exist; try \fBdi_prom_prop_lookup_*()\fR.
132 .SH ATTRIBUTES
135 See \fBattributes\fR(5) for descriptions of the following attributes:
140 box;
141 c | c
142 l | l .
143 ATTRIBUTE TYPE  ATTRIBUTE VALUE
145 Interface Stability     Evolving
147 MT-Level        Safe
150 .SH SEE ALSO
153 \fBdi_init\fR(3DEVINFO), \fBdi_prom_prop_lookup_bytes\fR(3DEVINFO),
154 \fBlibdevinfo\fR(3LIB), \fBattributes\fR(5)
157 \fIWriting Device Drivers\fR