Searched refs:xcreate (Results 1 – 19 of 19) sorted by relevance
/external/toybox/toys/pending/ |
D | bootchartd.c | 137 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()
|
D | crontab.c | 237 fdout = xcreate(toybuf, O_WRONLY|O_CREAT|O_TRUNC, 0600); in update_crontab()
|
D | dd.c | 195 } else TT.out.fd = xcreate(TT.out.name, in dd_main()
|
D | tftp.c | 277 fd = xcreate(TT.local_file, O_WRONLY | O_CREAT | O_TRUNC, 0666); in file_get()
|
D | mke2fs.c | 564 TT.fsfd = xcreate(*toys.optargs, temp, 0777); in mke2fs_main()
|
/external/toybox/toys/other/ |
D | fallocate.c | 27 int fd = xcreate(*toys.optargs, O_RDWR | O_CREAT, 0644);
|
/external/toybox/toys/posix/ |
D | nohup.c | 34 xcreate(temp, O_CREAT|O_APPEND|O_WRONLY, 0600); in nohup_main()
|
D | split.c | 69 outfd = xcreate(TT.outfile, O_RDWR|O_CREAT|O_TRUNC, st.st_mode & 0777);
|
D | uudecode.c | 49 else ofd = xcreate(TT.o ? TT.o : line+idx, O_WRONLY|O_CREAT|O_TRUNC,
|
D | cpio.c | 110 afd = xcreate(TT.F, perm, 0644); in cpio_main()
|
D | sort.c | 395 if (TT.o) fd = xcreate(TT.o, O_CREAT|O_TRUNC|O_WRONLY, 0666); in sort_main()
|
D | patch.c | 443 TT.filein = xcreate(name, O_CREAT|O_EXCL|O_RDWR, 0666); in patch_main()
|
D | tar.c | 507 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()
|
D | sed.c | 884 fd = xcreate(line, O_WRONLY|O_CREAT|O_TRUNC, 0644); in parse_pattern()
|
/external/toybox/toys/example/ |
D | logwrapper.c | 51 i = xcreate(log, O_RDWR|O_CREAT|O_APPEND, 0644); in logwrapper_main()
|
/external/toybox/toys/lsb/ |
D | gzip.c | 137 ofd = xcreate(out, O_CREAT|O_WRONLY|WARN_ONLY|(O_EXCL*!FLAG(f)),sb.st_mode); in do_gzip()
|
/external/toybox/toys/net/ |
D | ftpget.c | 164 ii = xcreate(toys.optargs[1], in ftpget_main()
|
/external/toybox/lib/ |
D | lib.h | 150 int xcreate(char *path, int flags, int mode);
|
D | xwrap.c | 462 int xcreate(char *path, int flags, int mode) in xcreate() function
|