tag | line | file | source code |
statbuf | 14 | fs/stat.c | static void cp_old_stat(struct inode * inode, struct old_stat * statbuf) |
statbuf | 20 | fs/stat.c | verify_area(statbuf,sizeof (*statbuf)); |
statbuf | 35 | fs/stat.c | memcpy_tofs(statbuf,&tmp,sizeof(tmp)); |
statbuf | 38 | fs/stat.c | static void cp_new_stat(struct inode * inode, struct new_stat * statbuf) |
statbuf | 43 | fs/stat.c | verify_area(statbuf,sizeof (*statbuf)); |
statbuf | 79 | fs/stat.c | memcpy_tofs(statbuf,&tmp,sizeof(tmp)); |
statbuf | 82 | fs/stat.c | int sys_stat(char * filename, struct old_stat * statbuf) |
statbuf | 88 | fs/stat.c | cp_old_stat(inode,statbuf); |
statbuf | 93 | fs/stat.c | int sys_newstat(char * filename, struct new_stat * statbuf) |
statbuf | 99 | fs/stat.c | cp_new_stat(inode,statbuf); |
statbuf | 104 | fs/stat.c | int sys_lstat(char * filename, struct old_stat * statbuf) |
statbuf | 110 | fs/stat.c | cp_old_stat(inode,statbuf); |
statbuf | 115 | fs/stat.c | int sys_newlstat(char * filename, struct new_stat * statbuf) |
statbuf | 121 | fs/stat.c | cp_new_stat(inode,statbuf); |
statbuf | 126 | fs/stat.c | int sys_fstat(unsigned int fd, struct old_stat * statbuf) |
statbuf | 133 | fs/stat.c | cp_old_stat(inode,statbuf); |
statbuf | 137 | fs/stat.c | int sys_newfstat(unsigned int fd, struct new_stat * statbuf) |
statbuf | 144 | fs/stat.c | cp_new_stat(inode,statbuf); |