Symbol: di_path_prop
usr/src/cmd/picl/plugins/common/devtree/picldevtree.c
1143
add_di_path_prop(picl_nodehdl_t nodeh, di_path_prop_t di_path_prop)
usr/src/cmd/picl/plugins/common/devtree/picldevtree.c
1153
di_ptype = di_path_prop_type(di_path_prop);
usr/src/cmd/picl/plugins/common/devtree/picldevtree.c
1154
di_val = di_path_prop_name(di_path_prop);
usr/src/cmd/picl/plugins/common/devtree/picldevtree.c
1162
len = di_path_prop_ints(di_path_prop, &idata);
usr/src/cmd/picl/plugins/common/devtree/picldevtree.c
1169
len = di_path_prop_strings(di_path_prop, &sdata);
usr/src/cmd/picl/plugins/common/devtree/picldevtree.c
1175
len = di_path_prop_bytes(di_path_prop, &bdata);
usr/src/cmd/picl/plugins/common/devtree/picldevtree.c
1184
len = di_path_prop_strings(di_path_prop, &sdata);
usr/src/cmd/picl/plugins/common/devtree/picldevtree.c
1190
len = di_path_prop_ints(di_path_prop, &idata);
usr/src/cmd/picl/plugins/common/devtree/picldevtree.c
1196
len = di_path_prop_bytes(di_path_prop, &bdata);
usr/src/cmd/picl/plugins/common/devtree/picldevtree.c
1221
di_path_prop_t di_path_prop;
usr/src/cmd/picl/plugins/common/devtree/picldevtree.c
1260
for (di_path_prop = di_path_prop_next(pi, DI_PROP_NIL);
usr/src/cmd/picl/plugins/common/devtree/picldevtree.c
1261
di_path_prop != DI_PROP_NIL;
usr/src/cmd/picl/plugins/common/devtree/picldevtree.c
1262
di_path_prop = di_path_prop_next(pi, di_path_prop)) {
usr/src/cmd/picl/plugins/common/devtree/picldevtree.c
1263
add_di_path_prop(nodeh, di_path_prop);
usr/src/lib/libdevinfo/libdevinfo.h
117
typedef struct di_path_prop *di_path_prop_t; /* path property */
usr/src/uts/common/io/devinfo.c
2755
struct di_path_prop *me;
usr/src/uts/common/io/devinfo.c
2768
off = di_checkmem(st, off, sizeof (struct di_path_prop));
usr/src/uts/common/io/devinfo.c
2774
off += sizeof (struct di_path_prop);
usr/src/uts/common/io/devinfo.c
2842
off = di_checkmem(st, off, sizeof (struct di_path_prop));
usr/src/uts/common/sys/devinfo_impl.h
118
#define DI_PATHPROP(addr) ((struct di_path_prop *)((void *)(addr)))