taglinefilesource code
qp89drivers/block/mcd.cstatic int GetQChannelInfo(struct mcd_Toc *qp);
qp1062drivers/block/mcd.cGetQChannelInfo(struct mcd_Toc *qp)
qp1077drivers/block/mcd.cif (getValue(&qp -> ctrl_addr) < 0) return -1;
qp1078drivers/block/mcd.cif (getValue(&qp -> track) < 0) return -1;
qp1079drivers/block/mcd.cif (getValue(&qp -> pointIndex) < 0) return -1;
qp1080drivers/block/mcd.cif (getValue(&qp -> trackTime.min) < 0) return -1;
qp1081drivers/block/mcd.cif (getValue(&qp -> trackTime.sec) < 0) return -1;
qp1082drivers/block/mcd.cif (getValue(&qp -> trackTime.frame) < 0) return -1;
qp1084drivers/block/mcd.cif (getValue(&qp -> diskTime.min) < 0) return -1;
qp1085drivers/block/mcd.cif (getValue(&qp -> diskTime.sec) < 0) return -1;
qp1086drivers/block/mcd.cif (getValue(&qp -> diskTime.frame) < 0) return -1;
qp598net/inet/ip.cstruct ipq *qp;
qp603net/inet/ip.cfor(qp = ipqueue; qp != NULL; qplast = qp, qp = qp->next) 
qp605net/inet/ip.cif (iph->id== qp->iph->id && iph->saddr == qp->iph->saddr &&
qp606net/inet/ip.ciph->daddr == qp->iph->daddr && iph->protocol == qp->iph->protocol) 
qp608net/inet/ip.cdel_timer(&qp->timer);  /* So it doesn't vanish on us. The timer will be reset anyway */
qp610net/inet/ip.creturn(qp);
qp624net/inet/ip.cstatic void ip_free(struct ipq *qp)
qp633net/inet/ip.cdel_timer(&qp->timer);
qp637net/inet/ip.cif (qp->prev == NULL) 
qp639net/inet/ip.cipqueue = qp->next;
qp645net/inet/ip.cqp->prev->next = qp->next;
qp646net/inet/ip.cif (qp->next != NULL) 
qp647net/inet/ip.cqp->next->prev = qp->prev;
qp652net/inet/ip.cfp = qp->fragments;
qp663net/inet/ip.ckfree_s(qp->mac, qp->maclen);
qp666net/inet/ip.ckfree_s(qp->iph, qp->ihlen + 8);
qp669net/inet/ip.ckfree_s(qp, sizeof(struct ipq));
qp680net/inet/ip.cstruct ipq *qp;
qp682net/inet/ip.cqp = (struct ipq *)arg;
qp691net/inet/ip.cif(qp->fragments!=NULL)
qp692net/inet/ip.cicmp_send(qp->fragments->skb,ICMP_TIME_EXCEEDED,
qp693net/inet/ip.cICMP_EXC_FRAGTIME, qp->dev);
qp698net/inet/ip.cip_free(qp);
qp711net/inet/ip.cstruct ipq *qp;
qp715net/inet/ip.cqp = (struct ipq *) kmalloc(sizeof(struct ipq), GFP_ATOMIC);
qp716net/inet/ip.cif (qp == NULL) 
qp720net/inet/ip.cskb->dev = qp->dev;
qp722net/inet/ip.cmemset(qp, 0, sizeof(struct ipq));
qp732net/inet/ip.cqp->mac = (unsigned char *) kmalloc(maclen, GFP_ATOMIC);
qp733net/inet/ip.cif (qp->mac == NULL) 
qp736net/inet/ip.ckfree_s(qp, sizeof(struct ipq));
qp745net/inet/ip.cqp->iph = (struct iphdr *) kmalloc(ihlen + 8, GFP_ATOMIC);
qp746net/inet/ip.cif (qp->iph == NULL) 
qp749net/inet/ip.ckfree_s(qp->mac, maclen);
qp750net/inet/ip.ckfree_s(qp, sizeof(struct ipq));
qp755net/inet/ip.cmemcpy(qp->mac, skb->data, maclen);
qp756net/inet/ip.cmemcpy(qp->iph, iph, ihlen + 8);
qp757net/inet/ip.cqp->len = 0;
qp758net/inet/ip.cqp->ihlen = ihlen;
qp759net/inet/ip.cqp->maclen = maclen;
qp760net/inet/ip.cqp->fragments = NULL;
qp761net/inet/ip.cqp->dev = dev;
qp764net/inet/ip.cqp->timer.expires = IP_FRAG_TIME;    /* about 30 seconds  */
qp765net/inet/ip.cqp->timer.data = (unsigned long) qp;    /* pointer to queue  */
qp766net/inet/ip.cqp->timer.function = ip_expire;      /* expire function  */
qp767net/inet/ip.cadd_timer(&qp->timer);
qp770net/inet/ip.cqp->prev = NULL;
qp772net/inet/ip.cqp->next = ipqueue;
qp773net/inet/ip.cif (qp->next != NULL) 
qp774net/inet/ip.cqp->next->prev = qp;
qp775net/inet/ip.cipqueue = qp;
qp777net/inet/ip.creturn(qp);
qp785net/inet/ip.cstatic int ip_done(struct ipq *qp)
qp791net/inet/ip.cif (qp->len == 0) 
qp795net/inet/ip.cfp = qp->fragments;
qp819net/inet/ip.cstatic struct sk_buff *ip_glue(struct ipq *qp)
qp831net/inet/ip.clen = qp->maclen + qp->ihlen + qp->len;
qp836net/inet/ip.cprintk("IP: queue_glue: no memory for glueing queue 0x%X\n", (int) qp);
qp837net/inet/ip.cip_free(qp);
qp842net/inet/ip.cskb->len = (len - qp->maclen);
qp848net/inet/ip.cmemcpy(ptr, ((unsigned char *) qp->mac), qp->maclen);
qp849net/inet/ip.cptr += qp->maclen;
qp850net/inet/ip.cmemcpy(ptr, ((unsigned char *) qp->iph), qp->ihlen);
qp851net/inet/ip.cptr += qp->ihlen;
qp852net/inet/ip.cskb->h.raw += qp->maclen;
qp857net/inet/ip.cfp = qp->fragments;
qp863net/inet/ip.cip_free(qp);
qp874net/inet/ip.cip_free(qp);
qp895net/inet/ip.cstruct ipq *qp;
qp904net/inet/ip.cqp = ip_find(iph);
qp912net/inet/ip.cif (qp != NULL)
qp913net/inet/ip.cip_free(qp);  /* Huh? How could this exist?? */
qp925net/inet/ip.cif (qp != NULL) 
qp927net/inet/ip.cdel_timer(&qp->timer);
qp928net/inet/ip.cqp->timer.expires = IP_FRAG_TIME;  /* about 30 seconds */
qp929net/inet/ip.cqp->timer.data = (unsigned long) qp;  /* pointer to queue */
qp930net/inet/ip.cqp->timer.function = ip_expire;    /* expire function */
qp931net/inet/ip.cadd_timer(&qp->timer);
qp938net/inet/ip.cif ((qp = ip_create(skb, iph, dev)) == NULL) 
qp965net/inet/ip.cqp->len = end;
qp974net/inet/ip.cfor(next = qp->fragments; next != NULL; next = next->next) 
qp1018net/inet/ip.cqp->fragments = next->next;
qp1050net/inet/ip.cqp->fragments = tfp;
qp1061net/inet/ip.cif (ip_done(qp)) 
qp1063net/inet/ip.cskb2 = ip_glue(qp);    /* glue together the fragments */