Lines Matching defs:zlist
637 z_set_zone_spec(const char *zlist)
647 assert(zlist != NULL);
652 while (isspace(*zlist)) {
653 zlist++;
655 if (*zlist == '\0') {
658 for (zend = zlist; *zend != '\0'; zend++) {
663 zlen = ((ptrdiff_t)zend) - ((ptrdiff_t)zlist);
665 _z_program_error(ERR_ZONE_NAME_ILLEGAL, zlen, zlist);
669 (void) memcpy(zent->zl_name, zlist, zlen);
674 zlist = zend;