Searched refs:fstat (Results 1 – 25 of 62) sorted by relevance
123
/device/linaro/bootloader/arm-trusted-firmware/tools/fiptool/ |
D | win_posix.h | 135 inline int fstat(int fd, struct _stat *buffer) in fstat() function
|
/device/linaro/bootloader/edk2/StdLib/LibC/Stdio/ |
D | fopen.c | 75 if (fstat(f, &st) == -1) { in fopen()
|
D | fdopen.c | 86 if (fstat(fd, &st) == -1) { in __weak_alias()
|
D | fseeko.c | 170 fp->_file < 0 || fstat(fp->_file, &st) || in __weak_alias() 186 if (fstat(fp->_file, &st)) in __weak_alias()
|
D | makebuf.c | 116 if (fp->_file < 0 || fstat(fp->_file, &st) < 0) { in __swhatbuf()
|
D | freopen.c | 156 if (fstat(f, &st) == -1) { in freopen()
|
/device/linaro/bootloader/edk2/StdLib/Include/sys/ |
D | EfiSysCall.h | 283 int fstat (int, struct stat *);
|
D | stat.h | 191 int fstat (int, struct stat *);
|
/device/linaro/bootloader/edk2/StdLib/PosixLib/Gen/ |
D | opendir.c | 87 if (fstat(fd, &sb) || !S_ISDIR(sb.st_mode)) { in __opendir2()
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/PyMod-2.7.10/Python/ |
D | random.c | 222 if (fstat(urandom_cache.fd, &st) in dev_urandom_python() 268 if (fstat(fd, &st)) { in dev_urandom_python()
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/ |
D | dynload_shlib.c | 90 fstat(fileno(fp), &statb); in _PyImport_GetDynLoadFunc()
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/ |
D | posixpath.py | 163 s1 = os.fstat(fp1) 164 s2 = os.fstat(fp2)
|
D | py_compile.py | 108 timestamp = long(os.fstat(f.fileno()).st_mtime)
|
D | SimpleHTTPServer.py | 93 fs = os.fstat(f.fileno())
|
D | fileinput.py | 325 perm = os.fstat(self._file.fileno()).st_mode
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Demo/scripts/ |
D | mboxconvert.py | 93 t = os.fstat(f.fileno())[stat.ST_MTIME]
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/_io/ |
D | fileio.c | 152 if (fstat(self->fd, &buf) == 0 && S_ISDIR(buf.st_mode)) { in dircheck() 173 if (!_PyVerify_fd(fd) || (fstat(fd, &buf) < 0 && errno == EBADF)) { in check_fd() 511 if (fstat(self->fd, &st) == 0) { in new_buffersize()
|
/device/linaro/hikey/installer/hikey960/ |
D | mkdtimg | 17 from os import fstat, stat, remove
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/scripts/ |
D | treesync.py | 166 st = os.fstat(f.fileno())
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/ |
D | SimpleHTTPServer.py | 101 fs = os.fstat(f.fileno())
|
D | fileinput.py | 328 perm = os.fstat(self._file.fileno()).st_mode
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/_io/ |
D | fileio.c | 148 if (fstat(self->fd, &buf) == 0 && S_ISDIR(buf.st_mode)) { in dircheck() 162 if (!_PyVerify_fd(fd) || (fstat(fd, &buf) < 0 && errno == EBADF)) { in check_fd() 506 if (fstat(self->fd, &st) == 0) { in new_buffersize()
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/zlib/ |
D | minigzip.c | 143 if (fstat(ifd, &sb) < 0) return Z_ERRNO;
|
/device/google/contexthub/util/stm32_flash/ |
D | flash.c | 215 if (fstat(fileno(file), &buf) < 0) { in main()
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/ |
D | test_largefile.py | 49 self.assertEqual(os.fstat(f.fileno())[stat.ST_SIZE], size+1)
|
123