tag | line | file | source code |
fp | 239 | drivers/block/mcd.c | mcd_ioctl(struct inode *ip, struct file *fp, unsigned int cmd, |
fp | 1026 | drivers/block/mcd.c | mcd_open(struct inode *ip, struct file *fp) |
fp | 1033 | drivers/block/mcd.c | if (fp->f_mode & 2) /* write access? */ |
fp | 3232 | drivers/block/sbpcd.c | static int sbpcd_open(struct inode *ip, struct file *fp) |
fp | 3238 | drivers/block/sbpcd.c | if (fp->f_mode & 2) |
fp | 517 | drivers/char/n_tty.c | char *fp, int count) |
fp | 541 | drivers/char/n_tty.c | for (i=count, p = cp, f = fp; i; i--, p++) { |
fp | 1473 | drivers/char/tty_io.c | char *fp; |
fp | 1478 | drivers/char/tty_io.c | fp = tty->flip.flag_buf + TTY_FLIPBUF_SIZE; |
fp | 1486 | drivers/char/tty_io.c | fp = tty->flip.flag_buf; |
fp | 1501 | drivers/char/tty_io.c | tty->ldisc.receive_buf(tty, cp, fp, count); |
fp | 1436 | drivers/net/depca.c | static short fp=1,sigLength=0; |
fp | 1461 | drivers/net/depca.c | if (fp) { /* only do this once!... */ |
fp | 1475 | drivers/net/depca.c | fp = 0; |
fp | 151 | drivers/net/ppp.c | char *fp, int count); |
fp | 912 | drivers/net/ppp.c | char *fp, int count) |
fp | 936 | drivers/net/ppp.c | if (fp) { |
fp | 937 | drivers/net/ppp.c | if (*fp && ppp->toss == 0) |
fp | 938 | drivers/net/ppp.c | ppp->toss = *fp; |
fp | 939 | drivers/net/ppp.c | fp++; |
fp | 647 | drivers/net/slip.c | char *fp, int count) |
fp | 663 | drivers/net/slip.c | if (fp && *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 | 232 | kernel/signal.c | static void setup_frame(struct sigaction * sa, unsigned long ** fp, unsigned long eip, |
fp | 239 | kernel/signal.c | frame = *fp; |
fp | 258 | kernel/signal.c | put_fs_long((long)*fp, frame+9); |
fp | 278 | kernel/signal.c | *fp = frame; |
fp | 572 | net/inet/ip.c | struct ipfrag *fp; |
fp | 574 | net/inet/ip.c | fp = (struct ipfrag *) kmalloc(sizeof(struct ipfrag), GFP_ATOMIC); |
fp | 575 | net/inet/ip.c | if (fp == NULL) |
fp | 580 | net/inet/ip.c | memset(fp, 0, sizeof(struct ipfrag)); |
fp | 583 | net/inet/ip.c | fp->offset = offset; |
fp | 584 | net/inet/ip.c | fp->end = end; |
fp | 585 | net/inet/ip.c | fp->len = end - offset; |
fp | 586 | net/inet/ip.c | fp->skb = skb; |
fp | 587 | net/inet/ip.c | fp->ptr = ptr; |
fp | 589 | net/inet/ip.c | return(fp); |
fp | 628 | net/inet/ip.c | struct ipfrag *fp; |
fp | 654 | net/inet/ip.c | fp = qp->fragments; |
fp | 655 | net/inet/ip.c | while (fp != NULL) |
fp | 657 | net/inet/ip.c | xp = fp->next; |
fp | 658 | net/inet/ip.c | IS_SKB(fp->skb); |
fp | 659 | net/inet/ip.c | kfree_skb(fp->skb,FREE_READ); |
fp | 660 | net/inet/ip.c | kfree_s(fp, sizeof(struct ipfrag)); |
fp | 661 | net/inet/ip.c | fp = xp; |
fp | 789 | net/inet/ip.c | struct ipfrag *fp; |
fp | 797 | net/inet/ip.c | fp = qp->fragments; |
fp | 799 | net/inet/ip.c | while (fp != NULL) |
fp | 801 | net/inet/ip.c | if (fp->offset > offset) |
fp | 803 | net/inet/ip.c | offset = fp->end; |
fp | 804 | net/inet/ip.c | fp = fp->next; |
fp | 825 | net/inet/ip.c | struct ipfrag *fp; |
fp | 859 | net/inet/ip.c | fp = qp->fragments; |
fp | 860 | net/inet/ip.c | while(fp != NULL) |
fp | 862 | net/inet/ip.c | if(count+fp->len>skb->len) |
fp | 870 | net/inet/ip.c | memcpy((ptr + fp->offset), fp->ptr, fp->len); |
fp | 871 | net/inet/ip.c | count += fp->len; |
fp | 872 | net/inet/ip.c | fp = fp->next; |