Lines Matching refs:tmpc

43 	u_char	tmpc,c,program[257],code;  in mopDumpDL()  local
63 tmpc = mopGetChar(pkt,&idx); /* Load Number */ in mopDumpDL()
64 (void)fprintf(fd,"Load Number : %02x\n",tmpc); in mopDumpDL()
109 tmpc = mopGetChar(pkt,&idx); /* Load Number */ in mopDumpDL()
110 (void)fprintf(fd,"Load Number : %02x\n",tmpc); in mopDumpDL()
158 tmpc = mopGetChar(pkt,&idx); /* Device Type */ in mopDumpDL()
159 (void)fprintf(fd, "Device Type : %02x ",tmpc); in mopDumpDL()
160 mopPrintDevice(fd, tmpc); (void)fprintf(fd, "\n"); in mopDumpDL()
162 tmpc = mopGetChar(pkt,&idx); /* Format Version */ in mopDumpDL()
163 (void)fprintf(fd,"Format : %02x\n",tmpc); in mopDumpDL()
165 tmpc = mopGetChar(pkt,&idx); /* Program Type */ in mopDumpDL()
166 (void)fprintf(fd,"Program Type : %02x ",tmpc); in mopDumpDL()
167 mopPrintPGTY(fd, tmpc); (void)fprintf(fd, "\n"); in mopDumpDL()
170 tmpc = mopGetChar(pkt,&idx); /* Software ID Len */ in mopDumpDL()
171 for (i = 0; i < tmpc; i++) { in mopDumpDL()
176 (void)fprintf(fd,"Software : %02x '%s'\n",tmpc,program); in mopDumpDL()
178 tmpc = mopGetChar(pkt,&idx); /* Processor */ in mopDumpDL()
179 (void)fprintf(fd,"Processor : %02x ",tmpc); in mopDumpDL()
180 mopPrintBPTY(fd, tmpc); (void)fprintf(fd, "\n"); in mopDumpDL()
187 tmpc = mopGetChar(pkt,&idx); /* Load Number */ in mopDumpDL()
188 (void)fprintf(fd,"Load Number : %02x\n",tmpc); in mopDumpDL()
190 tmpc = mopGetChar(pkt,&idx); /* Error */ in mopDumpDL()
191 (void)fprintf(fd,"Error : %02x (",tmpc); in mopDumpDL()
192 if (tmpc == 0) { in mopDumpDL()
201 tmpc = mopGetChar(pkt,&idx); /* Device Type */ in mopDumpDL()
202 (void)fprintf(fd, "Device Type : %02x ",tmpc); in mopDumpDL()
203 mopPrintDevice(fd, tmpc); (void)fprintf(fd, "\n"); in mopDumpDL()
205 tmpc = mopGetChar(pkt,&idx); /* Format Version */ in mopDumpDL()
206 (void)fprintf(fd,"Format : %02x\n",tmpc); in mopDumpDL()
211 tmpc = mopGetChar(pkt,&idx); /* Bits */ in mopDumpDL()
212 (void)fprintf(fd,"Bits : %02x\n",tmpc); in mopDumpDL()
250 tmpc = mopGetChar(pkt,&idx); /* Load Number */ in mopDumpDL()
251 (void)fprintf(fd,"Load Number : %02x\n",tmpc); in mopDumpDL()
253 tmpc = mopGetChar(pkt,&idx); /* Parameter Type */ in mopDumpDL()
254 while (tmpc != MOP_K_PLTP_END) { in mopDumpDL()
256 switch(tmpc) { in mopDumpDL()
259 tmpc); in mopDumpDL()
276 tmpc); in mopDumpDL()
300 tmpc = mopGetChar(pkt,&idx);/* Parameter Type */ in mopDumpDL()