tag | line | file | source code |
fp | 186 | drivers/block/mcd.c | mcd_ioctl(struct inode *ip, struct file *fp, unsigned int cmd, |
fp | 742 | drivers/block/mcd.c | mcd_open(struct inode *ip, struct file *fp) |
fp | 71 | 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->filp[fd]; |
fp | 483 | fs/binfmt_coff.c | status = do_mmap (fp, |
fp | 501 | fs/binfmt_coff.c | status = do_mmap (fp, |
fp | 539 | fs/binfmt_coff.c | status = preload_library (bprm, sect_ptr, fp); |
fp | 620 | fs/binfmt_coff.c | COFF_SCNHDR * sect, struct file *fp) |
fp | 244 | kernel/signal.c | static void setup_frame(struct sigaction * sa, unsigned long ** fp, unsigned long eip, |
fp | 251 | kernel/signal.c | frame = *fp; |
fp | 267 | kernel/signal.c | put_fs_long((long)*fp, frame+9); |
fp | 287 | kernel/signal.c | *fp = frame; |
fp | 520 | net/inet/ip.c | struct ipfrag *fp; |
fp | 522 | net/inet/ip.c | fp = (struct ipfrag *) kmalloc(sizeof(struct ipfrag), GFP_ATOMIC); |
fp | 523 | net/inet/ip.c | if (fp == NULL) |
fp | 528 | net/inet/ip.c | memset(fp, 0, sizeof(struct ipfrag)); |
fp | 531 | net/inet/ip.c | fp->offset = offset; |
fp | 532 | net/inet/ip.c | fp->end = end; |
fp | 533 | net/inet/ip.c | fp->len = end - offset; |
fp | 534 | net/inet/ip.c | fp->skb = skb; |
fp | 535 | net/inet/ip.c | fp->ptr = ptr; |
fp | 537 | net/inet/ip.c | return(fp); |
fp | 575 | net/inet/ip.c | struct ipfrag *fp; |
fp | 599 | net/inet/ip.c | fp = qp->fragments; |
fp | 600 | net/inet/ip.c | while (fp != NULL) |
fp | 602 | net/inet/ip.c | xp = fp->next; |
fp | 603 | net/inet/ip.c | IS_SKB(fp->skb); |
fp | 604 | net/inet/ip.c | kfree_skb(fp->skb,FREE_READ); |
fp | 605 | net/inet/ip.c | kfree_s(fp, sizeof(struct ipfrag)); |
fp | 606 | net/inet/ip.c | fp = xp; |
fp | 720 | net/inet/ip.c | struct ipfrag *fp; |
fp | 728 | net/inet/ip.c | fp = qp->fragments; |
fp | 730 | net/inet/ip.c | while (fp != NULL) |
fp | 732 | net/inet/ip.c | if (fp->offset > offset) |
fp | 734 | net/inet/ip.c | offset = fp->end; |
fp | 735 | net/inet/ip.c | fp = fp->next; |
fp | 748 | net/inet/ip.c | struct ipfrag *fp; |
fp | 781 | net/inet/ip.c | fp = qp->fragments; |
fp | 782 | net/inet/ip.c | while(fp != NULL) |
fp | 784 | net/inet/ip.c | if(count+fp->len>skb->len) |
fp | 791 | net/inet/ip.c | memcpy((ptr + fp->offset), fp->ptr, fp->len); |
fp | 792 | net/inet/ip.c | count += fp->len; |
fp | 793 | net/inet/ip.c | fp = fp->next; |