Symbol: pool_value_get_type
usr/src/cmd/pools/poold/com/sun/solaris/service/pools/Value.java
283
return (PoolInternal.pool_value_get_type(_this));
usr/src/cmd/pools/poold/com/sun/solaris/service/pools/Value.java
293
int type = PoolInternal.pool_value_get_type(_this);
usr/src/cmd/pools/poold/libjpool/jpool.c
1393
return ((jint)pool_value_get_type((pool_value_t *)(uintptr_t)jvalue));
usr/src/cmd/pools/poold/libjpool/jpool.c
1709
switch (pool_value_get_type(pv)) {
usr/src/lib/libpool/common/pool.c
271
int type = pool_value_get_type(pval);
usr/src/lib/libpool/common/pool.c
876
return (pool_value_get_type(val));
usr/src/lib/libpool/common/pool.h
244
extern pool_value_class_t pool_value_get_type(const pool_value_t *);
usr/src/lib/libpool/common/pool_internal.c
469
if (pool_value_get_type(pval) == POC_STRING)
usr/src/lib/libpool/common/pool_internal.c
484
if (pool_value_get_type(pval) == POC_BOOL)
usr/src/lib/libpool/common/pool_internal.c
499
if (pool_value_get_type(pval) == POC_UINT)
usr/src/lib/libpool/common/pool_internal.c
531
if (pool_value_get_type(pval) != POC_BOOL) {
usr/src/lib/libpool/common/pool_kernel.c
2323
return (pool_value_get_type(val));
usr/src/lib/libpool/common/pool_kernel.c
2385
return (pool_value_get_type(val));
usr/src/lib/libpool/common/pool_kernel.c
3133
if (pool_value_get_type(&proprm->pru_oldval) != POC_INVAL) {
usr/src/lib/libpool/common/pool_kernel.c
3499
if ((type = pool_value_get_type(pv)) == POC_INVAL) {
usr/src/lib/libpool/common/pool_value.c
364
type = pool_value_get_type(pv1);
usr/src/lib/libpool/common/pool_value.c
365
if (type != pool_value_get_type(pv2))
usr/src/lib/libpool/common/pool_xml.c
2335
switch ((pvc = pool_value_get_type(props[i]))) {