taglinefilesource code
qp141drivers/block/mcd.cstatic int GetQChannelInfo(struct mcd_Toc *qp);
qp1355drivers/block/mcd.cGetQChannelInfo(struct mcd_Toc *qp)
qp1370drivers/block/mcd.cif (getValue(&qp -> ctrl_addr) < 0) return -1;
qp1371drivers/block/mcd.cif (getValue(&qp -> track) < 0) return -1;
qp1372drivers/block/mcd.cif (getValue(&qp -> pointIndex) < 0) return -1;
qp1373drivers/block/mcd.cif (getValue(&qp -> trackTime.min) < 0) return -1;
qp1374drivers/block/mcd.cif (getValue(&qp -> trackTime.sec) < 0) return -1;
qp1375drivers/block/mcd.cif (getValue(&qp -> trackTime.frame) < 0) return -1;
qp1377drivers/block/mcd.cif (getValue(&qp -> diskTime.min) < 0) return -1;
qp1378drivers/block/mcd.cif (getValue(&qp -> diskTime.sec) < 0) return -1;
qp1379drivers/block/mcd.cif (getValue(&qp -> diskTime.frame) < 0) return -1;
qp599net/inet/ip.cstruct ipq *qp;
qp604net/inet/ip.cfor(qp = ipqueue; qp != NULL; qplast = qp, qp = qp->next)
qp606net/inet/ip.cif (iph->id== qp->iph->id && iph->saddr == qp->iph->saddr &&
qp607net/inet/ip.ciph->daddr == qp->iph->daddr && iph->protocol == qp->iph->protocol)
qp609net/inet/ip.cdel_timer(&qp->timer);  /* So it doesn't vanish on us. The timer will be reset anyway */
qp611net/inet/ip.creturn(qp);
qp625net/inet/ip.cstatic void ip_free(struct ipq *qp)
qp634net/inet/ip.cdel_timer(&qp->timer);
qp638net/inet/ip.cif (qp->prev == NULL)
qp640net/inet/ip.cipqueue = qp->next;
qp646net/inet/ip.cqp->prev->next = qp->next;
qp647net/inet/ip.cif (qp->next != NULL)
qp648net/inet/ip.cqp->next->prev = qp->prev;
qp653net/inet/ip.cfp = qp->fragments;
qp664net/inet/ip.ckfree_s(qp->mac, qp->maclen);
qp667net/inet/ip.ckfree_s(qp->iph, qp->ihlen + 8);
qp670net/inet/ip.ckfree_s(qp, sizeof(struct ipq));
qp681net/inet/ip.cstruct ipq *qp;
qp683net/inet/ip.cqp = (struct ipq *)arg;
qp692net/inet/ip.cif(qp->fragments!=NULL)
qp693net/inet/ip.cicmp_send(qp->fragments->skb,ICMP_TIME_EXCEEDED,
qp694net/inet/ip.cICMP_EXC_FRAGTIME, qp->dev);
qp699net/inet/ip.cip_free(qp);
qp712net/inet/ip.cstruct ipq *qp;
qp716net/inet/ip.cqp = (struct ipq *) kmalloc(sizeof(struct ipq), GFP_ATOMIC);
qp717net/inet/ip.cif (qp == NULL)
qp721net/inet/ip.cskb->dev = qp->dev;
qp723net/inet/ip.cmemset(qp, 0, sizeof(struct ipq));
qp733net/inet/ip.cqp->mac = (unsigned char *) kmalloc(maclen, GFP_ATOMIC);
qp734net/inet/ip.cif (qp->mac == NULL)
qp737net/inet/ip.ckfree_s(qp, sizeof(struct ipq));
qp746net/inet/ip.cqp->iph = (struct iphdr *) kmalloc(ihlen + 8, GFP_ATOMIC);
qp747net/inet/ip.cif (qp->iph == NULL)
qp750net/inet/ip.ckfree_s(qp->mac, maclen);
qp751net/inet/ip.ckfree_s(qp, sizeof(struct ipq));
qp756net/inet/ip.cmemcpy(qp->mac, skb->data, maclen);
qp757net/inet/ip.cmemcpy(qp->iph, iph, ihlen + 8);
qp758net/inet/ip.cqp->len = 0;
qp759net/inet/ip.cqp->ihlen = ihlen;
qp760net/inet/ip.cqp->maclen = maclen;
qp761net/inet/ip.cqp->fragments = NULL;
qp762net/inet/ip.cqp->dev = dev;
qp765net/inet/ip.cqp->timer.expires = IP_FRAG_TIME;    /* about 30 seconds  */
qp766net/inet/ip.cqp->timer.data = (unsigned long) qp;    /* pointer to queue  */
qp767net/inet/ip.cqp->timer.function = ip_expire;      /* expire function  */
qp768net/inet/ip.cadd_timer(&qp->timer);
qp771net/inet/ip.cqp->prev = NULL;
qp773net/inet/ip.cqp->next = ipqueue;
qp774net/inet/ip.cif (qp->next != NULL)
qp775net/inet/ip.cqp->next->prev = qp;
qp776net/inet/ip.cipqueue = qp;
qp778net/inet/ip.creturn(qp);
qp786net/inet/ip.cstatic int ip_done(struct ipq *qp)
qp792net/inet/ip.cif (qp->len == 0)
qp796net/inet/ip.cfp = qp->fragments;
qp820net/inet/ip.cstatic struct sk_buff *ip_glue(struct ipq *qp)
qp832net/inet/ip.clen = qp->maclen + qp->ihlen + qp->len;
qp837net/inet/ip.cprintk("IP: queue_glue: no memory for gluing queue 0x%X\n", (int) qp);
qp838net/inet/ip.cip_free(qp);
qp843net/inet/ip.cskb->len = (len - qp->maclen);
qp849net/inet/ip.cmemcpy(ptr, ((unsigned char *) qp->mac), qp->maclen);
qp850net/inet/ip.cptr += qp->maclen;
qp851net/inet/ip.cmemcpy(ptr, ((unsigned char *) qp->iph), qp->ihlen);
qp852net/inet/ip.cptr += qp->ihlen;
qp853net/inet/ip.cskb->h.raw += qp->maclen;
qp858net/inet/ip.cfp = qp->fragments;
qp864net/inet/ip.cip_free(qp);
qp875net/inet/ip.cip_free(qp);
qp896net/inet/ip.cstruct ipq *qp;
qp905net/inet/ip.cqp = ip_find(iph);
qp913net/inet/ip.cif (qp != NULL)
qp914net/inet/ip.cip_free(qp);  /* Huh? How could this exist?? */
qp926net/inet/ip.cif (qp != NULL)
qp928net/inet/ip.cdel_timer(&qp->timer);
qp929net/inet/ip.cqp->timer.expires = IP_FRAG_TIME;  /* about 30 seconds */
qp930net/inet/ip.cqp->timer.data = (unsigned long) qp;  /* pointer to queue */
qp931net/inet/ip.cqp->timer.function = ip_expire;    /* expire function */
qp932net/inet/ip.cadd_timer(&qp->timer);
qp939net/inet/ip.cif ((qp = ip_create(skb, iph, dev)) == NULL)
qp966net/inet/ip.cqp->len = end;
qp975net/inet/ip.cfor(next = qp->fragments; next != NULL; next = next->next)
qp1019net/inet/ip.cqp->fragments = next->next;
qp1051net/inet/ip.cqp->fragments = tfp;
qp1062net/inet/ip.cif (ip_done(qp))
qp1064net/inet/ip.cskb2 = ip_glue(qp);    /* glue together the fragments */