Lines Matching defs:zent
454 zone_spec_t *zent;
494 if ((zent = _z_global_data._zone_spec) != NULL) {
495 while (zent != NULL) {
496 if (strcmp(zent->zl_name, ze->zone_name) == 0)
498 zent = zent->zl_next;
500 if (zent == NULL) {
1009 zone_spec_t *zent;
1030 if ((zent = _z_global_data._zone_spec) != NULL) {
1031 while (zent != NULL) {
1032 if (strcmp(zent->zl_name, ze->zone_name) == 0)
1034 zent = zent->zl_next;
1036 if (zent == NULL) {
1083 zone_spec_t *zent;
1098 for (zent = _z_global_data._zone_spec;
1099 zent != NULL; zent = zent->zl_next) {
1100 if (strcmp(zent->zl_name, zonename) == 0)
1233 zone_spec_t *zent;
1260 zent = _z_malloc(sizeof (*zent));
1261 (void) memcpy(zent->zl_name, zlist, zlen);
1262 zent->zl_name[zlen] = '\0';
1263 zent->zl_used = B_FALSE;
1264 *znextp = zent;
1265 znextp = &zent->zl_next;
1498 zone_spec_t *zent;
1513 for (zent = _z_global_data._zone_spec;
1514 zent != NULL; zent = zent->zl_next) {
1515 if (strcmp(zent->zl_name, ze->zone_name) == 0) {
1516 zent->zl_used = B_TRUE;
1525 for (zent = _z_global_data._zone_spec;
1526 zent != NULL; zent = zent->zl_next) {
1527 if (!zent->zl_used) {
1528 _z_program_error(ERR_ZONE_NONEXISTENT, zent->zl_name);