Home
last modified time | relevance | path

Searched refs:stdio (Results 1 – 25 of 306) sorted by relevance

12345678910>>...13

/openbsd-src/regress/sys/kern/pledge/generic/
H A Dtests.out5 test(test_inet): pledge=("stdio",NULL) status=134 signal=6 coredump=present pledged_syscall=97
7 test(test_inet): pledge=("stdio inet",NULL) status=0 exit=0
9 test(test_kill): pledge=("stdio",NULL) status=2 signal=2
10 test(test_rpath): pledge=("stdio rpath",NULL) status=0 exit=0
11 test(test_wpath): pledge=("stdio wpath",NULL) status=0 exit=0
13 test(test_pledge): pledge=("stdio rpath",NULL) status=0 exit=0
14 test(test_pledge): pledge=("stdio rpath wpath",NULL) status=0 exit=0
15 test(test_pledge): pledge=("stdio",NULL) status=256 exit=1 (errno: "Operation not permitted")
16 test(test_pledge): pledge=("stdio unix",NULL) status=256 exit=1 (errno: "Operation not permitted")
/openbsd-src/gnu/usr.bin/binutils/gdb/
H A Dui-file.c431 struct stdio_file *stdio = xmalloc (sizeof (struct stdio_file)); in stdio_file_new() local
432 stdio->magic = &stdio_file_magic; in stdio_file_new()
433 stdio->file = file; in stdio_file_new()
434 stdio->close_p = close_p; in stdio_file_new()
435 set_ui_file_data (ui_file, stdio, stdio_file_delete); in stdio_file_new()
447 struct stdio_file *stdio = ui_file_data (file); in stdio_file_delete() local
448 if (stdio->magic != &stdio_file_magic) in stdio_file_delete()
451 if (stdio->close_p) in stdio_file_delete()
453 fclose (stdio->file); in stdio_file_delete()
455 xfree (stdio); in stdio_file_delete()
[all …]
/openbsd-src/gnu/usr.bin/perl/t/io/
H A Dlayers.t16 if exists $ENV{PERLIO} && $ENV{PERLIO} !~ /^(stdio|perlio|mmap)$/;
118 [ qw(stdio crlf) ],
124 [ qw(stdio crlf) ],
130 [ qw[stdio crlf encoding(cp1047) utf8] ],
136 [ qw[stdio crlf encoding(cp1047) utf8 crlf utf8] ],
142 [ qw(stdio crlf) ],
154 [ qw(stdio utf8) ],
166 [ qw[stdio encoding(utf8) utf8] ],
172 [ qw(stdio crlf) ],
216 [ qw(stdio crlf) ],
[all …]
/openbsd-src/gnu/usr.bin/perl/
H A Dperlio.c18 * is Perl's private replacement for the C stdio library. This is used
20 * PERLIO=:stdio (but don't do this unless you know what you're doing)
2052 * PERLIO_FLUSH_ALL = (PerlIO*)-1;)? Yes, stdio does similar
3283 * stdio as a layer in PerlIOStdio_close()
3296 FILE *stdio; /* The stream */ in PerlIOStdio_close()
3305 FILE * const s = PerlIOSelf(f, PerlIOStdio)->stdio; in PerlIOStdio_close()
3336 /* Top is already stdio - pop self (duplicate) and use original */ in PerlIOStdio_read()
3342 FILE *stdio; in PerlIOStdio_read()
3343 if (fd >= 0 && (stdio = PerlSIO_fdopen(fd, in PerlIOStdio_read()
3345 PerlIOSelf(f, PerlIOStdio)->stdio in PerlIOStdio_read()
2871 FILE *stdio; /* The stream */ global() member
2917 FILE *stdio; PerlIOStdio_pushed() local
2935 PerlIO_importFILE(FILE * stdio,const char * mode) PerlIO_importFILE() argument
3023 FILE *stdio; PerlIOStdio_open() local
3048 FILE *stdio; PerlIOStdio_open() local
3079 FILE *stdio = NULL; PerlIOStdio_open() local
3127 FILE *stdio = PerlIOSelf(o, PerlIOStdio)->stdio; PerlIOStdio_dup() local
3233 FILE * const stdio = PerlIOSelf(f, PerlIOStdio)->stdio; PerlIOStdio_close() local
3450 FILE * const stdio = PerlIOSelf(f, PerlIOStdio)->stdio; PerlIOStdio_seek() local
3459 FILE * const stdio = PerlIOSelf(f, PerlIOStdio)->stdio; PerlIOStdio_tell() local
3468 FILE * const stdio = PerlIOSelf(f, PerlIOStdio)->stdio; PerlIOStdio_flush() local
3534 FILE * const stdio = PerlIOSelf(f, PerlIOStdio)->stdio; PerlIOStdio_get_base() local
3542 FILE * const stdio = PerlIOSelf(f, PerlIOStdio)->stdio; PerlIOStdio_get_bufsiz() local
3552 FILE * const stdio = PerlIOSelf(f, PerlIOStdio)->stdio; PerlIOStdio_get_ptr() local
3560 FILE * const stdio = PerlIOSelf(f, PerlIOStdio)->stdio; PerlIOStdio_get_cnt() local
3568 FILE * const stdio = PerlIOSelf(f, PerlIOStdio)->stdio; PerlIOStdio_set_ptrcnt() local
3619 FILE * stdio; PerlIOStdio_fill() local
3735 FILE *stdio = NULL; PerlIO_exportFILE() local
3773 FILE *stdio; PerlIO_findFILE() local
4871 FILE *stdio = PerlIOSelf(f, PerlIOStdio)->stdio; PerlIO_getname() local
5082 FILE * const stdio = PerlSIO_tmpfile(); PerlIO_tmpfile_flags() local
[all...]
/openbsd-src/gnu/llvm/clang/include/clang/Tooling/Inclusions/
H A DCSymbolMap.inc24 SYMBOL(BUFSIZ, None, <stdio.h>)
47 SYMBOL(EOF, None, <stdio.h>)
62 SYMBOL(FILE, None, <stdio.h>)
63 SYMBOL(FILENAME_MAX, None, <stdio.h>)
79 SYMBOL(FOPEN_MAX, None, <stdio.h>)
142 SYMBOL(L_tmpnam, None, <stdio.h>)
143 SYMBOL(L_tmpnam_s, None, <stdio.h>)
156 SYMBOL(SEEK_CUR, None, <stdio.h>)
157 SYMBOL(SEEK_END, None, <stdio.h>)
158 SYMBOL(SEEK_SET, None, <stdio.h>)
[all …]
/openbsd-src/gnu/usr.bin/perl/ext/VMS-Stdio/
H A DStdio.xs187 FILE *stdio = PerlIO_exportFILE(fp,0);
188 if (fflush(stdio)) { ST(0) = &PL_sv_undef; }
189 else { clearerr(stdio); ST(0) = &PL_sv_yes; }
190 PerlIO_releaseFILE(fp,stdio);
197 FILE *stdio = PerlIO_exportFILE(fp,0);
200 if (fgetname(stdio,fname) != NULL) sv_setpv(ST(0),fname);
201 PerlIO_releaseFILE(fp,stdio);
208 FILE *stdio = PerlIO_exportFILE(fp,0);
209 ST(0) = rewind(stdio) ? &PL_sv_undef : &PL_sv_yes;
210 PerlIO_releaseFILE(fp,stdio);
[all …]
H A D0README.txt3 stdio functions. For more specific documentation of its
30 Removed old VMs::stdio compatibility interface
/openbsd-src/gnu/llvm/libcxx/include/
H A Dstdio.h16 #include_next <stdio.h>
107 # if __has_include_next(<stdio.h>)
108 # include_next <stdio.h>
/openbsd-src/gnu/usr.bin/perl/cpan/OpenBSD-Pledge/t/
H A DOpenBSD-Pledge.t42 OpenBSD::Pledge::_pledge( "stdio $pledge" )
78 [ "bar baz foo stdio" ],
79 [ "baz foo quux qux stdio" ],
81 "Sorted and unique promises, plus stdio";
/openbsd-src/gnu/usr.bin/perl/pod/
H A Dperlapio.pod7 #define PERLIO_NOT_STDIO 0 /* For co-existence with stdio only */
62 PerlIO *PerlIO_importFILE(FILE *stdio, const char *mode);
65 void PerlIO_releaseFILE(PerlIO *f,FILE *stdio);
98 =for apidoc_item T|PerlIO * |PerlIO_importFILE|FILE *stdio|const char *mode
104 =for apidoc_item T|void |PerlIO_releaseFILE|PerlIO *f|FILE *stdio
126 I<stdio.h>. The perl headers (in particular "perlio.h") will
129 The functions are modeled on those in I<stdio.h>, but parameter order
142 All above are #define'd to stdio functions or are trivial wrapper
143 functions which call stdio. In this case I<only> PerlIO * is a FILE *.
308 as stdio'
[all...]
/openbsd-src/lib/libc/stdio/
H A DMakefile.inc3 # stdio sources
4 .PATH: ${LIBCSRCDIR}/stdio
15 setvbuf.c snprintf.c sprintf.c sscanf.c stdio.c tempnam.c tmpfile.c \
28 setvbuf.3 stdio.3 tmpnam.3 ungetc.3 fgetws.3 fputws.3 fwide.3 getwc.3 \
/openbsd-src/gnu/llvm/clang/docs/
H A DFAQ.rst18 #include <stdio.h>
30 hello.c:1:10: fatal error: 'stdio.h' file not found
31 #include <stdio.h>
/openbsd-src/regress/usr.bin/lam/
H A DMakefile4 REGRESS_TARGETS = noarg fonly Fback pminus stdio
31 stdio: target
/openbsd-src/distrib/special/libstubs/
H A DMakefile36 -I${LIBCSRCDIR}/arch/${MACHINE_CPU}/gdtoa -I${LIBCSRCDIR}/stdio \
46 .PATH: ${.CURDIR}/../../../lib/libc/stdio
/openbsd-src/gnu/usr.bin/gcc/gcc/testsuite/gcc.dg/cpp/trad/
H A Dinclude.c8 #define stdio 1 macro
/openbsd-src/gnu/usr.bin/gcc/gcc/testsuite/gcc.dg/cpp/
H A Dsyshdr1.h4 #include_next <stdio.h>
H A Dsyshdr2.h5 #include_next <stdio.h>
H A Dpaste12.c8 #include INC(stdio) /* { dg-error "pasting \"<\" and \"stdio\" does not" } */
/openbsd-src/regress/usr.bin/rcs/
H A Drev21 #include <stdio.h>
H A Drev31 #include <stdio.h>
H A Drcsmerge.out1 #include <stdio.h>
H A Drcsdiff.out3 +#include <stdio.h>
/openbsd-src/regress/lib/libpthread/stdio/
H A DMakefile3 PROG= stdio
/openbsd-src/regress/usr.bin/file/
H A Dt17.in1 #include <stdio.h>
/openbsd-src/gnu/usr.bin/gcc/gcc/fixinc/
H A Dfixinc.ptx84 file=stdio.h
133 if grep stdio $file_to_fix > /dev/null; then

12345678910>>...13