Lines Matching full:int

50 	int		st_dev;		/* device */
51 int st_ino; /* inode */
53 int st_nlink; /* number of hard links */
54 int st_uid; /* user ID of owner */
55 int st_gid; /* group ID of owner */
79 int yaffs_open(const YCHAR *path, int oflag, int mode) ;
81 int yaffs_close(int fd) ;
82 int yaffs_fsync(int fd) ;
83 int yaffs_fdatasync(int fd) ;
84 int yaffs_flush(int fd) ; /* same as yaffs_fsync() */
86 int yaffs_access(const YCHAR *path, int amode);
88 int yaffs_dup(int fd);
90 int yaffs_read(int fd, void *buf, unsigned int nbyte) ;
91 int yaffs_write(int fd, const void *buf, unsigned int nbyte) ;
93 int yaffs_pread(int fd, void *buf, unsigned int nbyte, loff_t offset);
94 int yaffs_pwrite(int fd, const void *buf, unsigned int nbyte, loff_t offset);
96 loff_t yaffs_lseek(int fd, loff_t offset, int whence) ;
98 int yaffs_truncate(const YCHAR *path, loff_t new_size);
99 int yaffs_ftruncate(int fd, loff_t new_size);
101 int yaffs_unlink(const YCHAR *path) ;
102 int yaffs_rename(const YCHAR *oldPath, const YCHAR *newPath) ;
104 int yaffs_stat(const YCHAR *path, struct yaffs_stat *buf) ;
105 int yaffs_lstat(const YCHAR *path, struct yaffs_stat *buf) ;
106 int yaffs_fstat(int fd, struct yaffs_stat *buf) ;
108 int yaffs_utime(const YCHAR *path, const struct yaffs_utimbuf *buf);
109 int yaffs_futime(int fd, const struct yaffs_utimbuf *buf);
112 int yaffs_setxattr(const char *path, const char *name,
113 const void *data, int size, int flags);
114 int yaffs_lsetxattr(const char *path, const char *name,
115 const void *data, int size, int flags);
116 int yaffs_fsetxattr(int fd, const char *name,
117 const void *data, int size, int flags);
119 int yaffs_getxattr(const char *path, const char *name,
120 void *data, int size);
121 int yaffs_lgetxattr(const char *path, const char *name,
122 void *data, int size);
123 int yaffs_fgetxattr(int fd, const char *name,
124 void *data, int size);
126 int yaffs_removexattr(const char *path, const char *name);
127 int yaffs_lremovexattr(const char *path, const char *name);
128 int yaffs_fremovexattr(int fd, const char *name);
130 int yaffs_listxattr(const char *path, char *list, int size);
131 int yaffs_llistxattr(const char *path, char *list, int size);
132 int yaffs_flistxattr(int fd, char *list, int size);
137 int yaffs_set_wince_times(int fd,
141 int yaffs_get_wince_times(int fd,
148 int yaffs_chmod(const YCHAR *path, mode_t mode);
149 int yaffs_fchmod(int fd, mode_t mode);
151 int yaffs_mkdir(const YCHAR *path, mode_t mode) ;
152 int yaffs_rmdir(const YCHAR *path) ;
157 int yaffs_closedir(yaffs_DIR *dirp) ;
159 int yaffs_mount(const YCHAR *path) ;
160 int yaffs_mount2(const YCHAR *path, int read_only);
161 int yaffs_mount_common(const YCHAR *path, int read_only, int skip_checkpt);
163 int yaffs_unmount(const YCHAR *path) ;
164 int yaffs_unmount2(const YCHAR *path, int force);
165 int yaffs_remount(const YCHAR *path, int force, int read_only);
168 int yaffs_sync(const YCHAR *path) ;
170 int yaffs_symlink(const YCHAR *oldpath, const YCHAR *newpath);
171 int yaffs_readlink(const YCHAR *path, YCHAR *buf, int bufsiz);
173 int yaffs_link(const YCHAR *oldpath, const YCHAR *newpath);
174 int yaffs_mknod(const YCHAR *pathname, mode_t mode, dev_t dev);
179 int yaffs_inodecount(const YCHAR *path);
181 int yaffs_n_handles(const YCHAR *path);
185 int yaffs_open_sharing(const YCHAR *path, int oflag, int mode, int shareMode);
190 int yaffs_start_up(void);
191 int yaffsfs_GetLastError(void);
198 int yaffs_get_error(void);
199 const char *yaffs_error_to_str(int err);
203 int yaffs_dump_dev(const YCHAR *path);
204 int yaffs_set_error(int error);