Home
last modified time | relevance | path

Searched refs:zfile (Results 1 - 3 of 3) sorted by relevance

/third_party/zlib/contrib/pascal/
H A Dexample.pas87 zfile: gzFile;
92 zfile := gzopen(fname, 'wb');
93 if zfile = NIL then
98 gzputc(zfile, 'h');
99 if gzputs(zfile, 'ello') <> 4 then
101 WriteLn('gzputs err: ', gzerror(zfile, err));
105 if gzprintf(zfile, ', %s!', 'hello') <> 8 then
107 WriteLn('gzprintf err: ', gzerror(zfile, err));
111 if gzputs(zfile, ', hello!') <> 8 then
113 WriteLn('gzputs err: ', gzerror(zfile, er
[all...]
/third_party/toybox/toys/pending/
H A Dawk.c130 struct zfile {
131 struct zfile *next;
3002 static struct zfile *new_file(char *fn, FILE *fp, char mode, char file_or_pipe) in new_file()
3004 struct zfile *f = xzalloc(sizeof(struct zfile)); in new_file()
3005 *f = (struct zfile){TT.zfiles, xstrdup(fn), fp, mode, file_or_pipe, in new_file()
3013 for (struct zfile *p = TT.zfiles; p; p = p->next) in fflush_all()
3027 for (struct zfile *p = TT.zfiles; p; p = p->next) in fflush_file()
3036 struct zfile *np, **pp = &TT.zfiles; in close_file()
3037 for (struct zfile * in close_file()
[all...]
/third_party/toybox/generated/
H A Dglobals.h586 struct zfile { struct
587 struct zfile *next;

Completed in 10 milliseconds