| /openbsd/src/regress/sys/kern/pledge/generic/ |
| D | tests.out | 5 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/ |
| D | ui-file.c | 431 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/ |
| D | layers.t | 16 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/llvm/clang/include/clang/Tooling/Inclusions/ |
| D | CSymbolMap.inc | 24 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/ |
| D | perlio.c | 3296 FILE *stdio; /* The stream */ member 3305 FILE * const s = PerlIOSelf(f, PerlIOStdio)->stdio; in PerlIOStdio_fileno() 3342 FILE *stdio; in PerlIOStdio_pushed() local 3343 if (fd >= 0 && (stdio = PerlSIO_fdopen(fd, in PerlIOStdio_pushed() 3345 PerlIOSelf(f, PerlIOStdio)->stdio = stdio; in PerlIOStdio_pushed() 3360 PerlIO_importFILE(FILE *stdio, const char *mode) in PerlIO_importFILE() argument 3369 if (stdio) { in PerlIO_importFILE() 3371 int fd0 = fileno(stdio); in PerlIO_importFILE() 3374 rc = fldata(stdio,filename,&fileinfo); in PerlIO_importFILE() 3415 s->stdio = stdio; in PerlIO_importFILE() [all …]
|
| /openbsd/src/gnu/usr.bin/perl/ext/VMS-Stdio/ |
| D | Stdio.xs | 187 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 …]
|
| D | 0README.txt | 3 stdio functions. For more specific documentation of its 30 Removed old VMs::stdio compatibility interface
|
| /openbsd/src/gnu/llvm/libcxx/include/ |
| D | stdio.h | 16 #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/ |
| D | OpenBSD-Pledge.t | 42 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/ |
| D | perlapio.pod | 7 #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's C<off_t>. [all …]
|
| /openbsd/src/lib/libc/stdio/ |
| D | Makefile.inc | 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/ |
| D | FAQ.rst | 18 #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/ |
| D | Makefile | 4 REGRESS_TARGETS = noarg fonly Fback pminus stdio 31 stdio: target
|
| /openbsd/src/distrib/special/libstubs/ |
| D | Makefile | 36 -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/ |
| D | include.c | 8 #define stdio 1 macro
|
| /openbsd/src/gnu/usr.bin/gcc/gcc/testsuite/gcc.dg/cpp/ |
| D | syshdr1.h | 4 #include_next <stdio.h>
|
| D | syshdr2.h | 5 #include_next <stdio.h>
|
| D | paste12.c | 8 #include INC(stdio) /* { dg-error "pasting \"<\" and \"stdio\" does not" } */
|
| /openbsd/src/regress/usr.bin/rcs/ |
| D | rev2 | 1 #include <stdio.h>
|
| D | rcsmerge.out | 1 #include <stdio.h>
|
| D | rev3 | 1 #include <stdio.h>
|
| D | rcsdiff.out | 3 +#include <stdio.h>
|
| /openbsd/src/regress/lib/libpthread/stdio/ |
| D | Makefile | 3 PROG= stdio
|
| /openbsd/src/regress/usr.bin/file/ |
| D | t17.in | 1 #include <stdio.h>
|
| /openbsd/src/gnu/usr.bin/gcc/gcc/fixinc/ |
| D | fixinc.ptx | 84 file=stdio.h 133 if grep stdio $file_to_fix > /dev/null; then
|