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

  /external/toybox/toys/other/
fsync.c 31 loopfiles_rw(toys.optargs, O_RDONLY|O_NOATIME|O_NOCTTY|O_CLOEXEC,
truncate.c 63 loopfiles_rw(toys.optargs, O_WRONLY|O_CLOEXEC|(cr ? O_CREAT : 0), 0666, cr,
  /external/toybox/toys/posix/
tee.c 51 loopfiles_rw(toys.optargs,
cmp.c 82 loopfiles_rw(toys.optargs, O_CLOEXEC, 0, toys.optflags&FLAG_s, do_cmp);
tail.c 245 loopfiles_rw(args, O_RDONLY|(O_CLOEXEC*!(toys.optflags&FLAG_f)),
grep.c 371 } else loopfiles_rw(ss, O_RDONLY, 0, 1, do_grep);
sed.c 1048 loopfiles_rw(args, O_RDONLY, 0, 0, do_sed);
    [all...]
  /external/toybox/lib/
lib.h 187 void loopfiles_rw(char **argv, int flags, int permissions, int failok,
lib.c 554 void loopfiles_rw(char **argv, int flags, int permissions, int failok, function
575 // Call loopfiles_rw with O_RDONLY|O_CLOEXEC and !failok (common case).
578 loopfiles_rw(argv, O_RDONLY|O_CLOEXEC, 0, 0, function);

Completed in 318 milliseconds