Home
last modified time | relevance | path

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

/external/toybox/toys/pending/
Dbootchartd.c160 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()
Dftpget.c231 local_fd = xcreate((char *)l_filename, flags, 0666); in get_file()
251 local_fd = xcreate((char *)l_filename, O_RDONLY, 0666); in put_file()
Dcrontab.c234 fdout = xcreate(toybuf, O_WRONLY|O_CREAT|O_TRUNC, 0600); in update_crontab()
Ddd.c180 out.fd = xcreate(out.name, O_WRONLY | O_CREAT, 0666); in setup_inout()
Dtftp.c277 fd = xcreate(TT.local_file, O_WRONLY | O_CREAT | O_TRUNC, 0666); in file_get()
Dmke2fs.c427 TT.fsfd = xcreate(*toys.optargs, temp, 0777); in mke2fs_main()
Dtar.c768 fd = xcreate(TT.fname, fd*(O_WRONLY|O_CREAT|O_TRUNC), 0666); in tar_main()
/external/toybox/toys/other/
Dfallocate.c28 int fd = xcreate(*toys.optargs, O_RDWR | O_CREAT, 0644);
/external/toybox/toys/posix/
Dnohup.c33 xcreate(temp, O_CREAT|O_APPEND|O_WRONLY, 0600); in nohup_main()
Duudecode.c44 ofd = xcreate(TT.o ? TT.o : line+idx, O_WRONLY|O_CREAT|O_TRUNC,
Dsplit.c71 outfd = xcreate(TT.outfile, O_RDWR|O_CREAT|O_TRUNC, st.st_mode & 0777);
Dcpio.c105 afd = xcreate(TT.archive, perm, 0644); in cpio_main()
Dpatch.c396 TT.filein = xcreate(name, O_CREAT|O_EXCL|O_RDWR, 0666); in patch_main()
Dsort.c306 fd = xcreate(TT.outfile, O_CREAT|O_TRUNC|O_WRONLY, 0666); in sort_main()
Dsed.c928 fd = xcreate(line, O_WRONLY|O_CREAT|O_TRUNC, 0644); in jewel_of_judgement()
/external/toybox/lib/
Dxwrap.c300 int xcreate(char *path, int flags, int mode) in xcreate() function
310 return xcreate(path, flags, 0); in xopen()
Dlib.h120 int xcreate(char *path, int flags, int mode);