HomeSort by: relevance | last modified time | path
    Searched defs:open (Results 1 - 25 of 277) sorted by relevancy

1 2 3 4 5 6 7 8 91011>>

  /src/external/gpl3/gcc/dist/fixincludes/tests/base/
fcntl.h 24 extern int open (const char *, int, int);
28 inline int open (const char *, int) __attribute__((__always_inline__));
31 open (const char *name, int flags) function
33 return open (name, flags, 0);
38 extern int open (const char *name, int flags, int mode );
42 inline int open (const char *, int) __attribute__((__always_inline__));
45 open (const char *name, int flags) function
47 return open (name, flags, 0);
  /src/external/gpl3/gcc.old/dist/fixincludes/tests/base/
fcntl.h 24 extern int open (const char *, int, int);
28 inline int open (const char *, int) __attribute__((__always_inline__));
31 open (const char *name, int flags) function
33 return open (name, flags, 0);
38 extern int open (const char *name, int flags, int mode );
42 inline int open (const char *, int) __attribute__((__always_inline__));
45 open (const char *name, int flags) function
47 return open (name, flags, 0);
  /src/lib/libperfuse/
perfuse.h 44 #define open(path, flags) \ macro
  /src/sys/arch/atari/stand/tostools/libtos/
cread.h 41 #define open copen macro
  /src/external/bsd/libfido2/dist/openbsd-compat/
posix_win.h 39 #define open(path, ...) posix_open(path, __VA_ARGS__) macro
  /src/external/gpl2/xcvs/dist/lib/
save-cwd.c 47 /* On systems without the fchdir function (WOE), pretend that open
51 # undef open macro
52 # define open(File, Flags) (-1) macro
62 space using malloc (via xgetcwd) or leave a file descriptor open;
70 So, we prefer to use the open/fchdir approach, but fall back on
84 cwd->desc = fd_safer (open (".", O_RDONLY));
87 cwd->desc = fd_safer (open (".", O_WRONLY));
  /src/sys/lib/libsa/
open.c 1 /* $NetBSD: open.c,v 1.26 2007/11/24 13:20:56 isaki Exp $ */
34 * @(#)open.c 8.1 (Berkeley) 6/11/93
75 open(const char *fname, int mode) function
95 * Try to open the device.
96 * Convert open mode (0,1,2) to F_READ, F_WRITE.
126 /* pass file name to the different filesystem open routines */
  /src/external/bsd/jemalloc/dist/include/jemalloc/internal/
test_hooks.h 10 # define open JEMALLOC_TEST_HOOK(open, test_hooks_libc_hook) macro
  /src/external/bsd/jemalloc/include/jemalloc/internal/
hooks.h 9 #define open JEMALLOC_HOOK(open, hooks_libc_hook) macro
test_hooks.h 10 # define open JEMALLOC_TEST_HOOK(open, test_hooks_libc_hook) macro
  /src/external/bsd/jemalloc.old/dist/include/jemalloc/internal/
hooks.h 9 #define open JEMALLOC_HOOK(open, hooks_libc_hook) macro
  /src/external/bsd/jemalloc.old/include/jemalloc/internal/
hooks.h 9 #define open JEMALLOC_HOOK(open, hooks_libc_hook) macro
  /src/external/bsd/libarchive/dist/libarchive/test/
test_open_fd.c 28 #define open _open macro
47 fd = open("test.tar", O_RDWR | O_CREAT | O_BINARY);
49 fd = open("test.tar", O_RDWR | O_CREAT | O_BINARY, 0777);
127 /* FD 100 shouldn't be open. */
  /src/external/bsd/libfido2/dist/fuzz/
preload-fuzz.c 35 open(const char *path, int flags, ...) function
45 open_f = dlsym(RTLD_NEXT, "open");
  /src/external/gpl3/gcc/dist/libstdc++-v3/config/locale/generic/
messages_members.h 53 messages<_CharT>::open(const basic_string<char>& __s, const locale& __loc, function in class:messages
  /src/external/gpl3/gcc/dist/libstdc++-v3/config/locale/gnu/
messages_members.h 70 messages<_CharT>::open(const basic_string<char>& __s, const locale& __loc, function in class:messages
  /src/external/gpl3/gcc/dist/libstdc++-v3/config/locale/ieee_1003.1-2001/
messages_members.h 43 messages<_CharT>::open(const basic_string<char>& __s, const locale& __loc, function in class:messages
  /src/external/gpl3/gcc.old/dist/libstdc++-v3/config/locale/generic/
messages_members.h 53 messages<_CharT>::open(const basic_string<char>& __s, const locale& __loc, function in class:messages
  /src/external/gpl3/gcc.old/dist/libstdc++-v3/config/locale/gnu/
messages_members.h 70 messages<_CharT>::open(const basic_string<char>& __s, const locale& __loc, function in class:messages
  /src/external/gpl3/gcc.old/dist/libstdc++-v3/config/locale/ieee_1003.1-2001/
messages_members.h 43 messages<_CharT>::open(const basic_string<char>& __s, const locale& __loc, function in class:messages
  /src/external/gpl3/gdb/dist/gnulib/import/
open.c 0 /* Open a descriptor to a file.
25 /* Get the original definition of open. It might be defined as a macro. */
36 return open (filename, flags, mode);
59 open (const char *filename, int flags, ...) function
87 file types that require non-blocking handling in open().
107 - if O_CREAT is specified, open() must fail because of the semantics
109 - if O_WRONLY or O_RDWR is specified, open() must fail because POSIX
110 <https://pubs.opengroup.org/onlinepubs/9699919799/functions/open.html>
113 - if O_CREAT is specified, open() must fail since open() cannot creat
    [all...]
  /src/external/gpl3/gdb.old/dist/gnulib/import/
open.c 0 /* Open a descriptor to a file.
25 /* Get the original definition of open. It might be defined as a macro. */
36 return open (filename, flags, mode);
59 open (const char *filename, int flags, ...) function
87 file types that require non-blocking handling in open().
107 - if O_CREAT is specified, open() must fail because of the semantics
109 - if O_WRONLY or O_RDWR is specified, open() must fail because POSIX
110 <https://pubs.opengroup.org/onlinepubs/9699919799/functions/open.html>
113 - if O_CREAT is specified, open() must fail since open() cannot creat
    [all...]
  /src/external/ibm-public/postfix/dist/src/util/
mkmap.h 17 * We try to open and lock a file before DB/DBM initialization. However, if
22 struct DICT *(*open) (const char *, int, int); /* dict_xx_open() */ member in struct:MKMAP
  /src/external/gpl3/gdb.old/dist/gdb/
proc-utils.h 108 #define open(X,Y) open_with_trace (X, Y, __FILE__, __LINE__) macro
  /src/external/gpl3/gdb.old/dist/gdbsupport/
eintr.h 83 open (const char *pathname, int flags) function in namespace:gdb
85 return gdb::handle_eintr (-1, ::open, pathname, flags);

Completed in 21 milliseconds

1 2 3 4 5 6 7 8 91011>>