Home
last modified time | relevance | path

Searched refs:finfo (Results 1 – 6 of 6) sorted by relevance

/RvlSDK-3.3/build/demos/arcdemo/src/
Darctest1.c37 void callback(s32 result, DVDFileInfo* finfo);
59 DVDFileInfo finfo; in chdirOpenAllocRead() local
95 result = DVDOpen(pathName, &finfo); in chdirOpenAllocRead()
116 length = DVDGetLength(&finfo); in chdirOpenAllocRead()
119 if (OSRoundUp32B(length) != DVDRead(&finfo, (void*)buf, (s32)OSRoundUp32B(length), 0)) in chdirOpenAllocRead()
142 DVDClose(&finfo); in chdirOpenAllocRead()
150 DVDFileInfo finfo; in Read() local
155 result = DVDFastOpen(entrynum, &finfo); in Read()
162 length = OSRoundUp32B(DVDGetLength(&finfo)); in Read()
166 if ( length != DVDRead(&finfo, buf, (s32)length, 0) ) in Read()
[all …]
Darctest2.c37 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()
[all …]
Darctest3.c48 ARCFileInfo finfo; in printOneLevel() local
111 if (FALSE == ARCOpen(&Arc, dirent.name, &finfo)) in printOneLevel()
117 OSReport("F %9d %s\n", ARCGetLength(&finfo), dirent.name); in printOneLevel()
119 ARCClose(&finfo); in printOneLevel()
130 DVDFileInfo finfo; in Read() local
135 result = DVDFastOpen(entrynum, &finfo); in Read()
142 length = OSRoundUp32B(DVDGetLength(&finfo)); in Read()
146 if ( length != DVDRead(&finfo, buf, (s32)length, 0) ) in Read()
151 DVDClose(&finfo); in Read()
/RvlSDK-3.3/build/demos/videmo/src/
Dviewer.c177 DVDFileInfo finfo; in readConvertBmp() local
182 if (FALSE == DVDOpen(fileName, &finfo)) in readConvertBmp()
188 length = DVDGetLength(&finfo); in readConvertBmp()
199 DVDRead(&finfo, buf, (s32)OSRoundUp32B(length), 0)) in readConvertBmp()
229 DVDClose(&finfo); in readConvertBmp()
318 DVDFileInfo finfo; in idle() local
323 if (FALSE == DVDOpen(dirent.name, &finfo)) in idle()
329 length = DVDGetLength(&finfo); in idle()
337 DVDRead(&finfo, ip->image, (s32)OSRoundUp32B(length), 0)) in idle()
342 DVDClose(&finfo); in idle()
/RvlSDK-3.3/build/demos/dvddemo/src/
Ddirectory.c55 DVDFileInfo finfo; in printOneLevel() local
118 if (FALSE == DVDOpen(dirent.name, &finfo)) in printOneLevel()
124 OSReport("F %9d %s\n", DVDGetLength(&finfo), dirent.name); in printOneLevel()
126 DVDClose(&finfo); in printOneLevel()
/RvlSDK-3.3/build/libraries/gd/src/
DGDFile.c425 DVDFileInfo finfo; in GDReadDLFile() local
434 if (FALSE == DVDOpen(fName, &finfo)) in GDReadDLFile()
440 length = DVDGetLength(&finfo); in GDReadDLFile()
445 DVDClose(&finfo); in GDReadDLFile()
450 DVDRead(&finfo, buf, (s32)OSRoundUp32B(length), 0)) in GDReadDLFile()
453 DVDClose(&finfo); in GDReadDLFile()
458 DVDClose(&finfo); in GDReadDLFile()