Lines Matching defs:zlist
1229 z_set_zone_spec(const char *zlist)
1239 assert(zlist != NULL);
1244 while (isspace(*zlist)) {
1245 zlist++;
1247 if (*zlist == '\0') {
1250 for (zend = zlist; *zend != '\0'; zend++) {
1255 zlen = ((ptrdiff_t)zend) - ((ptrdiff_t)zlist);
1257 _z_program_error(ERR_ZONE_NAME_ILLEGAL, zlen, zlist);
1261 (void) memcpy(zent->zl_name, zlist, zlen);
1266 zlist = zend;