taglinefilesource code
qp89drivers/block/mcd.cstatic int GetQChannelInfo(struct mcd_Toc *qp);
qp1045drivers/block/mcd.cGetQChannelInfo(struct mcd_Toc *qp)
qp1060drivers/block/mcd.cif (getValue(&qp -> ctrl_addr) < 0) return -1;
qp1061drivers/block/mcd.cif (getValue(&qp -> track) < 0) return -1;
qp1062drivers/block/mcd.cif (getValue(&qp -> pointIndex) < 0) return -1;
qp1063drivers/block/mcd.cif (getValue(&qp -> trackTime.min) < 0) return -1;
qp1064drivers/block/mcd.cif (getValue(&qp -> trackTime.sec) < 0) return -1;
qp1065drivers/block/mcd.cif (getValue(&qp -> trackTime.frame) < 0) return -1;
qp1067drivers/block/mcd.cif (getValue(&qp -> diskTime.min) < 0) return -1;
qp1068drivers/block/mcd.cif (getValue(&qp -> diskTime.sec) < 0) return -1;
qp1069drivers/block/mcd.cif (getValue(&qp -> diskTime.frame) < 0) return -1;
qp338drivers/char/keyboard.cstruct tty_queue *qp;
qp343drivers/char/keyboard.cqp = &tty->read_q;
qp345drivers/char/keyboard.cif (LEFT(qp)) {
qp346drivers/char/keyboard.cqp->buf[qp->head] = ch;
qp347drivers/char/keyboard.cINC(qp->head);
qp353drivers/char/keyboard.cstruct tty_queue *qp;
qp360drivers/char/keyboard.cqp = &tty->read_q;
qp363drivers/char/keyboard.cif (LEFT(qp)) {
qp364drivers/char/keyboard.cqp->buf[qp->head] = ch;
qp365drivers/char/keyboard.cINC(qp->head);
qp547net/inet/ip.cstruct ipq *qp;
qp552net/inet/ip.cfor(qp = ipqueue; qp != NULL; qplast = qp, qp = qp->next) 
qp554net/inet/ip.cif (iph->id== qp->iph->id && iph->saddr == qp->iph->saddr &&
qp555net/inet/ip.ciph->daddr == qp->iph->daddr && iph->protocol == qp->iph->protocol) 
qp557net/inet/ip.cdel_timer(&qp->timer);  /* So it doesnt vanish on us. The timer will be reset anyway */
qp559net/inet/ip.creturn(qp);
qp573net/inet/ip.cstatic void ip_free(struct ipq *qp)
qp580net/inet/ip.cdel_timer(&qp->timer);
qp584net/inet/ip.cif (qp->prev == NULL) 
qp586net/inet/ip.cipqueue = qp->next;
qp592net/inet/ip.cqp->prev->next = qp->next;
qp593net/inet/ip.cif (qp->next != NULL) 
qp594net/inet/ip.cqp->next->prev = qp->prev;
qp599net/inet/ip.cfp = qp->fragments;
qp612net/inet/ip.ckfree_s(qp->mac, qp->maclen);
qp615net/inet/ip.ckfree_s(qp->iph, qp->ihlen + 8);
qp618net/inet/ip.ckfree_s(qp, sizeof(struct ipq));
qp628net/inet/ip.cstruct ipq *qp;
qp630net/inet/ip.cqp = (struct ipq *)arg;
qp631net/inet/ip.cDPRINTF((DBG_IP, "IP: queue_expire: fragment queue 0x%X timed out!\n", qp));
qp635net/inet/ip.cicmp_send(qp->iph->ip_src.s_addr, ICMP_TIME_EXCEEDED,
qp636net/inet/ip.cICMP_EXC_FRAGTIME, qp->iph);
qp638net/inet/ip.cif(qp->fragments!=NULL)
qp639net/inet/ip.cicmp_send(qp->fragments->skb,ICMP_TIME_EXCEEDED,
qp640net/inet/ip.cICMP_EXC_FRAGTIME, qp->dev);
qp643net/inet/ip.cip_free(qp);
qp656net/inet/ip.cstruct ipq *qp;
qp660net/inet/ip.cqp = (struct ipq *) kmalloc(sizeof(struct ipq), GFP_ATOMIC);
qp661net/inet/ip.cif (qp == NULL) 
qp666net/inet/ip.cmemset(qp, 0, sizeof(struct ipq));
qp670net/inet/ip.cqp->mac = (unsigned char *) kmalloc(maclen, GFP_ATOMIC);
qp671net/inet/ip.cif (qp->mac == NULL) 
qp674net/inet/ip.ckfree_s(qp, sizeof(struct ipq));
qp680net/inet/ip.cqp->iph = (struct iphdr *) kmalloc(ihlen + 8, GFP_ATOMIC);
qp681net/inet/ip.cif (qp->iph == NULL) 
qp684net/inet/ip.ckfree_s(qp->mac, maclen);
qp685net/inet/ip.ckfree_s(qp, sizeof(struct ipq));
qp690net/inet/ip.cmemcpy(qp->mac, skb->data, maclen);
qp691net/inet/ip.cmemcpy(qp->iph, iph, ihlen + 8);
qp692net/inet/ip.cqp->len = 0;
qp693net/inet/ip.cqp->ihlen = ihlen;
qp694net/inet/ip.cqp->maclen = maclen;
qp695net/inet/ip.cqp->fragments = NULL;
qp696net/inet/ip.cqp->dev = dev;
qp700net/inet/ip.cqp->timer.expires = IP_FRAG_TIME;    /* about 30 seconds  */
qp701net/inet/ip.cqp->timer.data = (unsigned long) qp;    /* pointer to queue  */
qp702net/inet/ip.cqp->timer.function = ip_expire;      /* expire function  */
qp703net/inet/ip.cadd_timer(&qp->timer);
qp706net/inet/ip.cqp->prev = NULL;
qp708net/inet/ip.cqp->next = ipqueue;
qp709net/inet/ip.cif (qp->next != NULL) 
qp710net/inet/ip.cqp->next->prev = qp;
qp711net/inet/ip.cipqueue = qp;
qp713net/inet/ip.creturn(qp);
qp718net/inet/ip.cstatic int ip_done(struct ipq *qp)
qp724net/inet/ip.cif (qp->len == 0) 
qp728net/inet/ip.cfp = qp->fragments;
qp744net/inet/ip.cstatic struct sk_buff *ip_glue(struct ipq *qp)
qp753net/inet/ip.clen = sizeof(struct sk_buff)+qp->maclen + qp->ihlen + qp->len;
qp756net/inet/ip.cprintk("IP: queue_glue: no memory for glueing queue 0x%X\n", (int) qp);
qp757net/inet/ip.cip_free(qp);
qp762net/inet/ip.cskb->len = (len - qp->maclen);
qp769net/inet/ip.cmemcpy(ptr, ((unsigned char *) qp->mac), qp->maclen);
qp771net/inet/ip.cptr += qp->maclen;
qp772net/inet/ip.cmemcpy(ptr, ((unsigned char *) qp->iph), qp->ihlen);
qp774net/inet/ip.cptr += qp->ihlen;
qp775net/inet/ip.cskb->h.raw += qp->maclen;
qp781net/inet/ip.cfp = qp->fragments;
qp797net/inet/ip.cip_free(qp);
qp813net/inet/ip.cstruct ipq *qp;
qp820net/inet/ip.cqp = ip_find(iph);
qp828net/inet/ip.cif (qp != NULL) 
qp829net/inet/ip.cip_free(qp);  /* Huh? How could this exist?? */
qp839net/inet/ip.cif (qp != NULL) 
qp841net/inet/ip.cdel_timer(&qp->timer);
qp842net/inet/ip.cqp->timer.expires = IP_FRAG_TIME;  /* about 30 seconds  */
qp843net/inet/ip.cqp->timer.data = (unsigned long) qp;  /* pointer to queue  */
qp844net/inet/ip.cqp->timer.function = ip_expire;    /* expire function  */
qp845net/inet/ip.cadd_timer(&qp->timer);
qp849net/inet/ip.cif ((qp = ip_create(skb, iph, dev)) == NULL) 
qp862net/inet/ip.cqp->len = end;
qp870net/inet/ip.cfor(next = qp->fragments; next != NULL; next = next->next) 
qp914net/inet/ip.cqp->fragments = next->next;
qp932net/inet/ip.cqp->fragments = tfp;
qp943net/inet/ip.cif (ip_done(qp)) 
qp945net/inet/ip.cskb2 = ip_glue(qp);    /* glue together the fragments */