taglinefilesource code
buf19fs/char_dev.ctypedef (*crw_ptr)(int rw,unsigned minor,char * buf,int count,off_t * pos);
buf21fs/char_dev.cstatic int rw_ttyx(int rw,unsigned minor,char * buf,int count,off_t * pos)
buf27fs/char_dev.cstatic int rw_tty(int rw,unsigned minor,char * buf,int count, off_t * pos)
buf31fs/char_dev.creturn rw_ttyx(rw,current->tty,buf,count,pos);
buf34fs/char_dev.cstatic int rw_ram(int rw,char * buf, int count, off_t *pos)
buf39fs/char_dev.cstatic int rw_mem(int rw,char * buf, int count, off_t * pos)
buf44fs/char_dev.cstatic int rw_kmem(int rw,char * buf, int count, off_t * pos)
buf49fs/char_dev.cstatic int rw_port(int rw,char * buf, int count, off_t * pos)
buf55fs/char_dev.cput_fs_byte(inb(i),buf++);
buf65fs/char_dev.cstatic int rw_memory(int rw, unsigned minor, char * buf, int count, off_t * pos)
buf69fs/char_dev.creturn rw_ram(rw,buf,count,pos);
buf71fs/char_dev.creturn rw_mem(rw,buf,count,pos);
buf73fs/char_dev.creturn rw_kmem(rw,buf,count,pos);
buf77fs/char_dev.creturn rw_port(rw,buf,count,pos);
buf95fs/char_dev.cint rw_char(int rw,int dev, char * buf, int count, off_t * pos)
buf105fs/char_dev.creturn call_addr(rw,MINOR(dev),buf,count,pos);