Searched refs:pconf (Results 1 - 4 of 4) sorted by relevance
/illumos-gate/usr/src/uts/i86pc/io/ |
H A D | ppm_plat.c | 266 ppm_db_t **dbpp, *pconf; local 286 for (dbpp = &domp->conflist; (pconf = *dbpp) != NULL; ) { 287 if (strcmp(pconf->name, path) != 0) { 288 dbpp = &pconf->next; 291 *dbpp = pconf->next; 292 kmem_free(pconf->name, strlen(pconf->name) + 1); 293 kmem_free(pconf, sizeof (*pconf));
|
/illumos-gate/usr/src/lib/libc/port/gen/ |
H A D | crypt.c | 372 FILE *pconf; local 376 if ((pconf = fopen(POLICY_CONF_FILE, "rF")) == NULL) { 388 while (!feof(pconf) && 389 (fgets(line, sizeof (line), pconf) != NULL)) { 421 (void) fclose(pconf);
|
/illumos-gate/usr/src/lib/libzonecfg/common/ |
H A D | libzonecfg.c | 4185 create_tmp_pset(char *pool_err, int err_size, pool_conf_t *pconf, pool_t *pool, argument 4192 if ((res = pool_resource_create(pconf, "pset", name)) == NULL) 4195 if (pool_associate(pconf, pool, res) != PO_SUCCESS) 4198 if ((elem = pool_resource_to_elem(pconf, res)) == NULL) 4207 if (pool_put_property(pconf, elem, "pset.max", val) != PO_SUCCESS) { 4215 if (pool_put_property(pconf, elem, "pset.min", val) != PO_SUCCESS) { 4226 create_tmp_pool(char *pool_err, int err_size, pool_conf_t *pconf, char *name, argument 4233 if (pool_conf_open(pconf, NULL, PO_TEMP) != PO_SUCCESS) { 4238 if ((pool = pool_create(pconf, name)) == NULL) { 4248 if ((elem = pool_to_elem(pconf, poo 4304 get_running_tmp_pset(pool_conf_t *pconf, pool_t *pool, pool_resource_t *pset, struct zone_psettab *pset_tab) argument 4358 verify_del_tmp_pool(pool_conf_t *pconf, char *tmp_name, char *pool_err, int err_size, struct zone_psettab *pset_tab, boolean_t *exists) argument 4432 pool_conf_t *pconf; local 4505 pool_conf_t *pconf; local [all...] |
/illumos-gate/usr/src/cmd/fm/modules/common/eversholt/ |
H A D | config.c | 709 * pconf -- internal printing function to recurse through the tree 712 pconf(int flags, struct config *cp, char *buf, int offset, int limit) function 726 pconf(flags, cp->child, buf, strlen(buf), limit); 728 pconf(flags, cp->next, buf, offset, limit); 745 pconf(flags, croot->child, buf, 0, MAXCONFLINE);
|
Completed in 69 milliseconds