Home
last modified time | relevance | path

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

/dragonfly/contrib/tcsh-6/
HDtc.func.c1466 } *tcache = NULL; variable
1556 if (tcache == NULL) in gettilde()
1557 tcache = xmalloc(TILINCR * sizeof(struct tildecache)); in gettilde()
1561 for (bp1 = tcache, bp2 = tcache + tlength; bp1 < bp2;) { in gettilde()
1582 tcache[tlength].user = Strsave(us); in gettilde()
1583 tcache[tlength].home = hd; in gettilde()
1584 tcache[tlength++].hlen = Strlen(hd); in gettilde()
1586 qsort(tcache, tlength, sizeof(struct tildecache), tildecompare); in gettilde()
1590 tcache = xrealloc(tcache, tsize * sizeof(struct tildecache)); in gettilde()
1610 xfree(tcache[i].home); in getusername()
[all …]