Searched refs:xcreate (Results 1 – 22 of 22) sorted by relevance
/third_party/toybox/toys/pending/ |
D | bootchartd.c | 138 int proc_stat_fd = xcreate("proc_stat.log", in start_logging() 140 int proc_diskstats_fd = xcreate("proc_diskstats.log", in start_logging() 147 int kp_fd = xcreate("kernel_procs_acct", O_WRONLY | O_CREAT | O_TRUNC,0666); in start_logging()
|
D | wget.c | 329 fd = xcreate(TT.filename, (O_WRONLY|O_CREAT|O_TRUNC), 0644); in wget_main()
|
D | crontab.c | 237 fdout = xcreate(toybuf, O_WRONLY|O_CREAT|O_TRUNC, 0600); in update_crontab()
|
D | dd.c | 194 } 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()
|
D | sh.c | 443 if (-1 == (fd = xcreate(sss, fd|WARN_ONLY, 777)) || hfd != dup2(fd, hfd)) { in run_command()
|
/third_party/toybox/toys/other/ |
D | fallocate.c | 28 int fd = xcreate(*toys.optargs, O_RDWR | O_CREAT, 0644);
|
/third_party/toybox/toys/posix/ |
D | nohup.c | 34 xcreate(temp, O_CREAT|O_APPEND|O_WRONLY, 0600); in nohup_main()
|
D | uudecode.c | 49 else ofd = xcreate(TT.o ? TT.o : line+idx, O_WRONLY|O_CREAT|O_TRUNC,
|
D | split.c | 72 outfd = xcreate(TT.outfile, O_RDWR|O_CREAT|O_TRUNC, st.st_mode & 0777);
|
D | cpio.c | 104 afd = xcreate(TT.F, perm, 0644); in cpio_main()
|
D | patch.c | 421 TT.filein = xcreate(name, O_CREAT|O_EXCL|O_RDWR, 0666); in patch_main()
|
D | sort.c | 395 if (TT.o) fd = xcreate(TT.o, O_CREAT|O_TRUNC|O_WRONLY, 0666); in sort_main()
|
D | tar.c | 491 int fd = xcreate(name, O_WRONLY|O_CREAT|(FLAG(overwrite)?O_TRUNC:O_EXCL), in extract_to_disk() 814 TT.fd = xcreate(TT.f, TT.fd*(O_WRONLY|O_CREAT|O_TRUNC), 0666); in tar_main()
|
D | sed.c | 932 fd = xcreate(line, O_WRONLY|O_CREAT|O_TRUNC, 0644); in parse_pattern()
|
/third_party/toybox/toys/example/ |
D | logwrapper.c | 51 i = xcreate(log, O_RDWR|O_CREAT|O_APPEND, 0644); in logwrapper_main()
|
/third_party/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()
|
/third_party/toybox/toys/net/ |
D | ftpget.c | 232 ii = xcreate(toys.optargs[1], in ftpget_main()
|
/third_party/toybox/porting/liteos_a/lib/ |
D | lib.h | 149 int xcreate(char *path, int flags, int mode);
|
/third_party/toybox/lib/ |
D | lib.h | 154 int xcreate(char *path, int flags, int mode);
|
D | xwrap.c | 438 int xcreate(char *path, int flags, int mode) in xcreate() function
|