Searched refs:xcreate (Results 1 – 17 of 17) sorted by relevance
/external/toybox/toys/pending/ |
D | bootchartd.c | 160 int proc_stat_fd = xcreate("proc_stat.log", in start_logging() 162 int proc_diskstats_fd = xcreate("proc_diskstats.log", in start_logging() 169 int kp_fd = xcreate("kernel_procs_acct", O_WRONLY | O_CREAT | O_TRUNC,0666); in start_logging()
|
D | ftpget.c | 231 local_fd = xcreate((char *)l_filename, flags, 0666); in get_file() 251 local_fd = xcreate((char *)l_filename, O_RDONLY, 0666); in put_file()
|
D | crontab.c | 234 fdout = xcreate(toybuf, O_WRONLY|O_CREAT|O_TRUNC, 0600); in update_crontab()
|
D | dd.c | 180 out.fd = xcreate(out.name, O_WRONLY | O_CREAT, 0666); in setup_inout()
|
D | tftp.c | 277 fd = xcreate(TT.local_file, O_WRONLY | O_CREAT | O_TRUNC, 0666); in file_get()
|
D | mke2fs.c | 427 TT.fsfd = xcreate(*toys.optargs, temp, 0777); in mke2fs_main()
|
D | tar.c | 768 fd = xcreate(TT.fname, fd*(O_WRONLY|O_CREAT|O_TRUNC), 0666); in tar_main()
|
/external/toybox/toys/other/ |
D | fallocate.c | 28 int fd = xcreate(*toys.optargs, O_RDWR | O_CREAT, 0644);
|
/external/toybox/toys/posix/ |
D | nohup.c | 33 xcreate(temp, O_CREAT|O_APPEND|O_WRONLY, 0600); in nohup_main()
|
D | uudecode.c | 44 ofd = xcreate(TT.o ? TT.o : line+idx, O_WRONLY|O_CREAT|O_TRUNC,
|
D | split.c | 71 outfd = xcreate(TT.outfile, O_RDWR|O_CREAT|O_TRUNC, st.st_mode & 0777);
|
D | cpio.c | 105 afd = xcreate(TT.archive, perm, 0644); in cpio_main()
|
D | patch.c | 396 TT.filein = xcreate(name, O_CREAT|O_EXCL|O_RDWR, 0666); in patch_main()
|
D | sort.c | 306 fd = xcreate(TT.outfile, O_CREAT|O_TRUNC|O_WRONLY, 0666); in sort_main()
|
D | sed.c | 928 fd = xcreate(line, O_WRONLY|O_CREAT|O_TRUNC, 0644); in jewel_of_judgement()
|
/external/toybox/lib/ |
D | xwrap.c | 300 int xcreate(char *path, int flags, int mode) in xcreate() function 310 return xcreate(path, flags, 0); in xopen()
|
D | lib.h | 120 int xcreate(char *path, int flags, int mode);
|