Home
last modified time | relevance | path

Searched refs:Fopen (Results 1 – 14 of 14) sorted by relevance

/freebsd-14.2/usr.bin/mail/
H A Dquit.c103 fbuf = Fopen(mailname, "r"); in quit()
129 if ((rbuf = Fopen(tempname, "r")) == NULL) in quit()
158 if ((readstat = Fopen(Tflag, "w")) == NULL) in quit()
210 if ((ibuf = Fopen(tempname, "r")) == NULL) { in quit()
218 if ((abuf = Fopen(mbox, "r")) != NULL) { in quit()
233 if ((obuf = Fopen(mbox, "r+")) == NULL) { in quit()
241 if ((obuf = Fopen(mbox, "a")) == NULL) { in quit()
307 abuf = Fopen(mailname, "r+"); in quit()
343 if ((obuf = Fopen(mailname, "r+")) == NULL) { in writeback()
401 if ((readstat = Fopen(Tflag, "w")) == NULL) in edstop()
[all …]
H A Dcollect.c381 } else if ((fbuf = Fopen(cp, "r")) == NULL) { in collect()
432 if ((fbuf = Fopen(_PATH_TILDE, "r")) == NULL) { in collect()
512 if ((of = Fopen(name, "w")) == NULL) { in exwrite()
723 dbuf = Fopen(cp, "a"); in savedeadletter()
H A Dlex.c79 if ((ibuf = Fopen(name, "r")) == NULL) { in setfile()
173 ibuf = Fopen(mailname, "r"); in incfile()
688 if ((in = Fopen(name, "r")) == NULL) in load()
H A Dedit.c206 if ((nf = Fopen(tempname, "a+")) == NULL) { in run_editor()
H A Dsend.c467 if ((nfi = Fopen(tempname, "r")) == NULL) { in infix()
572 fo = Fopen(name, "a"); in savemail()
H A Dextern.h45 FILE *Fopen(const char *, const char *);
H A Dcmd2.c186 if ((obuf = Fopen(file, "a")) == NULL) { in save1()
H A Dpopen.c70 Fopen(const char *path, const char *mode) in Fopen() function
H A Dutil.c274 if ((fi = Fopen(cp, "r")) == NULL) { in source()
H A Dnames.c380 if ((fout = Fopen(fname, "a")) == NULL) { in outof()
H A Dcmd3.c152 if ((f = Fopen(_PATH_HELP, "r")) == NULL) { in help()
/freebsd-14.2/contrib/llvm-project/lldb/source/Host/posix/
H A DFileSystemPosix.cpp75 FILE *FileSystem::Fopen(const char *path, const char *mode) { in Fopen() function in FileSystem
/freebsd-14.2/contrib/llvm-project/lldb/include/lldb/Host/
H A DFileSystem.h62 FILE *Fopen(const char *path, const char *mode);
/freebsd-14.2/contrib/llvm-project/lldb/source/Core/
H A DDisassembler.cpp868 FILE *test_file = FileSystem::Instance().Fopen(file_name, "r"); in TestEmulation()