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);
qp549net/inet/ip.cstruct ipq *qp;
qp554net/inet/ip.cfor(qp = ipqueue; qp != NULL; qplast = qp, qp = qp->next) 
qp556net/inet/ip.cif (iph->id== qp->iph->id && iph->saddr == qp->iph->saddr &&
qp557net/inet/ip.ciph->daddr == qp->iph->daddr && iph->protocol == qp->iph->protocol) 
qp559net/inet/ip.cdel_timer(&qp->timer);  /* So it doesnt vanish on us. The timer will be reset anyway */
qp561net/inet/ip.creturn(qp);
qp575net/inet/ip.cstatic void ip_free(struct ipq *qp)
qp582net/inet/ip.cdel_timer(&qp->timer);
qp586net/inet/ip.cif (qp->prev == NULL) 
qp588net/inet/ip.cipqueue = qp->next;
qp594net/inet/ip.cqp->prev->next = qp->next;
qp595net/inet/ip.cif (qp->next != NULL) 
qp596net/inet/ip.cqp->next->prev = qp->prev;
qp601net/inet/ip.cfp = qp->fragments;
qp614net/inet/ip.ckfree_s(qp->mac, qp->maclen);
qp617net/inet/ip.ckfree_s(qp->iph, qp->ihlen + 8);
qp620net/inet/ip.ckfree_s(qp, sizeof(struct ipq));
qp630net/inet/ip.cstruct ipq *qp;
qp632net/inet/ip.cqp = (struct ipq *)arg;
qp633net/inet/ip.cDPRINTF((DBG_IP, "IP: queue_expire: fragment queue 0x%X timed out!\n", qp));
qp637net/inet/ip.cicmp_send(qp->iph->ip_src.s_addr, ICMP_TIME_EXCEEDED,
qp638net/inet/ip.cICMP_EXC_FRAGTIME, qp->iph);
qp640net/inet/ip.cif(qp->fragments!=NULL)
qp641net/inet/ip.cicmp_send(qp->fragments->skb,ICMP_TIME_EXCEEDED,
qp642net/inet/ip.cICMP_EXC_FRAGTIME, qp->dev);
qp645net/inet/ip.cip_free(qp);
qp658net/inet/ip.cstruct ipq *qp;
qp662net/inet/ip.cqp = (struct ipq *) kmalloc(sizeof(struct ipq), GFP_ATOMIC);
qp663net/inet/ip.cif (qp == NULL) 
qp668net/inet/ip.cmemset(qp, 0, sizeof(struct ipq));
qp672net/inet/ip.cqp->mac = (unsigned char *) kmalloc(maclen, GFP_ATOMIC);
qp673net/inet/ip.cif (qp->mac == NULL) 
qp676net/inet/ip.ckfree_s(qp, sizeof(struct ipq));
qp682net/inet/ip.cqp->iph = (struct iphdr *) kmalloc(ihlen + 8, GFP_ATOMIC);
qp683net/inet/ip.cif (qp->iph == NULL) 
qp686net/inet/ip.ckfree_s(qp->mac, maclen);
qp687net/inet/ip.ckfree_s(qp, sizeof(struct ipq));
qp692net/inet/ip.cmemcpy(qp->mac, skb->data, maclen);
qp693net/inet/ip.cmemcpy(qp->iph, iph, ihlen + 8);
qp694net/inet/ip.cqp->len = 0;
qp695net/inet/ip.cqp->ihlen = ihlen;
qp696net/inet/ip.cqp->maclen = maclen;
qp697net/inet/ip.cqp->fragments = NULL;
qp698net/inet/ip.cqp->dev = dev;
qp702net/inet/ip.cqp->timer.expires = IP_FRAG_TIME;    /* about 30 seconds  */
qp703net/inet/ip.cqp->timer.data = (unsigned long) qp;    /* pointer to queue  */
qp704net/inet/ip.cqp->timer.function = ip_expire;      /* expire function  */
qp705net/inet/ip.cadd_timer(&qp->timer);
qp708net/inet/ip.cqp->prev = NULL;
qp710net/inet/ip.cqp->next = ipqueue;
qp711net/inet/ip.cif (qp->next != NULL) 
qp712net/inet/ip.cqp->next->prev = qp;
qp713net/inet/ip.cipqueue = qp;
qp715net/inet/ip.creturn(qp);
qp720net/inet/ip.cstatic int ip_done(struct ipq *qp)
qp726net/inet/ip.cif (qp->len == 0) 
qp730net/inet/ip.cfp = qp->fragments;
qp746net/inet/ip.cstatic struct sk_buff *ip_glue(struct ipq *qp)
qp755net/inet/ip.clen = sizeof(struct sk_buff)+qp->maclen + qp->ihlen + qp->len;
qp758net/inet/ip.cprintk("IP: queue_glue: no memory for glueing queue 0x%X\n", (int) qp);
qp759net/inet/ip.cip_free(qp);
qp764net/inet/ip.cskb->len = (len - qp->maclen);
qp770net/inet/ip.cmemcpy(ptr, ((unsigned char *) qp->mac), qp->maclen);
qp772net/inet/ip.cptr += qp->maclen;
qp773net/inet/ip.cmemcpy(ptr, ((unsigned char *) qp->iph), qp->ihlen);
qp775net/inet/ip.cptr += qp->ihlen;
qp776net/inet/ip.cskb->h.raw += qp->maclen;
qp782net/inet/ip.cfp = qp->fragments;
qp798net/inet/ip.cip_free(qp);
qp814net/inet/ip.cstruct ipq *qp;
qp821net/inet/ip.cqp = ip_find(iph);
qp829net/inet/ip.cif (qp != NULL) 
qp830net/inet/ip.cip_free(qp);  /* Huh? How could this exist?? */
qp840net/inet/ip.cif (qp != NULL) 
qp842net/inet/ip.cdel_timer(&qp->timer);
qp843net/inet/ip.cqp->timer.expires = IP_FRAG_TIME;  /* about 30 seconds  */
qp844net/inet/ip.cqp->timer.data = (unsigned long) qp;  /* pointer to queue  */
qp845net/inet/ip.cqp->timer.function = ip_expire;    /* expire function  */
qp846net/inet/ip.cadd_timer(&qp->timer);
qp850net/inet/ip.cif ((qp = ip_create(skb, iph, dev)) == NULL) 
qp863net/inet/ip.cqp->len = end;
qp871net/inet/ip.cfor(next = qp->fragments; next != NULL; next = next->next) 
qp915net/inet/ip.cqp->fragments = next->next;
qp933net/inet/ip.cqp->fragments = tfp;
qp944net/inet/ip.cif (ip_done(qp)) 
qp946net/inet/ip.cskb2 = ip_glue(qp);    /* glue together the fragments */