Searched refs:PoolInternal (Results 1 – 11 of 11) sorted by relevance
/illumos-gate/usr/src/cmd/pools/poold/com/sun/solaris/service/pools/ |
H A D | Configuration.java | 77 if (((_this = PoolInternal.pool_conf_alloc())) == 0) in Configuration() 96 PoolInternal.pool_conf_free(_this); in finalize() 127 if (PoolInternal.pool_conf_open(getConf(), location, in open() 128 perms) != PoolInternal.PO_SUCCESS) { in open() 145 PoolInternal.pool_conf_close(getConf()); in close() 158 return (PoolInternal.pool_conf_location(getConf())); in getLocation() 168 return (PoolInternal.pool_conf_status(getConf())); in status() 178 if (PoolInternal.pool_conf_remove(getConf()) != in remove() 179 PoolInternal.PO_SUCCESS) in remove() 192 if (PoolInternal.pool_conf_rollback(getConf()) != in rollback() [all …]
|
H A D | Value.java | 53 if ((_this = PoolInternal.pool_value_alloc()) == 0) in Value() 160 PoolInternal.pool_value_free(_this); in close() 192 PoolInternal.pool_value_set_name(_this, name); in setName() 202 PoolInternal.pool_value_set_int64(_this, value); in setValue() 215 PoolInternal.pool_value_set_uint64(_this, value); in setValue() 226 if (PoolInternal.pool_value_set_string(_this, value) != in setValue() 227 PoolInternal.PO_SUCCESS) in setValue() 239 PoolInternal.pool_value_set_bool(_this, (short)1); in setValue() 241 PoolInternal.pool_value_set_bool(_this, (short)0); in setValue() 251 PoolInternal.pool_value_set_double(_this, value); in setValue() [all …]
|
H A D | Pool.java | 84 if (PoolInternal.pool_associate(_conf.getConf(), getPool(), in associate() 85 res.getResource()) != PoolInternal.PO_SUCCESS) in associate() 98 if (PoolInternal.pool_dissociate(_conf.getConf(), getPool(), in dissociate() 99 res.getResource()) != PoolInternal.PO_SUCCESS) in dissociate() 116 if ((resources = PoolInternal.pool_query_pool_resources( in getResources() 118 if (PoolInternal.pool_error() == in getResources() 119 PoolInternal.POE_INVALID_SEARCH) in getResources() 141 return (PoolInternal.pool_info(_conf.getConf(), getPool(), in getInformation() 203 if ((elem = PoolInternal.pool_to_elem(_conf.getConf(), in getElem()
|
H A D | Resource.java | 93 if (PoolInternal.pool_resource_transfer(_conf.getConf(), in transfer() 95 PoolInternal.PO_SUCCESS) in transfer() 111 if (PoolInternal.pool_resource_xtransfer(_conf.getConf(), in transfer() 113 PoolInternal.PO_SUCCESS) in transfer() 130 if ((components = PoolInternal.pool_query_resource_components( in getComponents() 132 if (PoolInternal.pool_error() == in getComponents() 133 PoolInternal.POE_INVALID_SEARCH) in getComponents() 155 return (PoolInternal.pool_resource_info(_conf.getConf(), in getInformation() 219 if ((elem = PoolInternal.pool_resource_to_elem(_conf.getConf(), in getElem()
|
H A D | Element.java | 97 if (PoolInternal.pool_get_property(_conf.getConf(), getElem(), in getProperty() 98 name, value.getValue()) == PoolInternal.POC_INVAL) { in getProperty() 127 if (PoolInternal.pool_get_property(_conf.getConf(), proxy, name, in getProperty() 128 value.getValue()) == PoolInternal.POC_INVAL) { in getProperty() 150 if (PoolInternal.pool_put_property(_conf.getConf(), getElem(), in putProperty() 151 name, value.getValue()) != PoolInternal.PO_SUCCESS) in putProperty() 163 if (PoolInternal.pool_rm_property(_conf.getConf(), getElem(), in rmProperty() 164 name) != PoolInternal.PO_SUCCESS) in rmProperty()
|
H A D | PoolsException.java | 643 private final int errorCode = PoolInternal.pool_error(); 650 super(description(PoolInternal.pool_error())); in PoolsException() 655 StringBuffer sb = new StringBuffer(PoolInternal.pool_strerror( in description() 657 if (errorCode == PoolInternal.POE_SYSTEM) in description() 658 sb.append(": " + PoolInternal.pool_strerror_sys()); in description()
|
H A D | Component.java | 91 return (PoolInternal.pool_component_info(_conf.getConf(), in getInformation() 155 if ((elem = PoolInternal.pool_component_to_elem(_conf.getConf(), in getElem()
|
H A D | PoolInternal.java | 43 public class PoolInternal { class 46 PoolInternal.init(); in PoolInternal.init()
|
H A D | Makefile | 33 SOURCE = PoolInternal.java \
|
/illumos-gate/usr/src/cmd/pools/poold/com/sun/solaris/domain/pools/ |
H A D | Poold.java | 658 conf = new Configuration(PoolInternal. in Poold() 659 pool_dynamic_location(), PoolInternal.PO_RDWR); in Poold() 669 conf = new Configuration(PoolInternal. in Poold() 670 pool_dynamic_location(), PoolInternal.PO_RDONLY); in Poold()
|
H A D | SystemSolver.java | 464 PoolInternal.PO_RDWR); in solve()
|