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);
qp560net/inet/ip.cstruct ipq *qp;
qp565net/inet/ip.cfor(qp = ipqueue; qp != NULL; qplast = qp, qp = qp->next) 
qp567net/inet/ip.cif (iph->id== qp->iph->id && iph->saddr == qp->iph->saddr &&
qp568net/inet/ip.ciph->daddr == qp->iph->daddr && iph->protocol == qp->iph->protocol) 
qp570net/inet/ip.cdel_timer(&qp->timer);  /* So it doesnt vanish on us. The timer will be reset anyway */
qp572net/inet/ip.creturn(qp);
qp586net/inet/ip.cstatic void ip_free(struct ipq *qp)
qp593net/inet/ip.cdel_timer(&qp->timer);
qp597net/inet/ip.cif (qp->prev == NULL) 
qp599net/inet/ip.cipqueue = qp->next;
qp605net/inet/ip.cqp->prev->next = qp->next;
qp606net/inet/ip.cif (qp->next != NULL) 
qp607net/inet/ip.cqp->next->prev = qp->prev;
qp612net/inet/ip.cfp = qp->fragments;
qp625net/inet/ip.ckfree_s(qp->mac, qp->maclen);
qp628net/inet/ip.ckfree_s(qp->iph, qp->ihlen + 8);
qp631net/inet/ip.ckfree_s(qp, sizeof(struct ipq));
qp641net/inet/ip.cstruct ipq *qp;
qp643net/inet/ip.cqp = (struct ipq *)arg;
qp644net/inet/ip.cDPRINTF((DBG_IP, "IP: queue_expire: fragment queue 0x%X timed out!\n", qp));
qp648net/inet/ip.cicmp_send(qp->iph->ip_src.s_addr, ICMP_TIME_EXCEEDED,
qp649net/inet/ip.cICMP_EXC_FRAGTIME, qp->iph);
qp651net/inet/ip.cif(qp->fragments!=NULL)
qp652net/inet/ip.cicmp_send(qp->fragments->skb,ICMP_TIME_EXCEEDED,
qp653net/inet/ip.cICMP_EXC_FRAGTIME, qp->dev);
qp656net/inet/ip.cip_free(qp);
qp669net/inet/ip.cstruct ipq *qp;
qp673net/inet/ip.cqp = (struct ipq *) kmalloc(sizeof(struct ipq), GFP_ATOMIC);
qp674net/inet/ip.cif (qp == NULL) 
qp679net/inet/ip.cmemset(qp, 0, sizeof(struct ipq));
qp683net/inet/ip.cqp->mac = (unsigned char *) kmalloc(maclen, GFP_ATOMIC);
qp684net/inet/ip.cif (qp->mac == NULL) 
qp687net/inet/ip.ckfree_s(qp, sizeof(struct ipq));
qp693net/inet/ip.cqp->iph = (struct iphdr *) kmalloc(ihlen + 8, GFP_ATOMIC);
qp694net/inet/ip.cif (qp->iph == NULL) 
qp697net/inet/ip.ckfree_s(qp->mac, maclen);
qp698net/inet/ip.ckfree_s(qp, sizeof(struct ipq));
qp703net/inet/ip.cmemcpy(qp->mac, skb->data, maclen);
qp704net/inet/ip.cmemcpy(qp->iph, iph, ihlen + 8);
qp705net/inet/ip.cqp->len = 0;
qp706net/inet/ip.cqp->ihlen = ihlen;
qp707net/inet/ip.cqp->maclen = maclen;
qp708net/inet/ip.cqp->fragments = NULL;
qp709net/inet/ip.cqp->dev = dev;
qp713net/inet/ip.cqp->timer.expires = IP_FRAG_TIME;    /* about 30 seconds  */
qp714net/inet/ip.cqp->timer.data = (unsigned long) qp;    /* pointer to queue  */
qp715net/inet/ip.cqp->timer.function = ip_expire;      /* expire function  */
qp716net/inet/ip.cadd_timer(&qp->timer);
qp719net/inet/ip.cqp->prev = NULL;
qp721net/inet/ip.cqp->next = ipqueue;
qp722net/inet/ip.cif (qp->next != NULL) 
qp723net/inet/ip.cqp->next->prev = qp;
qp724net/inet/ip.cipqueue = qp;
qp726net/inet/ip.creturn(qp);
qp731net/inet/ip.cstatic int ip_done(struct ipq *qp)
qp737net/inet/ip.cif (qp->len == 0) 
qp741net/inet/ip.cfp = qp->fragments;
qp757net/inet/ip.cstatic struct sk_buff *ip_glue(struct ipq *qp)
qp766net/inet/ip.clen = sizeof(struct sk_buff)+qp->maclen + qp->ihlen + qp->len;
qp769net/inet/ip.cprintk("IP: queue_glue: no memory for glueing queue 0x%X\n", (int) qp);
qp770net/inet/ip.cip_free(qp);
qp775net/inet/ip.cskb->len = (len - qp->maclen);
qp778net/inet/ip.cskb->dev = qp->dev;
qp782net/inet/ip.cmemcpy(ptr, ((unsigned char *) qp->mac), qp->maclen);
qp784net/inet/ip.cptr += qp->maclen;
qp785net/inet/ip.cmemcpy(ptr, ((unsigned char *) qp->iph), qp->ihlen);
qp787net/inet/ip.cptr += qp->ihlen;
qp788net/inet/ip.cskb->h.raw += qp->maclen;
qp794net/inet/ip.cfp = qp->fragments;
qp800net/inet/ip.cip_free(qp);
qp811net/inet/ip.cip_free(qp);
qp827net/inet/ip.cstruct ipq *qp;
qp834net/inet/ip.cqp = ip_find(iph);
qp841net/inet/ip.cif (qp != NULL)
qp842net/inet/ip.cip_free(qp);  /* Huh? How could this exist?? */
qp852net/inet/ip.cif (qp != NULL) {
qp853net/inet/ip.cdel_timer(&qp->timer);
qp854net/inet/ip.cqp->timer.expires = IP_FRAG_TIME;  /* about 30 seconds */
qp855net/inet/ip.cqp->timer.data = (unsigned long) qp;  /* pointer to queue */
qp856net/inet/ip.cqp->timer.function = ip_expire;    /* expire function */
qp857net/inet/ip.cadd_timer(&qp->timer);
qp859net/inet/ip.cif ((qp = ip_create(skb, iph, dev)) == NULL) {
qp875net/inet/ip.cqp->len = end;
qp883net/inet/ip.cfor(next = qp->fragments; next != NULL; next = next->next) 
qp927net/inet/ip.cqp->fragments = next->next;
qp951net/inet/ip.cqp->fragments = tfp;
qp962net/inet/ip.cif (ip_done(qp)) 
qp964net/inet/ip.cskb2 = ip_glue(qp);    /* glue together the fragments */