/titanic_44/usr/src/lib/libpool/common/ |
H A D | pool.h | 146 typedef struct pool pool_t; typedef 175 extern pool_t *pool_get_pool(const pool_conf_t *, const char *); 176 extern pool_t **pool_query_pools(const pool_conf_t *, uint_t *, 201 extern pool_t *pool_create(pool_conf_t *, const char *); 202 extern int pool_destroy(pool_conf_t *, pool_t *); 203 extern int pool_associate(pool_conf_t *, pool_t *, const pool_resource_t *); 204 extern int pool_dissociate(pool_conf_t *, pool_t *, const pool_resource_t *); 205 extern char *pool_info(const pool_conf_t *, const pool_t *, int); 207 const pool_t *, uint_t *, pool_value_t **); 233 extern pool_elem_t *pool_to_elem(const pool_conf_t *, const pool_t *); [all …]
|
H A D | pool_impl.h | 132 int (*pp_associate)(pool_t *, const pool_resource_t *); 133 int (*pp_dissociate)(pool_t *, const pool_resource_t *); 243 extern pool_t *pool_elem_pool(const pool_elem_t *);
|
H A D | pool_xml_impl.h | 96 int (*pp_associate)(pool_t *, const pool_resource_t *); 97 int (*pp_dissociate)(pool_t *, const pool_resource_t *);
|
H A D | pool_kernel_impl.h | 98 int (*pp_associate)(pool_t *, const pool_resource_t *); 99 int (*pp_dissociate)(pool_t *, const pool_resource_t *);
|
H A D | pool.c | 417 pool_t **ps; in pool_base_info() 501 pool_info(const pool_conf_t *conf, const pool_t *pool, int deep) in pool_info() 1163 pool_t * 1817 pool_t * 1821 pool_t **rs; in pool_get_pool() 1822 pool_t *ret; in pool_get_pool() 1857 pool_t ** 1862 pool_t **result = NULL; in pool_query_pools() 1877 if ((result = malloc(sizeof (pool_t *) * (*size + 1))) == NULL) { in pool_query_pools() 1882 (void) memset(result, 0, sizeof (pool_t *) * (*size + 1)); in pool_query_pools() [all …]
|
H A D | pool_commit.c | 131 static int set_importance_cb(pool_conf_t *, pool_t *, void *); 132 static int unset_importance_cb(pool_conf_t *, pool_t *, void *); 149 pool_t *pool; in commit_create() 245 pool_t *pool; in commit_delete() 526 pool_t *newpool; in process_elem_gt() 669 pool_t **pl; in get_elem_list() 1153 set_importance_cb(pool_conf_t *conf, pool_t *pool, void *unused) in set_importance_cb() 1195 unset_importance_cb(pool_conf_t *conf, pool_t *pool, void *unused) in unset_importance_cb()
|
H A D | pool_kernel.c | 265 static int pool_knl_pool_associate(pool_t *, const pool_resource_t *); 266 static int pool_knl_pool_dissociate(pool_t *, const pool_resource_t *); 926 pool_t **ps; in pool_knl_export() 1383 destroy_pool_cb(pool_conf_t *conf, pool_t *pool, void *unused) in destroy_pool_cb() 1439 pool_t **pools; in pool_knl_get_binding() 1491 pool_t *pool; in pool_knl_set_binding() 1526 pool_t **pools; in pool_knl_get_resource_binding() 1986 pool_knl_pool_associate(pool_t *pool, const pool_resource_t *resource) in pool_knl_pool_associate() 2040 pool_knl_pool_dissociate(pool_t *pool, const pool_resource_t *resource) in pool_knl_pool_dissociate()
|
H A D | pool_xml.c | 157 static int pool_assoc_default_resource_type(pool_t *, 216 static int pool_xml_pool_associate(pool_t *, const pool_resource_t *); 217 static int pool_xml_pool_dissociate(pool_t *, const pool_resource_t *); 1412 pool_assoc_default_resource_type(pool_t *pool, pool_resource_elem_class_t type) in pool_assoc_default_resource_type() 1965 pool_xml_pool_associate(pool_t *pool, const pool_resource_t *pr) in pool_xml_pool_associate() 1984 pool_xml_pool_dissociate(pool_t *pool, const pool_resource_t *pr) in pool_xml_pool_dissociate()
|
H A D | pool_internal.c | 429 pool_t *pool; in elem_set_name() 1445 pool_t * 1452 return ((pool_t *)pe); in pool_elem_pool()
|
/titanic_44/usr/src/uts/common/sys/ |
H A D | pool.h | 57 } pool_t; typedef 72 extern pool_t *pool_default; /* default pool pointer */ 80 extern pool_t *pool_lookup_pool_by_id(poolid_t); 81 extern pool_t *pool_lookup_pool_by_name(char *); 82 extern pool_t *pool_lookup_pool_by_pset(int); 95 extern id_t pool_get_class(pool_t *); 96 extern int pool_do_bind(pool_t *, idtype_t, id_t, int); 104 extern void pool_get_name(pool_t *, char **);
|
/titanic_44/usr/src/uts/common/os/ |
H A D | pool.c | 140 pool_t *pool_default; /* default pool which always exists */ 174 pool_default = kmem_zalloc(sizeof (pool_t), KM_SLEEP); in pool_init() 176 list_create(&pool_list, sizeof (pool_t), offsetof(pool_t, pool_link)); in pool_init() 352 pool_t * 355 pool_t *pool = pool_default; in pool_lookup_pool_by_name() 368 pool_t * 371 pool_t *pool = pool_default; in pool_lookup_pool_by_id() 382 pool_t * 385 pool_t *pool = pool_default; in pool_lookup_pool_by_pset() 404 pool_t *pool; in pool_pool_create() [all …]
|
H A D | pool_pset.c | 469 pool_t *pool; in pool_pset_assoc_zone_cb() 489 pool_t *pool; in pool_pset_assoc() 600 pset_bind_start(proc_t **procs, pool_t *pool) in pset_bind_start() 679 pset_bind_abort(proc_t **procs, pool_t *pool) in pset_bind_abort()
|
H A D | zone.c | 3182 pool_t * 3195 zone_pool_set(zone_t *zone, pool_t *pool) in zone_pool_set() 5334 pool_t *pool; in zone_getattr() 5677 pool_t *oldpool, *newpool; in zone_enter()
|
/titanic_44/usr/src/cmd/pools/poold/libjpool/ |
H A D | jpool.c | 565 pool_t *result; in Java_com_sun_solaris_service_pools_PoolInternal_pool_1get_1pool() 569 result = (pool_t *)pool_get_pool((pool_conf_t *)(uintptr_t)jconf, name); in Java_com_sun_solaris_service_pools_PoolInternal_pool_1get_1pool() 584 pool_t **result; in Java_com_sun_solaris_service_pools_PoolInternal_pool_1query_1pools() 1038 pool_t *result; in Java_com_sun_solaris_service_pools_PoolInternal_pool_1create() 1057 (pool_t *)(uintptr_t)jpool)); in Java_com_sun_solaris_service_pools_PoolInternal_pool_1destroy() 1068 (pool_t *)(uintptr_t)jpool, in Java_com_sun_solaris_service_pools_PoolInternal_pool_1associate() 1080 (pool_t *)(uintptr_t)jpool, in Java_com_sun_solaris_service_pools_PoolInternal_pool_1dissociate() 1095 (pool_t *)(uintptr_t)jpool, (int)jflags); in Java_com_sun_solaris_service_pools_PoolInternal_pool_1info() 1162 (pool_t *)(uintptr_t)jpool, &nelem, props); in Java_com_sun_solaris_service_pools_PoolInternal_pool_1query_1pool_1resources() 1297 (pool_t *)(uintptr_t)jpool)); in Java_com_sun_solaris_service_pools_PoolInternal_pool_1to_1elem() [all …]
|
/titanic_44/usr/src/cmd/pools/poolcfg/ |
H A D | poolcfg.y | 145 static void assoc_list_walk(cmd_t *, pool_t *); 814 pool_t *pool; in parser_pool_info() 898 pool_t *pool; in parser_pool_create() 964 pool_t *pool; in parser_pool_rename() 1004 pool_t *pool; in parser_pool_destroy() 1057 pool_t *pool; in parser_pool_modify() 1141 pool_t *pool; in parser_pool_associate() 1397 assoc_list_walk(cmd_t *cmd, pool_t *pool) in assoc_list_walk()
|
/titanic_44/usr/src/cmd/pools/poolstat/ |
H A D | poolstat.c | 785 pool_t *pool; in get_resources() 906 pool_t **pools = NULL; in prt_pool_stats() 931 pools = ZALLOC(sizeof (pool_t *) * (i + 1)); in prt_pool_stats() 934 pool_t **pool; in prt_pool_stats()
|
/titanic_44/usr/src/lib/libproject/common/ |
H A D | setproject.c | 468 pool_t **pools; in bind_to_pool()
|
/titanic_44/usr/src/lib/libzonecfg/common/ |
H A D | libzonecfg.c | 4024 create_tmp_pset(char *pool_err, int err_size, pool_conf_t *pconf, pool_t *pool, in create_tmp_pset() 4068 pool_t *pool; in create_tmp_pool() 4143 get_running_tmp_pset(pool_conf_t *pconf, pool_t *pool, pool_resource_t *pset, in get_running_tmp_pset() 4201 pool_t *pool; in verify_del_tmp_pool() 4272 pool_t *pool; in zonecfg_destroy_tmp_pool() 4411 pool_t *pool; in zonecfg_bind_pool() 4574 pool_t *pool; in get_pool_sched_class()
|
/titanic_44/usr/src/uts/common/io/mac/ |
H A D | mac.c | 7673 pool_t *pool; in mac_pset_find() 7860 pool_t *pool; in mac_pool_event_cb()
|
/titanic_44/usr/src/cmd/zoneadm/ |
H A D | zoneadm.c | 2136 pool_t *pool; in verify_pool()
|
/titanic_44/usr/src/cmd/zonestat/zonestatd/ |
H A D | zonestatd.c | 2044 pool_t **pools = NULL; in zsd_get_zone_pool_pset()
|
/titanic_44/usr/src/lib/libdladm/common/ |
H A D | linkprop.c | 2018 pool_t *pool; in check_pool()
|