Searched defs:stat (Results 1 - 14 of 14) sorted by relevance

/development/ndk/sources/android/libportable/arch-mips/
H A Dstatfs.c35 int statfs_portable(const char* path, struct statfs_portable* stat) argument
39 statfs_ntop(&mips_stat, stat);
43 int fstatfs_portable(int fd, struct statfs_portable* stat) argument
47 statfs_ntop(&mips_stat, stat);
/development/ndk/platforms/android-9/arch-mips/include/asm/
H A Dstat.h25 struct stat { struct
81 struct stat { struct
/development/ndk/platforms/android-9/arch-x86/include/asm/
H A Dstat.h22 struct stat { struct
/development/scripts/
H A Ddivide_and_compress.py41 import stat namespace
H A Ddivide_and_compress_test.py26 import stat namespace
70 self.my_mox.StubOutWithMock(os, 'stat')
71 os.stat('/foo/0.zip').AndReturn([test_file_size])
72 self.my_mox.StubOutWithMock(stat, 'ST_SIZE')
73 stat.ST_SIZE = 0
74 os.stat('/baz/0.zip').AndReturn([test_file_size])
75 mox.Replay(os.stat)
238 self.my_mox.StubOutWithMock(os, 'stat')
239 os.stat(''.join([os.getcwd(), '/0.zip'])).AndReturn([49302])
240 self.my_mox.StubOutWithMock(stat, 'ST_SIZ
[all...]
/development/tools/emulator/opengl/shared/OpenglCodecCommon/
H A DSocketStream.cpp99 ssize_t stat = ::send(m_sock, (const char *)buffer + (size - res), res, 0); local
100 if (stat < 0) {
102 retval = stat;
107 res -= stat;
122 ssize_t stat = ::recv(m_sock, (char *)(buf) + len - res, res, 0); local
123 if (stat > 0) {
124 res -= stat;
127 if (stat == 0 || errno != EINTR) { // client shutdown or error
/development/tools/emulator/opengl/system/OpenglSystemCommon/
H A DQemuPipeStream.cpp94 ssize_t stat = ::write(m_sock, (const char *)(buf) + (len - res), res); local
95 if (stat > 0) {
96 res -= stat;
99 if (stat == 0) { /* EOF */
107 retval = stat;
125 ssize_t stat = ::read(m_sock, (char *)(buf) + len - res, len); local
126 if (stat == 0) {
129 } else if (stat < 0) {
138 res -= stat;
/development/ndk/platforms/android-3/arch-arm/include/asm/
H A Dstat.h31 struct stat { struct
/development/ndk/platforms/android-3/include/sys/
H A Dstat.h34 #include <linux/stat.h>
44 struct stat { struct
85 extern int stat(const char *, struct stat *);
86 extern int fstat(int, struct stat *);
87 extern int lstat(const char *, struct stat *);
91 #define stat64 stat
100 extern int fstatat(int dirfd, const char *path, struct stat *buf, int flags);
/development/ndk/platforms/android-9/arch-mips/include/sys/
H A Dstat.h34 #include <linux/stat.h>
45 struct stat { struct
77 struct stat {
119 extern int stat(const char *, struct stat *);
120 extern int fstat(int, struct stat *);
121 extern int lstat(const char *, struct stat *);
125 #define stat64 stat
134 extern int fstatat(int dirfd, const char *path, struct stat *buf, int flags);
/development/ndk/platforms/android-3/include/linux/nfsd/
H A Dxdr.h96 struct kstat stat; member in struct:nfsd_attrstat
101 struct kstat stat; member in struct:nfsd_diropres
111 struct kstat stat; member in struct:nfsd_readres
/development/ndk/platforms/android-3/include/linux/sunrpc/
H A Dxprt.h160 } stat; member in struct:rpc_xprt
/development/ndk/platforms/android-3/include/linux/
H A Dcoda.h507 struct coda_statfs stat; member in struct:coda_statfs_out
H A Dcdrom.h186 int stat; member in struct:cdrom_generic_command

Completed in 383 milliseconds