Home | History | Annotate | Download | only in cd9660

Lines Matching defs:pttemp

189 debug_dump_to_xml_ptentry(path_table_entry *pttemp, int num, int mode)
192 printf("<length>%i</length>\n", pttemp->length[0]);
194 pttemp->extended_attribute_length[0]);
196 debug_get_encoded_number(pttemp->parent_number,mode));
198 pttemp->name, pttemp->length[0]);
205 path_table_entry pttemp;
214 fread(&pttemp, 1, 8, fd);
217 fread(((unsigned char*)&pttemp) + 8, 1, pttemp.length[0], fd);
218 t += pttemp.length[0];
219 debug_dump_to_xml_ptentry(&pttemp, n, mode);