Device Information Library Functions
di_path_prop_bytes(3DEVINFO)
NAME
di_path_prop_bytes, di_path_prop_ints, di_path_prop_int64s,
di_path_prop_name, di_path_prop_strings, di_path_prop_type -
access path property informationSYNOPSIS
cc [ flag... ] file... -ldevinfo [ library... ]
#include
char *di_path_prop_bytes(di_path_prop_t prop);
int (di_path_prop_t prop);
int (di_path_prop_t prop, uchar_t **prop_data);
int (di_path_prop_t prop, int **prop_data);
int (di_path_prop_t prop, int64_t **prop_data);
int di_path_prop_type(di_path_prop_t prop, char **prop_data);
PARAMETERS
prop A handle to a property returned bydi_path_prop_next(3DEVINFO).
prop_data For di_path_prop_bytes(), the address of a
pointer to an unsigned character.For di_path_prop_ints(), the address of a
pointer to an integer.For di_path_prop_int64(), the address of a
pointer to a 64-bit integer.
For di_path_prop_strings(), the address of
pointer to a character.DESCRIPTION
These functions access information associated with path pro-
perty values and attributes such as the property name or data type.SunOS 5.11 Last change: 15 May 2008 1
Device Information Library Functionsdi_path_prop_bytes(3DEVINFO)
The di_path_prop_name() function returns a pointer to a
string containing the name of the property.The di_path_prop_type() function returns the type of the
path property. The type determines the appropriate interface to access property values. Possible property types are thesame as for di_prop_type(3DEVINFO), excluding
DI_PROP_TYPE_UNKNOWN and DI_PROP_UNDEFINED. Thus,
di_path_prop_type() can return one of the following con-
stants:DI_PROP_TYPE_INT Use di_path_prop_ints() to access
property data.DI_PROP_TYPE_INT64 Use di_path_prop_int64s() to access
property data.DI_PROP_TYPE_STRING Use di_path_prop_strings() to access
property data.DI_PROP_TYPE_BYTE Use di_path_prop_bytes() to access
property data.The di_path_prop_bytes() function returns the property data
as a series of unsigned characters.The di_path_prop_ints() function returns the property data
as a series of integers.The di_path_prop_int64s() function returns the property data
as a series of integers.The di_path_prop_strings() function returns the property
data as a concatenation of null-terminated strings.
RETURN VALUES
Upon successful completion, di_path_prop_bytes(),
di_path_prop_ints(), di_path_prop_int64s(), and
di_path_prop_strings() return a non-negative value, indicat-
ing the number of entries in the property value buffer. Ifthe property is found, the number of entries in prop_data is
returned. Otherwise, -1 is returned and errno is set to
SunOS 5.11 Last change: 15 May 2008 2
Device Information Library Functionsdi_path_prop_bytes(3DEVINFO)
indicate the error.For di_path_prop_bytes(), the number of entries is the
number of unsigned characters contained in the bufferpointed to by prop_data.
For di_path_prop_ints(), the number of entries is the number
of integers contained in the buffer pointed to by prop_data.
For di_path_prop_ints(), the number of entries is the number
of 64-bit integers contained in the buffer pointed to by
prop_data.
For di_path_prop_strings(), the number of entries is the
number of null-terminated strings contained in the buffer.
The strings are stored in a concatenated format in the buffer.The di_path_prop_name() function returns the name of the
property.The di_path_prop_type() function can return one of types
described in the Description.ERRORS
These functions will fail if: EINVAL One of the arguments is invalid. For example, the property type does not match the interface. ENOTSUP The snapshot contains no property information. ENXIO The path property does not exist.ATTRIBUTES
See attributes(5) for descriptions of the following attri-
butes:SunOS 5.11 Last change: 15 May 2008 3
Device Information Library Functionsdi_path_prop_bytes(3DEVINFO)
______________________________________________________________________
| ATTRIBUTE TYPE | ATTRIBUTE VALUE |
|_____________________________|_____________________________|
| Interface Stability | Committed ||_____________________________|_____________________________|
| MT-Level | Safe |
|_____________________________|_____________________________|
SEE ALSO
di_path_prop_next(3DEVINFO), di_prop_type(3DEVINFO),
libdevinfo(3LIB), attributes(5) Writing Device DriversSunOS 5.11 Last change: 15 May 2008 4
Device Information Library Functionsdi_path_prop_bytes(3DEVINFO)
SunOS 5.11 Last change: 15 May 2008 5