Home
last modified time | relevance | path

Searched refs:zonestr (Results 1 – 2 of 2) sorted by relevance

/freebsd/lib/libc/stdtime/
H A Dstrptime.c538 char *zonestr; in _strptime()
544 zonestr = alloca(cp - buf + 1); in _strptime()
545 strncpy(zonestr, buf, cp - buf); in _strptime()
546 zonestr[cp - buf] = '\0'; in _strptime()
548 if (0 == strcmp(zonestr, "GMT") || in _strptime()
549 0 == strcmp(zonestr, "UTC")) { in _strptime()
551 } else if (0 == strcmp(zonestr, tzname[0])) { in _strptime()
553 } else if (0 == strcmp(zonestr, tzname[1])) { in _strptime()
539 char *zonestr; _strptime() local
/freebsd/sys/contrib/openzfs/lib/libzfs/
H A Dlibzfs_pool.c1538 const char *zonestr; in zpool_create() local
1541 zfs_prop_to_name(ZFS_PROP_ZONED), &zonestr) == 0) && in zpool_create()
1542 strcmp(zonestr, "on") == 0); in zpool_create()