Lines Matching refs:finfo
37 void callback(s32 result, DVDFileInfo* finfo);
43 DVDFileInfo finfo; variable
96 result = DVDOpen(pathName, &finfo); in chdirOpenAllocRead()
116 length = DVDGetLength(&finfo); in chdirOpenAllocRead()
124 DVDRead(&finfo, (void*)buf, (s32)OSRoundUp32B(length), in chdirOpenAllocRead()
134 DVDRead(&finfo, (void*)buf, (s32)OSRoundUp32B(length), 0)) in chdirOpenAllocRead()
159 DVDClose(&finfo); in chdirOpenAllocRead()
170 result = DVDFastOpen(entrynum, &finfo); in Read()
177 length = OSRoundUp32B(DVDGetLength(&finfo)); in Read()
180 DVDRead(&finfo, &header, (s32)sizeof(ARCHeader), 0) ) in Read()
190 if ( length != DVDRead(&finfo, buf, (s32)length, 0) ) in Read()