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;
qp360drivers/char/keyboard.cstruct tty_queue *qp;
qp365drivers/char/keyboard.cqp = &tty->read_q;
qp367drivers/char/keyboard.cif (LEFT(qp)) {
qp368drivers/char/keyboard.cqp->buf[qp->head] = ch;
qp369drivers/char/keyboard.cINC(qp->head);
qp375drivers/char/keyboard.cstruct tty_queue *qp;
qp382drivers/char/keyboard.cqp = &tty->read_q;
qp385drivers/char/keyboard.cif (LEFT(qp)) {
qp386drivers/char/keyboard.cqp->buf[qp->head] = ch;
qp387drivers/char/keyboard.cINC(qp->head);
qp671net/inet/ip.cstruct ipq *qp;
qp676net/inet/ip.cfor(qp = ipqueue; qp != NULL; qplast = qp, qp = qp->next) 
qp678net/inet/ip.cif (iph->id== qp->iph->id && iph->saddr == qp->iph->saddr &&
qp679net/inet/ip.ciph->daddr == qp->iph->daddr && iph->protocol == qp->iph->protocol) 
qp681net/inet/ip.cdel_timer(&qp->timer);  /* So it doesn't vanish on us. The timer will be reset anyway */
qp683net/inet/ip.creturn(qp);
qp697net/inet/ip.cstatic void ip_free(struct ipq *qp)
qp706net/inet/ip.cdel_timer(&qp->timer);
qp710net/inet/ip.cif (qp->prev == NULL) 
qp712net/inet/ip.cipqueue = qp->next;
qp718net/inet/ip.cqp->prev->next = qp->next;
qp719net/inet/ip.cif (qp->next != NULL) 
qp720net/inet/ip.cqp->next->prev = qp->prev;
qp725net/inet/ip.cfp = qp->fragments;
qp736net/inet/ip.ckfree_s(qp->mac, qp->maclen);
qp739net/inet/ip.ckfree_s(qp->iph, qp->ihlen + 8);
qp742net/inet/ip.ckfree_s(qp, sizeof(struct ipq));
qp754net/inet/ip.cstruct ipq *qp;
qp756net/inet/ip.cqp = (struct ipq *)arg;
qp757net/inet/ip.cDPRINTF((DBG_IP, "IP: queue_expire: fragment queue 0x%X timed out!\n", qp));
qp766net/inet/ip.cif(qp->fragments!=NULL)
qp767net/inet/ip.cicmp_send(qp->fragments->skb,ICMP_TIME_EXCEEDED,
qp768net/inet/ip.cICMP_EXC_FRAGTIME, qp->dev);
qp773net/inet/ip.cip_free(qp);
qp786net/inet/ip.cstruct ipq *qp;
qp790net/inet/ip.cqp = (struct ipq *) kmalloc(sizeof(struct ipq), GFP_ATOMIC);
qp791net/inet/ip.cif (qp == NULL) 
qp795net/inet/ip.cskb->dev = qp->dev;
qp797net/inet/ip.cmemset(qp, 0, sizeof(struct ipq));
qp807net/inet/ip.cqp->mac = (unsigned char *) kmalloc(maclen, GFP_ATOMIC);
qp808net/inet/ip.cif (qp->mac == NULL) 
qp811net/inet/ip.ckfree_s(qp, sizeof(struct ipq));
qp820net/inet/ip.cqp->iph = (struct iphdr *) kmalloc(ihlen + 8, GFP_ATOMIC);
qp821net/inet/ip.cif (qp->iph == NULL) 
qp824net/inet/ip.ckfree_s(qp->mac, maclen);
qp825net/inet/ip.ckfree_s(qp, sizeof(struct ipq));
qp830net/inet/ip.cmemcpy(qp->mac, skb->data, maclen);
qp831net/inet/ip.cmemcpy(qp->iph, iph, ihlen + 8);
qp832net/inet/ip.cqp->len = 0;
qp833net/inet/ip.cqp->ihlen = ihlen;
qp834net/inet/ip.cqp->maclen = maclen;
qp835net/inet/ip.cqp->fragments = NULL;
qp836net/inet/ip.cqp->dev = dev;
qp839net/inet/ip.cqp->timer.expires = IP_FRAG_TIME;    /* about 30 seconds  */
qp840net/inet/ip.cqp->timer.data = (unsigned long) qp;    /* pointer to queue  */
qp841net/inet/ip.cqp->timer.function = ip_expire;      /* expire function  */
qp842net/inet/ip.cadd_timer(&qp->timer);
qp845net/inet/ip.cqp->prev = NULL;
qp847net/inet/ip.cqp->next = ipqueue;
qp848net/inet/ip.cif (qp->next != NULL) 
qp849net/inet/ip.cqp->next->prev = qp;
qp850net/inet/ip.cipqueue = qp;
qp852net/inet/ip.creturn(qp);
qp860net/inet/ip.cstatic int ip_done(struct ipq *qp)
qp866net/inet/ip.cif (qp->len == 0) 
qp870net/inet/ip.cfp = qp->fragments;
qp894net/inet/ip.cstatic struct sk_buff *ip_glue(struct ipq *qp)
qp906net/inet/ip.clen = qp->maclen + qp->ihlen + qp->len;
qp911net/inet/ip.cprintk("IP: queue_glue: no memory for glueing queue 0x%X\n", (int) qp);
qp912net/inet/ip.cip_free(qp);
qp917net/inet/ip.cskb->len = (len - qp->maclen);
qp923net/inet/ip.cmemcpy(ptr, ((unsigned char *) qp->mac), qp->maclen);
qp924net/inet/ip.cptr += qp->maclen;
qp925net/inet/ip.cmemcpy(ptr, ((unsigned char *) qp->iph), qp->ihlen);
qp926net/inet/ip.cptr += qp->ihlen;
qp927net/inet/ip.cskb->h.raw += qp->maclen;
qp932net/inet/ip.cfp = qp->fragments;
qp938net/inet/ip.cip_free(qp);
qp949net/inet/ip.cip_free(qp);
qp970net/inet/ip.cstruct ipq *qp;
qp979net/inet/ip.cqp = ip_find(iph);
qp987net/inet/ip.cif (qp != NULL)
qp988net/inet/ip.cip_free(qp);  /* Huh? How could this exist?? */
qp1000net/inet/ip.cif (qp != NULL) 
qp1002net/inet/ip.cdel_timer(&qp->timer);
qp1003net/inet/ip.cqp->timer.expires = IP_FRAG_TIME;  /* about 30 seconds */
qp1004net/inet/ip.cqp->timer.data = (unsigned long) qp;  /* pointer to queue */
qp1005net/inet/ip.cqp->timer.function = ip_expire;    /* expire function */
qp1006net/inet/ip.cadd_timer(&qp->timer);
qp1013net/inet/ip.cif ((qp = ip_create(skb, iph, dev)) == NULL) 
qp1040net/inet/ip.cqp->len = end;
qp1049net/inet/ip.cfor(next = qp->fragments; next != NULL; next = next->next) 
qp1096net/inet/ip.cqp->fragments = next->next;
qp1129net/inet/ip.cqp->fragments = tfp;
qp1140net/inet/ip.cif (ip_done(qp)) 
qp1142net/inet/ip.cskb2 = ip_glue(qp);    /* glue together the fragments */