Searched refs:file (Results 1 - 25 of 1643) sorted by relevance

1234567891011>>

/asus-wl-520gu-7.0.1.45/src/linux/linux/drivers/net/hnd/
H A Dshared_ksyms.sh19 for file in $* ; do
20 ${NM} $file | sed -ne 's/[0-9A-Fa-f]* [DRT] \([^ ]*\)/extern void \1; EXPORT_SYMBOL(\1);/p'
/asus-wl-520gu-7.0.1.45/src/router/iproute2/reference/asm-x86_64/
H A Dioctl32.h4 struct file;
12 * arguments to handler: fd: file descriptor
15 * struct file *file: file descriptor pointer.
18 extern int register_ioctl32_conversion(unsigned int cmd, int (*handler)(unsigned int, unsigned int, unsigned long, struct file *));
/asus-wl-520gu-7.0.1.45/src/linux/linux/include/asm-x86_64/
H A Dioctl32.h4 struct file;
12 * arguments to handler: fd: file descriptor
15 * struct file *file: file descriptor pointer.
18 extern int register_ioctl32_conversion(unsigned int cmd, int (*handler)(unsigned int, unsigned int, unsigned long, struct file *));
/asus-wl-520gu-7.0.1.45/src/linux/linux/drivers/s390/char/
H A Dtapechar.h24 ssize_t tape_read(struct file *, char *, size_t, loff_t *);
25 ssize_t tape_write(struct file *, const char *, size_t, loff_t *);
26 int tape_ioctl(struct inode *,struct file *,unsigned int,unsigned long);
27 int tape_open (struct inode *,struct file *);
28 int tape_release (struct inode *,struct file *);
/asus-wl-520gu-7.0.1.45/src/router/e2fsprogs-1.40.8/lib/ext2fs/
H A Dfileio.c2 * fileio.c --- Simple file I/O routines
7 * This file may be redistributed under the terms of the GNU Public
33 #define BMAP_BUFFER (file->buf + fs->blocksize)
39 ext2_file_t file; local
43 * Don't let caller create or open a file for writing if the
50 retval = ext2fs_get_mem(sizeof(struct ext2_file), &file);
54 memset(file, 0, sizeof(struct ext2_file));
55 file->magic = EXT2_ET_MAGIC_EXT2_FILE;
56 file->fs = fs;
57 file
91 ext2fs_file_get_fs(ext2_file_t file) argument
102 ext2fs_file_flush(ext2_file_t file) argument
140 sync_buffer_position(ext2_file_t file) argument
165 load_buffer(ext2_file_t file, int dontfill) argument
192 ext2fs_file_close(ext2_file_t file) argument
208 ext2fs_file_read(ext2_file_t file, void *buf, unsigned int wanted, unsigned int *got) argument
250 ext2fs_file_write(ext2_file_t file, const void *buf, unsigned int nbytes, unsigned int *written) argument
296 ext2fs_file_llseek(ext2_file_t file, __u64 offset, int whence, __u64 *ret_pos) argument
316 ext2fs_file_lseek(ext2_file_t file, ext2_off_t offset, int whence, ext2_off_t *ret_pos) argument
333 ext2fs_file_get_lsize(ext2_file_t file, __u64 *ret_size) argument
344 ext2fs_file_get_size(ext2_file_t file) argument
360 ext2fs_file_set_size(ext2_file_t file, ext2_off_t size) argument
[all...]
/asus-wl-520gu-7.0.1.45/src/router/busybox/pwd_grp/
H A Dfgetgrent.c2 * fgetgrent.c - This file is part of the libc-8086/grp package for ELKS,
25 struct group *fgetgrent(FILE * file) argument
27 if (file == NULL) {
32 return __getgrent(fileno(file));
H A Dfgetpwent.c2 * fgetpwent.c - This file is part of the libc-8086/pwd package for ELKS,
25 struct passwd *fgetpwent(FILE * file) argument
27 if (file == NULL) {
32 return __getpwent(fileno(file));
/asus-wl-520gu-7.0.1.45/src/linux/linux/fs/
H A Dread_write.c25 #include <linux/file.h>
38 ssize_t generic_read_dir(struct file *filp, char *buf, size_t siz, loff_t *ppos)
43 loff_t generic_file_llseek(struct file *file, loff_t offset, int origin) argument
49 offset += file->f_dentry->d_inode->i_size;
52 offset += file->f_pos;
55 if (offset>=0 && offset<=file->f_dentry->d_inode->i_sb->s_maxbytes) {
56 if (offset != file->f_pos) {
57 file->f_pos = offset;
58 file
66 no_llseek(struct file *file, loff_t offset, int origin) argument
71 default_llseek(struct file *file, loff_t offset, int origin) argument
94 llseek(struct file *file, loff_t offset, int origin) argument
111 struct file * file; local
135 struct file * file; local
165 struct file * file; local
190 struct file * file; local
214 do_readv_writev(int type, struct file *file, const struct iovec * vector, unsigned long count) argument
325 struct file * file; local
345 struct file * file; local
370 struct file * file; local
401 struct file * file; local
[all...]
H A Dfile_table.c10 #include <linux/file.h>
26 /* Find an unused file structure and return a pointer to it.
27 * Returns NULL, if there are no more free file structures or
32 struct file * get_empty_filp(void)
35 struct file * f;
40 f = list_entry(free_list.next, struct file, f_list);
73 printk(KERN_INFO "VFS: file-max limit %d reached\n", files_stat.max_files);
81 * Clear and initialize a (private) struct file for the given dentry,
85 int init_private_file(struct file *filp, struct dentry *dentry, int mode)
100 void fput(struct file * fil argument
131 struct file * file; local
144 put_filp(struct file *file) argument
155 file_move(struct file *file, struct list_head *list) argument
172 struct file *file = list_entry(p, struct file, f_list); local
[all...]
/asus-wl-520gu-7.0.1.45/src/linux/linux/drivers/sound/
H A Dsound_calls.h25 unsigned int DMAbuf_poll(struct file *file, int dev, poll_table *wait);
34 int audio_read (int dev, struct file *file, char *buf, int count);
35 int audio_write (int dev, struct file *file, const char *buf, int count);
36 int audio_open (int dev, struct file *file);
37 void audio_release (int dev, struct file *file);
[all...]
/asus-wl-520gu-7.0.1.45/src/router/udhcpd/
H A Dfiles.h13 int read_config(char *file);
15 void read_leases(char *file);
/asus-wl-520gu-7.0.1.45/src/linux/linux/net/khttpd/
H A Dmake_times_h.c3 This program generates the "times.h" file with the zulu-times of the first of
67 FILE *file; local
69 file=fopen("times.h","w");
71 if (file==NULL)
74 fprintf(file,"static time_t TimeDays[10][13] = { \n");
80 fprintf(file," { ");
83 fprintf(file,"%i",(int)GetDay(1,M,Y));
84 fprintf(file,",\t");
89 fprintf(file,"%i } ",(int)GetDay(1,0,Y+1));
90 if (Y!=2006) fprintf(file,",");
[all...]
/asus-wl-520gu-7.0.1.45/src/linux/linux/arch/x86_64/lib/
H A Diodebug.c3 void * __io_virt_debug(unsigned long x, const char *file, int line) argument
6 printk("io mapaddr 0x%05lx not valid at %s:%d!\n", x, file, line);
12 unsigned long __io_phys_debug(unsigned long x, const char *file, int line) argument
15 printk("io mapaddr 0x%05lx not valid at %s:%d!\n", x, file, line);
/asus-wl-520gu-7.0.1.45/src/linux/linux/arch/i386/lib/
H A Diodebug.c3 void * __io_virt_debug(unsigned long x, const char *file, int line) argument
6 printk("io mapaddr 0x%05lx not valid at %s:%d!\n", x, file, line);
12 unsigned long __io_phys_debug(unsigned long x, const char *file, int line) argument
15 printk("io mapaddr 0x%05lx not valid at %s:%d!\n", x, file, line);
/asus-wl-520gu-7.0.1.45/src/linux/linux/scripts/
H A Dcheckincludes.pl6 foreach $file (@ARGV) {
7 open(FILE, $file) or die "Cannot open $file: $!.\n";
19 print "$file: $filename is included more than once.\n";
/asus-wl-520gu-7.0.1.45/src/cfe/cfe/main/
H A Dcfe_zlibfs.c4 * "Compressed" file system File: cfe_zlibfs.c
6 * This is more of a filesystem "hook" than an actual file system.
7 * You can stick it on the front of the chain of file systems
28 * as they appear in the source file.
74 * File system context - describes overall file system info,
85 * File context - describes an open file on the file system.
127 #define ASCII_FLAG 0x01 /* bit 0 set: file probably ascii text */
130 #define ORIG_NAME 0x08 /* bit 3 set: original file name present */
131 #define COMMENT 0x10 /* bit 4 set: file commen
186 get_byte(zlibfs_file_t *file,uint8_t *ch) argument
199 check_header(zlibfs_file_t *file) argument
249 zlibfs_file_t *file; local
319 zlibfs_file_t *file = (zlibfs_file_t *) ref; local
397 zlibfs_file_t *file = (zlibfs_file_t *) ref; local
428 zlibfs_file_t *file = (zlibfs_file_t *) ref; local
[all...]
H A Dcfe_rawfs.c4 * "Raw" file system File: cfe_rawfs.c
8 * file directly onto a disk or flash card and then run
27 * as they appear in the source file.
70 * File system context - describes overall file system info,
81 * File context - describes an open file on the file system.
89 int raw_baseoffset; /* starting offset of raw "file" */
90 int raw_length; /* length of file, -1 for whole device */
157 raw_file_t *file; local
165 file
205 raw_file_t *file = (raw_file_t *) ref; local
243 raw_file_t *file = (raw_file_t *) ref; local
273 raw_file_t *file = (raw_file_t *) ref; local
[all...]
H A Dcfe_httpfs.c4 * "HTTP" file system File: cfe_httpfs.c
25 * as they appear in the source file.
76 * File system context - describes overall file system info,
85 * File context - describes an open file on the file system.
147 http_file_t *file; local
164 file = KMALLOC(sizeof(http_file_t),0);
165 if (!file) {
169 file->http_filename = lib_strdup(filename);
170 if (!file
320 http_file_t *file = (http_file_t *) ref; local
340 http_file_t *file = (http_file_t *) ref; local
382 http_file_t *file = (http_file_t *) ref; local
[all...]
/asus-wl-520gu-7.0.1.45/src/router/iproute2/reference/linux/
H A Dfile.h8 extern void FASTCALL(fput(struct file *));
9 extern struct file * FASTCALL(fget(unsigned int fd));
32 static inline struct file * fcheck_files(struct files_struct *files, unsigned int fd)
34 struct file * file = NULL; local
37 file = files->fd[fd];
38 return file;
42 * Check whether the specified fd has an open file.
44 static inline struct file * fcheck(unsigned int fd)
46 struct file * fil local
[all...]
/asus-wl-520gu-7.0.1.45/src/linux/linux/include/linux/
H A Dfile.h8 extern void FASTCALL(fput(struct file *));
9 extern struct file * FASTCALL(fget(unsigned int fd));
32 static inline struct file * fcheck_files(struct files_struct *files, unsigned int fd)
34 struct file * file = NULL; local
37 file = files->fd[fd];
38 return file;
42 * Check whether the specified fd has an open file.
44 static inline struct file * fcheck(unsigned int fd)
46 struct file * fil local
[all...]
/asus-wl-520gu-7.0.1.45/src/linux/linux/fs/lockd/
H A Dsvcsubs.c26 * Global file hash table
46 struct nlm_file *file; local
57 /* Lock file table */
60 for (file = nlm_files[hash]; file; file = file->f_next)
61 if (!memcmp(&file->f_handle, f, sizeof(*f)))
64 dprintk("lockd: creating file for (%08x %08x %08x %08x %08x %08x)\n",
68 file
116 nlm_delete_file(struct nlm_file *file) argument
142 nlm_traverse_locks(struct nlm_host *host, struct nlm_file *file, int action) argument
186 nlm_inspect_file(struct nlm_host *host, struct nlm_file *file, int action) argument
206 struct nlm_file *file, **fp; local
245 nlm_release_file(struct nlm_file *file) argument
[all...]
/asus-wl-520gu-7.0.1.45/src/linux/linux/fs/proc/
H A Dkmsg.c21 static int kmsg_open(struct inode * inode, struct file * file) argument
26 static int kmsg_release(struct inode * inode, struct file * file) argument
32 static ssize_t kmsg_read(struct file * file, char * buf, argument
38 static unsigned int kmsg_poll(struct file *file, poll_table * wait) argument
40 poll_wait(file, &log_wait, wait);
/asus-wl-520gu-7.0.1.45/src/linux/linux/drivers/isdn/
H A Disdn_ppp.h15 extern int isdn_ppp_read(int, struct file *, char *, int);
16 extern int isdn_ppp_write(int, struct file *, const char *, int);
17 extern int isdn_ppp_open(int, struct file *);
25 extern unsigned int isdn_ppp_poll(struct file *, struct poll_table_struct *);
26 extern int isdn_ppp_ioctl(int, struct file *, unsigned int, unsigned long);
27 extern void isdn_ppp_release(int, struct file *);
/asus-wl-520gu-7.0.1.45/src/router/LPRng/src/
H A Dlprng_index_certs.sh42 for file in *.crt; do
43 if [ ".`grep SKIPME $file`" != . ]; then
44 echo dummy | awk '{ printf("%-15s ... Skipped\n", file); }' "file=$file";
48 hash="`$ssl_program x509 -noout -hash <$file`";
52 echo dummy | awk '{ printf("%-15s ... %s\n", file, hash); }' "file=$file" "hash=$hash.$n";
53 ln -s $file
[all...]
/asus-wl-520gu-7.0.1.45/src/router/library/libiconv-1.8/tests/
H A Dcheck-translit5 file="$2"
9 ../src/iconv_no_i18n -f "$fromcode" -t "$tocode"//TRANSLIT < "${srcdir}"/"$file"."$fromcode" > tmp
10 cmp "${srcdir}"/"$file"."$tocode" tmp

Completed in 297 milliseconds

1234567891011>>