tag | line | file | source code |
fp | 186 | drivers/block/mcd.c | mcd_ioctl(struct inode *ip, struct file *fp, unsigned int cmd, |
fp | 756 | drivers/block/mcd.c | mcd_open(struct inode *ip, struct file *fp) |
fp | 3067 | drivers/block/sbpcd.c | int sbpcd_open(struct inode *ip, struct file *fp) |
fp | 516 | drivers/char/n_tty.c | char *fp, int count) |
fp | 540 | drivers/char/n_tty.c | for (i=count, p = cp, f = fp; i; i--, p++) { |
fp | 1459 | drivers/char/tty_io.c | char *fp; |
fp | 1464 | drivers/char/tty_io.c | fp = tty->flip.flag_buf + TTY_FLIPBUF_SIZE; |
fp | 1472 | drivers/char/tty_io.c | fp = tty->flip.flag_buf; |
fp | 1487 | drivers/char/tty_io.c | tty->ldisc.receive_buf(tty, cp, fp, count); |
fp | 1327 | drivers/net/depca.c | static short fp=1,sigLength=0; |
fp | 1367 | drivers/net/depca.c | if (fp) { /* only do this once!... */ |
fp | 1381 | drivers/net/depca.c | fp = 0; |
fp | 150 | drivers/net/ppp.c | char *fp, int count); |
fp | 895 | drivers/net/ppp.c | char *fp, int count) |
fp | 919 | drivers/net/ppp.c | if (fp) { |
fp | 920 | drivers/net/ppp.c | if (*fp && ppp->toss == 0) |
fp | 921 | drivers/net/ppp.c | ppp->toss = *fp; |
fp | 922 | drivers/net/ppp.c | fp++; |
fp | 667 | drivers/net/slip.c | char *fp, int count) |
fp | 683 | drivers/net/slip.c | if (*fp++) { |
fp | 40 | fs/binfmt_coff.c | struct file *fp); |
fp | 126 | fs/binfmt_coff.c | struct file *fp = NULL; /* Pointer to the file at "fd" */ |
fp | 387 | fs/binfmt_coff.c | fp = current->files->fd[fd]; |
fp | 483 | fs/binfmt_coff.c | status = do_mmap (fp, |
fp | 501 | fs/binfmt_coff.c | status = do_mmap (fp, |
fp | 541 | fs/binfmt_coff.c | status = preload_library (bprm, sect_ptr, fp); |
fp | 622 | fs/binfmt_coff.c | COFF_SCNHDR * sect, struct file *fp) |
fp | 40 | ibcs/binfmt_coff.c | struct file *fp); |
fp | 126 | ibcs/binfmt_coff.c | struct file *fp = NULL; /* Pointer to the file at "fd" */ |
fp | 387 | ibcs/binfmt_coff.c | fp = current->files->fd[fd]; |
fp | 483 | ibcs/binfmt_coff.c | status = do_mmap (fp, |
fp | 501 | ibcs/binfmt_coff.c | status = do_mmap (fp, |
fp | 541 | ibcs/binfmt_coff.c | status = preload_library (bprm, sect_ptr, fp); |
fp | 622 | ibcs/binfmt_coff.c | COFF_SCNHDR * sect, struct file *fp) |
fp | 37 | include/linux/tty_ldisc.h | char *fp, int count); |
fp | 234 | kernel/signal.c | static void setup_frame(struct sigaction * sa, unsigned long ** fp, unsigned long eip, |
fp | 241 | kernel/signal.c | frame = *fp; |
fp | 257 | kernel/signal.c | put_fs_long((long)*fp, frame+9); |
fp | 277 | kernel/signal.c | *fp = frame; |
fp | 569 | net/inet/ip.c | struct ipfrag *fp; |
fp | 571 | net/inet/ip.c | fp = (struct ipfrag *) kmalloc(sizeof(struct ipfrag), GFP_ATOMIC); |
fp | 572 | net/inet/ip.c | if (fp == NULL) |
fp | 577 | net/inet/ip.c | memset(fp, 0, sizeof(struct ipfrag)); |
fp | 580 | net/inet/ip.c | fp->offset = offset; |
fp | 581 | net/inet/ip.c | fp->end = end; |
fp | 582 | net/inet/ip.c | fp->len = end - offset; |
fp | 583 | net/inet/ip.c | fp->skb = skb; |
fp | 584 | net/inet/ip.c | fp->ptr = ptr; |
fp | 586 | net/inet/ip.c | return(fp); |
fp | 625 | net/inet/ip.c | struct ipfrag *fp; |
fp | 651 | net/inet/ip.c | fp = qp->fragments; |
fp | 652 | net/inet/ip.c | while (fp != NULL) |
fp | 654 | net/inet/ip.c | xp = fp->next; |
fp | 655 | net/inet/ip.c | IS_SKB(fp->skb); |
fp | 656 | net/inet/ip.c | kfree_skb(fp->skb,FREE_READ); |
fp | 657 | net/inet/ip.c | kfree_s(fp, sizeof(struct ipfrag)); |
fp | 658 | net/inet/ip.c | fp = xp; |
fp | 786 | net/inet/ip.c | struct ipfrag *fp; |
fp | 794 | net/inet/ip.c | fp = qp->fragments; |
fp | 796 | net/inet/ip.c | while (fp != NULL) |
fp | 798 | net/inet/ip.c | if (fp->offset > offset) |
fp | 800 | net/inet/ip.c | offset = fp->end; |
fp | 801 | net/inet/ip.c | fp = fp->next; |
fp | 822 | net/inet/ip.c | struct ipfrag *fp; |
fp | 856 | net/inet/ip.c | fp = qp->fragments; |
fp | 857 | net/inet/ip.c | while(fp != NULL) |
fp | 859 | net/inet/ip.c | if(count+fp->len>skb->len) |
fp | 867 | net/inet/ip.c | memcpy((ptr + fp->offset), fp->ptr, fp->len); |
fp | 868 | net/inet/ip.c | count += fp->len; |
fp | 869 | net/inet/ip.c | fp = fp->next; |