Home
last modified time | relevance | path

Searched refs:_PyVerify_fd (Results 1 – 10 of 10) sorted by relevance

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Include/
Dfileobject.h79 int _PyVerify_fd(int fd);
82 #define _PyVerify_fd(fd) (_get_osfhandle(fd) >= 0) macro
84 #define _PyVerify_fd(A) (1) /* dummy */ macro
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/_io/
Dfileio.c87 if (_PyVerify_fd(fd)) { in internal_close()
173 if (!_PyVerify_fd(fd) || (fstat(fd, &buf) < 0 && errno == EBADF)) { in check_fd()
487 if (_PyVerify_fd(self->fd)) { in fileio_readinto()
544 if (!_PyVerify_fd(self->fd)) in fileio_readall()
628 if (_PyVerify_fd(self->fd)) { in fileio_read()
668 if (_PyVerify_fd(self->fd)) { in fileio_write()
727 if (_PyVerify_fd(fd)) { in portable_lseek()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/_io/
Dfileio.c82 if (_PyVerify_fd(fd)) { in internal_close()
162 if (!_PyVerify_fd(fd) || (fstat(fd, &buf) < 0 && errno == EBADF)) { in check_fd()
475 if (_PyVerify_fd(self->fd)) { in fileio_readinto()
534 if (!_PyVerify_fd(self->fd)) in fileio_readall()
631 if (_PyVerify_fd(self->fd)) { in fileio_read()
673 if (_PyVerify_fd(self->fd)) { in fileio_write()
739 if (_PyVerify_fd(fd)) { in portable_lseek()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/PyMod-2.7.2/Include/
Dfileobject.h96 #define _PyVerify_fd(A) (1) /* dummy */ macro
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Include/
Dfileobject.h96 #define _PyVerify_fd(A) (1) /* dummy */ macro
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/PyMod-2.7.10/Include/
Dfileobject.h95 #define _PyVerify_fd(A) (1) /* dummy */ macro
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/PyMod-2.7.10/Modules/
Dedk2module.c235 if (!_PyVerify_fd(fd)) in edk2_fildes()
2810 if (!_PyVerify_fd(fd)) in edk2_close()
2834 if (_PyVerify_fd(i)) in edk2_closerange()
2851 if (!_PyVerify_fd(fd)) in edk2_dup()
2914 if (!_PyVerify_fd(fd)) in edk2_lseek()
2948 if (!_PyVerify_fd(fd)) { in edk2_read()
2978 if (!_PyVerify_fd(fd)) { in edk2_write()
3004 if (!_PyVerify_fd(fd)) in edk2_fstat()
3044 if (!_PyVerify_fd(fd)) in edk2_fdopen()
3085 if (!_PyVerify_fd(fd)) in edk2_isatty()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Efi/
Dedk2module.c234 if (!_PyVerify_fd(fd)) in posix_fildes()
4804 if (!_PyVerify_fd(fd)) in posix_close()
4828 if (_PyVerify_fd(i)) in posix_closerange()
4845 if (!_PyVerify_fd(fd)) in posix_dup()
4908 if (!_PyVerify_fd(fd)) in posix_lseek()
4942 if (!_PyVerify_fd(fd)) { in posix_read()
4972 if (!_PyVerify_fd(fd)) { in posix_write()
4998 if (!_PyVerify_fd(fd)) in posix_fstat()
5038 if (!_PyVerify_fd(fd)) in posix_fdopen()
5079 if (!_PyVerify_fd(fd)) in posix_isatty()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
Dposixmodule.c405 _PyVerify_fd(int fd) in _PyVerify_fd() function
445 if (!_PyVerify_fd(fd1)) in _PyVerify_fd_dup2()
694 if (!_PyVerify_fd(fd)) in posix_fildes()
6441 if (!_PyVerify_fd(fd)) in posix_close()
6465 if (_PyVerify_fd(i)) in posix_closerange()
6482 if (!_PyVerify_fd(fd)) in posix_dup()
6549 if (!_PyVerify_fd(fd)) in posix_lseek()
6587 if (!_PyVerify_fd(fd)) { in posix_read()
6617 if (!_PyVerify_fd(fd)) { in posix_write()
6647 if (!_PyVerify_fd(fd)) in posix_fstat()
[all …]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
Dsignalmodule.c418 if (fd != -1 && (!_PyVerify_fd(fd) || fstat(fd, &buf) != 0)) { in signal_set_wakeup_fd()