Searched refs:xcreate (Results 1 - 16 of 16) sorted by relevance

/external/toybox/toys/other/
H A Dfallocate.c28 int fd = xcreate(*toys.optargs, O_RDWR | O_CREAT, 0644);
/external/toybox/toys/posix/
H A Dnohup.c33 xcreate(temp, O_CREAT|O_APPEND|O_WRONLY, 0600);
H A Dsplit.c71 outfd = xcreate(TT.outfile, O_RDWR|O_CREAT|O_TRUNC, st.st_mode & 0777);
H A Duudecode.c44 ofd = xcreate(TT.o ? TT.o : line+idx, O_WRONLY|O_CREAT|O_TRUNC,
H A Dcpio.c97 afd = xcreate(TT.archive, perm, 0644);
H A Dpatch.c391 TT.filein = xcreate(name, O_CREAT|O_EXCL|O_RDWR, 0666);
H A Dsort.c305 fd = xcreate(TT.outfile, O_CREAT|O_TRUNC|O_WRONLY, 0666);
H A Dsed.c923 fd = xcreate(line, O_WRONLY|O_CREAT|O_TRUNC, 0644);
/external/toybox/toys/pending/
H A Dbootchartd.c160 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);
H A Dftpget.c231 local_fd = xcreate((char *)l_filename, flags, 0666);
251 local_fd = xcreate((char *)l_filename, O_RDONLY, 0666);
H A Dcrontab.c234 fdout = xcreate(toybuf, O_WRONLY|O_CREAT|O_TRUNC, 0600);
H A Ddd.c180 out.fd = xcreate(out.name, O_WRONLY | O_CREAT, 0666);
H A Dmke2fs.c452 TT.fsfd = xcreate(*toys.optargs, temp, 0777);
H A Dtar.c768 fd = xcreate(TT.fname, fd*(O_WRONLY|O_CREAT|O_TRUNC), 0666);
/external/toybox/lib/
H A Dxwrap.c249 int xcreate(char *path, int flags, int mode) function
259 return xcreate(path, flags, 0);
H A Dlib.h108 int xcreate(char *path, int flags, int mode);

Completed in 1437 milliseconds