Home
last modified time | relevance | path

Searched refs:FASYNC (Results 1 – 12 of 12) sorted by relevance

/external/strace/xlat/
Dopen_mode_flags.h561 #if defined(FASYNC) || (defined(HAVE_DECL_FASYNC) && HAVE_DECL_FASYNC)
563 static_assert((FASYNC) == (0100), "FASYNC != 0100");
566 # define FASYNC 0100
569 #if defined(FASYNC) || (defined(HAVE_DECL_FASYNC) && HAVE_DECL_FASYNC)
571 static_assert((FASYNC) == (010000), "FASYNC != 010000");
574 # define FASYNC 010000
577 #if defined(FASYNC) || (defined(HAVE_DECL_FASYNC) && HAVE_DECL_FASYNC)
579 static_assert((FASYNC) == (020000), "FASYNC != 020000");
582 # define FASYNC 020000
794 XLAT(FASYNC),
[all …]
Dopen_mode_flags.in194 FASYNC 0100
196 FASYNC 010000
198 FASYNC 020000
/external/kernel-headers/original/uapi/asm-generic/
Dfcntl.h44 #ifndef FASYNC
45 #define FASYNC 00020000 /* fcntl, for BSD compatibility */ macro
/external/python/cpython2/Lib/plat-irix5/
DFILE.py151 FASYNC = 0x1000 variable
215 FASYNC = 0x1000 variable
/external/python/cpython2/Modules/
Dfcntlmodule.c515 #ifdef FASYNC in all_ins()
516 if (ins(d, "FASYNC", (long)FASYNC)) return -1; in all_ins()
/external/python/cpython3/Modules/
Dfcntlmodule.c560 #ifdef FASYNC in all_ins()
561 if (PyModule_AddIntMacro(m, FASYNC)) return -1; in all_ins()
/external/python/cpython2/Lib/plat-irix6/
DFILE.py555 FASYNC = 0x1000 variable
651 FASYNC = 0x1000 variable
/external/ltp/testcases/kernel/fs/scsi/ltpfs/
Dmain.c101 open("/tmp/testfile", O_CREAT | O_RDWR | O_SYNC | FASYNC, in main()
/external/python/cpython2/Lib/plat-atheos/
DIN.py630 FASYNC = O_ASYNC variable
/external/minijail/linux-x86/
Dlibconstants.gen.c1942 #ifdef FASYNC
1943 { "FASYNC", (unsigned long) FASYNC },
/external/python/cpython2/Misc/NEWS.d/
D2.6b1.rst201 Support os.O_ASYNC and fcntl.FASYNC if the constants exist on the platform.
/external/python/cpython3/Misc/
DHISTORY16675 - Support os.O_ASYNC and fcntl.FASYNC if the constants exist on the