HomeSort by relevance Sort by last modified time
    Searched refs:rbuflen (Results 1 - 3 of 3) sorted by null

  /external/selinux/libselinux/src/
seusers.c 100 long rbuflen = sysconf(_SC_GETPW_R_SIZE_MAX); local
101 if (rbuflen <= 0) return -1;
102 char *rbuf = malloc(rbuflen);
105 int retval = getpwnam_r(name, &pwstorage, rbuf, rbuflen, &pwent);
119 long rbuflen = sysconf(_SC_GETGR_R_SIZE_MAX); local
120 if (rbuflen <= 0)
125 rbuf = malloc(rbuflen);
129 rbuflen, &grent);
133 rbuflen = rbuflen * 2
    [all...]
  /external/toybox/toys/pending/
tftpd.c 239 int fd = 0, recvmsg_len, rbuflen, opcode, blksize = TFTPD_BLKSIZE, tsize = 0, set =1; local
288 rbuflen = toybuf + recvmsg_len - buf;
289 if (rbuflen) {
292 for (; rbuflen; rbuflen -= jump, buf += jump) {
  /external/selinux/libsemanage/src/
genhomedircon.c 967 long rbuflen; local
976 rbuflen = sysconf(_SC_GETPW_R_SIZE_MAX);
977 if (rbuflen <= 0)
979 rbuf = malloc(rbuflen);
999 retval = getpwnam_r(name, &pwstorage, rbuf, rbuflen, &pwent);
    [all...]

Completed in 141 milliseconds