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;
qp284drivers/char/keyboard.cstruct tty_queue *qp;
qp289drivers/char/keyboard.cqp = &tty->read_q;
qp291drivers/char/keyboard.cif (LEFT(qp)) {
qp292drivers/char/keyboard.cqp->buf[qp->head] = ch;
qp293drivers/char/keyboard.cINC(qp->head);
qp294drivers/char/keyboard.cwake_up_interruptible(&qp->proc_list);
qp300drivers/char/keyboard.cstruct tty_queue *qp;
qp307drivers/char/keyboard.cqp = &tty->read_q;
qp310drivers/char/keyboard.cif (LEFT(qp)) {
qp311drivers/char/keyboard.cqp->buf[qp->head] = ch;
qp312drivers/char/keyboard.cINC(qp->head);
qp315drivers/char/keyboard.cwake_up_interruptible(&qp->proc_list);
qp541net/inet/ip.cstruct ipq *qp;
qp546net/inet/ip.cfor(qp = ipqueue; qp != NULL; qplast = qp, qp = qp->next) 
qp548net/inet/ip.cif (iph->id== qp->iph->id && iph->saddr == qp->iph->saddr &&
qp549net/inet/ip.ciph->daddr == qp->iph->daddr && iph->protocol == qp->iph->protocol) 
qp551net/inet/ip.cdel_timer(&qp->timer);  /* So it doesnt vanish on us. The timer will be reset anyway */
qp553net/inet/ip.creturn(qp);
qp567net/inet/ip.cstatic void ip_free(struct ipq *qp)
qp574net/inet/ip.cdel_timer(&qp->timer);
qp578net/inet/ip.cif (qp->prev == NULL) 
qp580net/inet/ip.cipqueue = qp->next;
qp586net/inet/ip.cqp->prev->next = qp->next;
qp587net/inet/ip.cif (qp->next != NULL) 
qp588net/inet/ip.cqp->next->prev = qp->prev;
qp593net/inet/ip.cfp = qp->fragments;
qp606net/inet/ip.ckfree_s(qp->mac, qp->maclen);
qp609net/inet/ip.ckfree_s(qp->iph, qp->ihlen + 8);
qp612net/inet/ip.ckfree_s(qp, sizeof(struct ipq));
qp622net/inet/ip.cstruct ipq *qp;
qp624net/inet/ip.cqp = (struct ipq *)arg;
qp625net/inet/ip.cDPRINTF((DBG_IP, "IP: queue_expire: fragment queue 0x%X timed out!\n", qp));
qp629net/inet/ip.cicmp_send(qp->iph->ip_src.s_addr, ICMP_TIME_EXCEEDED,
qp630net/inet/ip.cICMP_EXC_FRAGTIME, qp->iph);
qp632net/inet/ip.cif(qp->fragments!=NULL)
qp633net/inet/ip.cicmp_send(qp->fragments->skb,ICMP_TIME_EXCEEDED,
qp634net/inet/ip.cICMP_EXC_FRAGTIME, qp->dev);
qp637net/inet/ip.cip_free(qp);
qp650net/inet/ip.cstruct ipq *qp;
qp654net/inet/ip.cqp = (struct ipq *) kmalloc(sizeof(struct ipq), GFP_ATOMIC);
qp655net/inet/ip.cif (qp == NULL) 
qp660net/inet/ip.cmemset(qp, 0, sizeof(struct ipq));
qp664net/inet/ip.cqp->mac = (unsigned char *) kmalloc(maclen, GFP_ATOMIC);
qp665net/inet/ip.cif (qp->mac == NULL) 
qp668net/inet/ip.ckfree_s(qp, sizeof(struct ipq));
qp674net/inet/ip.cqp->iph = (struct iphdr *) kmalloc(ihlen + 8, GFP_ATOMIC);
qp675net/inet/ip.cif (qp->iph == NULL) 
qp678net/inet/ip.ckfree_s(qp->mac, maclen);
qp679net/inet/ip.ckfree_s(qp, sizeof(struct ipq));
qp684net/inet/ip.cmemcpy(qp->mac, (skb + 1), maclen);
qp685net/inet/ip.cmemcpy(qp->iph, iph, ihlen + 8);
qp686net/inet/ip.cqp->len = 0;
qp687net/inet/ip.cqp->ihlen = ihlen;
qp688net/inet/ip.cqp->maclen = maclen;
qp689net/inet/ip.cqp->fragments = NULL;
qp690net/inet/ip.cqp->dev = dev;
qp694net/inet/ip.cqp->timer.expires = IP_FRAG_TIME;    /* about 30 seconds  */
qp695net/inet/ip.cqp->timer.data = (unsigned long) qp;    /* pointer to queue  */
qp696net/inet/ip.cqp->timer.function = ip_expire;      /* expire function  */
qp697net/inet/ip.cadd_timer(&qp->timer);
qp700net/inet/ip.cqp->prev = NULL;
qp702net/inet/ip.cqp->next = ipqueue;
qp703net/inet/ip.cif (qp->next != NULL) 
qp704net/inet/ip.cqp->next->prev = qp;
qp705net/inet/ip.cipqueue = qp;
qp707net/inet/ip.creturn(qp);
qp712net/inet/ip.cstatic int ip_done(struct ipq *qp)
qp718net/inet/ip.cif (qp->len == 0) 
qp722net/inet/ip.cfp = qp->fragments;
qp738net/inet/ip.cstatic struct sk_buff *ip_glue(struct ipq *qp)
qp747net/inet/ip.clen = sizeof(struct sk_buff)+qp->maclen + qp->ihlen + qp->len;
qp750net/inet/ip.cprintk("IP: queue_glue: no memory for glueing queue 0x%X\n", (int) qp);
qp751net/inet/ip.cip_free(qp);
qp756net/inet/ip.cskb->len = (len - qp->maclen);
qp763net/inet/ip.cmemcpy(ptr, ((unsigned char *) qp->mac), qp->maclen);
qp765net/inet/ip.cptr += qp->maclen;
qp766net/inet/ip.cmemcpy(ptr, ((unsigned char *) qp->iph), qp->ihlen);
qp768net/inet/ip.cptr += qp->ihlen;
qp769net/inet/ip.cskb->h.raw += qp->maclen;
qp775net/inet/ip.cfp = qp->fragments;
qp791net/inet/ip.cip_free(qp);
qp806net/inet/ip.cstruct ipq *qp;
qp813net/inet/ip.cqp = ip_find(iph);
qp821net/inet/ip.cif (qp != NULL) 
qp822net/inet/ip.cip_free(qp);  /* Huh? How could this exist?? */
qp832net/inet/ip.cif (qp != NULL) 
qp834net/inet/ip.cdel_timer(&qp->timer);
qp835net/inet/ip.cqp->timer.expires = IP_FRAG_TIME;  /* about 30 seconds  */
qp836net/inet/ip.cqp->timer.data = (unsigned long) qp;  /* pointer to queue  */
qp837net/inet/ip.cqp->timer.function = ip_expire;    /* expire function  */
qp838net/inet/ip.cadd_timer(&qp->timer);
qp842net/inet/ip.cif ((qp = ip_create(skb, iph, dev)) == NULL) 
qp855net/inet/ip.cqp->len = end;
qp863net/inet/ip.cfor(next = qp->fragments; next != NULL; next = next->next) 
qp907net/inet/ip.cqp->fragments = next->next;
qp925net/inet/ip.cqp->fragments = tfp;
qp936net/inet/ip.cif (ip_done(qp)) 
qp938net/inet/ip.cskb2 = ip_glue(qp);    /* glue together the fragments */