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

  /external/toybox/toys/other/
insmod.c 41 char *buf = readfileat(AT_FDCWD, path, NULL, &len);
  /external/toybox/lib/
lib.h 168 char *readfileat(int dirfd, char *name, char *buf, off_t *len);
lib.c 448 char *readfileat(int dirfd, char *name, char *ibuf, off_t *plen) function
455 if (CFG_TOYBOX_DEBUG && (ibuf ? !*plen : *plen)) error_exit("bad readfileat");
491 return readfileat(AT_FDCWD, name, ibuf, &len);
  /external/toybox/toys/posix/
ps.c 575 if (!readfileat(fd, buf, buf, &len)) return 0;
615 if (!readfileat(fd, buf, buf, &temp)) *buf = 0;
629 if (!readfileat(fd, buf, buf, &temp)) *buf = 0;
652 if (!readfileat(fd, buf, buf, &temp)) *buf = 0;
732 if (readfileat(fd, buf, buf, &len) && len>0) {
    [all...]

Completed in 675 milliseconds