Home
last modified time | relevance | path

Searched refs:xcreate (Results 1 – 19 of 19) sorted by relevance

/external/toybox/toys/pending/
Dbootchartd.c137 int proc_stat_fd = xcreate("proc_stat.log", in start_logging()
139 int proc_diskstats_fd = xcreate("proc_diskstats.log", in start_logging()
146 int kp_fd = xcreate("kernel_procs_acct", O_WRONLY | O_CREAT | O_TRUNC,0666); in start_logging()
Dcrontab.c237 fdout = xcreate(toybuf, O_WRONLY|O_CREAT|O_TRUNC, 0600); in update_crontab()
Ddd.c195 } else TT.out.fd = xcreate(TT.out.name, in dd_main()
Dtftp.c277 fd = xcreate(TT.local_file, O_WRONLY | O_CREAT | O_TRUNC, 0666); in file_get()
Dmke2fs.c564 TT.fsfd = xcreate(*toys.optargs, temp, 0777); in mke2fs_main()
/external/toybox/toys/other/
Dfallocate.c27 int fd = xcreate(*toys.optargs, O_RDWR | O_CREAT, 0644);
/external/toybox/toys/posix/
Dnohup.c34 xcreate(temp, O_CREAT|O_APPEND|O_WRONLY, 0600); in nohup_main()
Dsplit.c69 outfd = xcreate(TT.outfile, O_RDWR|O_CREAT|O_TRUNC, st.st_mode & 0777);
Duudecode.c49 else ofd = xcreate(TT.o ? TT.o : line+idx, O_WRONLY|O_CREAT|O_TRUNC,
Dcpio.c110 afd = xcreate(TT.F, perm, 0644); in cpio_main()
Dsort.c395 if (TT.o) fd = xcreate(TT.o, O_CREAT|O_TRUNC|O_WRONLY, 0666); in sort_main()
Dpatch.c443 TT.filein = xcreate(name, O_CREAT|O_EXCL|O_RDWR, 0666); in patch_main()
Dtar.c507 int fd = xcreate(name, in extract_to_disk()
831 TT.fd = xcreate(TT.f, TT.fd*(O_WRONLY|O_CREAT|O_TRUNC), 0666); in tar_main()
Dsed.c884 fd = xcreate(line, O_WRONLY|O_CREAT|O_TRUNC, 0644); in parse_pattern()
/external/toybox/toys/example/
Dlogwrapper.c51 i = xcreate(log, O_RDWR|O_CREAT|O_APPEND, 0644); in logwrapper_main()
/external/toybox/toys/lsb/
Dgzip.c137 ofd = xcreate(out, O_CREAT|O_WRONLY|WARN_ONLY|(O_EXCL*!FLAG(f)),sb.st_mode); in do_gzip()
/external/toybox/toys/net/
Dftpget.c164 ii = xcreate(toys.optargs[1], in ftpget_main()
/external/toybox/lib/
Dlib.h150 int xcreate(char *path, int flags, int mode);
Dxwrap.c462 int xcreate(char *path, int flags, int mode) in xcreate() function