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

  /external/toybox/toys/other/
fallocate.c 28 int fd = xcreate(*toys.optargs, O_RDWR | O_CREAT, 0644);
  /external/toybox/toys/posix/
nohup.c 33 xcreate(temp, O_CREAT|O_APPEND|O_WRONLY, 0600);
split.c 71 outfd = xcreate(TT.outfile, O_RDWR|O_CREAT|O_TRUNC, st.st_mode & 0777);
uudecode.c 44 ofd = xcreate(TT.o ? TT.o : line+idx, O_WRONLY|O_CREAT|O_TRUNC,
cpio.c 97 afd = xcreate(TT.archive, perm, 0644);
patch.c 391 TT.filein = xcreate(name, O_CREAT|O_EXCL|O_RDWR, 0666);
sort.c 305 fd = xcreate(TT.outfile, O_CREAT|O_TRUNC|O_WRONLY, 0666);
sed.c 923 fd = xcreate(line, O_WRONLY|O_CREAT|O_TRUNC, 0644);
  /external/toybox/toys/pending/
bootchartd.c 160 int proc_stat_fd = xcreate("proc_stat.log",
162 int proc_diskstats_fd = xcreate("proc_diskstats.log",
169 int kp_fd = xcreate("kernel_procs_acct", O_WRONLY | O_CREAT | O_TRUNC,0666);
ftpget.c 231 local_fd = xcreate((char *)l_filename, flags, 0666);
251 local_fd = xcreate((char *)l_filename, O_RDONLY, 0666);
crontab.c 234 fdout = xcreate(toybuf, O_WRONLY|O_CREAT|O_TRUNC, 0600);
dd.c 180 out.fd = xcreate(out.name, O_WRONLY | O_CREAT, 0666);
mke2fs.c 452 TT.fsfd = xcreate(*toys.optargs, temp, 0777);
tar.c 768 fd = xcreate(TT.fname, fd*(O_WRONLY|O_CREAT|O_TRUNC), 0666);
  /external/toybox/lib/
lib.h 108 int xcreate(char *path, int flags, int mode);
xwrap.c 249 int xcreate(char *path, int flags, int mode) function
259 return xcreate(path, flags, 0);

Completed in 7733 milliseconds