HomeSort by relevance Sort by last modified time
    Searched full:pwbuflen (Results 1 - 1 of 1) sorted by null

  /ndk/sources/host-tools/make-3.81/glob/
glob.c 657 size_t pwbuflen = sysconf (_SC_GETPW_R_SIZE_MAX);
662 if (pwbuflen == -1)
665 pwbuflen = 1024;
666 pwtmpbuf = (char *) __alloca (pwbuflen);
668 while (getpwnam_r (name, &pwbuf, pwtmpbuf, pwbuflen, &p)
676 pwbuflen *= 2;
677 pwtmpbuf = (char *) __alloca (pwbuflen);
656 size_t pwbuflen = sysconf (_SC_GETPW_R_SIZE_MAX); local
    [all...]

Completed in 77 milliseconds