| /RvlSDK-2.1/build/demos/nanddemo/src/ |
| D | directory.c | 57 static void printDir (const char *path); 58 static void createDir (const char *path); 59 static void deleteDir (const char *path); 60 static void changeDir (const char *path); 62 static void createFile(const char *path, u8 perm); 65 static void printDir(const char *path) in printDir() argument 72 NANDReadDir(path, NULL, &num); // Get number of elements. in printDir() 80 NANDReadDir(path, buf, &num); // Get directory list. in printDir() 95 if(strcmp(path, "/")==0) in printDir() 101 sprintf(absPath, "%s/%s", path, name); in printDir() [all …]
|
| D | basic.c | 74 char path[NAND_MAX_PATH]=""; in main() local 89 ret = NANDGetCurrentDir(path); in main() 96 OSReport("Current directory: %s\n", path); in main()
|
| D | async.c | 206 char path[NAND_MAX_PATH]; in sample2() local 210 sprintf(path, "/tmp/async%d.tmp", i); in sample2() 211 result = NANDCreateAsync(path, PERM, ATTR, callback, &block[i]); in sample2()
|
| /RvlSDK-2.1/build/tools/soundfile/src/ |
| D | soundfile.c | 34 int getAiffInfo(char *path, SOUNDINFO *soundinfo, void *buffer) in getAiffInfo() argument 39 if (!(file = fopen(path, "rb"))) in getAiffInfo() 83 int getWaveInfo(char *path, SOUNDINFO *soundinfo, void *buffer) in getWaveInfo() argument 88 if (!(file = fopen(path, "rb"))) in getWaveInfo() 144 int getFileType(char *path, SOUNDINFO *soundinfo) in getFileType() argument 149 if (!(file = fopen(path, "rb"))) in getFileType() 187 int getSoundInfo(char *path, SOUNDINFO *soundinfo) in getSoundInfo() argument 189 u32 result = getFileType(path, soundinfo); in getSoundInfo() 195 result = getAiffInfo(path, soundinfo, NULL); in getSoundInfo() 201 result = getWaveInfo(path, soundinfo, NULL); in getSoundInfo() [all …]
|
| D | soundfile.h | 59 LINKDLL int getSoundInfo (char *path, SOUNDINFO *info); 60 LINKDLL int getSoundSamples (char *path, SOUNDINFO *info, void *dest); 62 LINKDLL int writeWaveFile (char *path, SOUNDINFO *info, void *samples); 63 LINKDLL int writeAiffFile (char *path, SOUNDINFO *info, void *samples);
|
| /RvlSDK-2.1/include/revolution/ |
| D | nand.h | 273 s32 NANDCreate (const char *path, u8 perm, u8 attr); 274 s32 NANDCreateAsync (const char *path, u8 perm, u8 attr, NANDCallback cb, NANDCommandBlock *bl… 275 s32 NANDOpen (const char *path, NANDFileInfo *info, u8 accType); 276 s32 NANDOpenAsync (const char *path, NANDFileInfo *info, u8 accType, NANDCallback cb, NANDCo… 289 s32 NANDSafeOpen (const char *path, NANDFileInfo *info, u8 accType, void *buf, u32 length); 290 s32 NANDSafeOpenAsync (const char *path, NANDFileInfo *info, u8 accType, void *buf, u32 length, … 295 s32 NANDReadDir (const char *path, char *nameList, u32 *num); 296 s32 NANDReadDirAsync (const char *path, char *nameList, u32 *num, NANDCallback cb, NANDCommandB… 297 s32 NANDCreateDir (const char *path, u8 perm, u8 attr); 298 s32 NANDCreateDirAsync (const char *path, u8 perm, u8 attr, NANDCallback cb, NANDCommandBlock *bl… [all …]
|
| /RvlSDK-2.1/build/demos/dvddemo/src/ |
| D | directory.c | 61 char path[256]; in printOneLevel() local 67 OSReport("Can't open dir %s\n", path); in printOneLevel() 77 strcpy(path, pathName); in printOneLevel() 78 strcat(path, "/"); in printOneLevel() 79 strcat(path, p->dirEntry.name); in printOneLevel() 80 OSReport("\n%s:\n", path); in printOneLevel() 84 OSReport("Can't change dir to %s\n", path); in printOneLevel() 87 printOneLevel(path); in printOneLevel() 90 OSReport("Can't change dir to %s/..\n", path); in printOneLevel() 120 OSReport("Can't open file %s/%s\n", path, dirent.name); in printOneLevel()
|
| /RvlSDK-2.1/build/demos/arcdemo/src/ |
| D | arctest3.c | 54 char path[256]; in printOneLevel() local 60 OSReport("Can't open dir %s\n", path); in printOneLevel() 70 strcpy(path, pathName); in printOneLevel() 71 strcat(path, "/"); in printOneLevel() 72 strcat(path, p->dirEntry.name); in printOneLevel() 73 OSReport("\n%s:\n", path); in printOneLevel() 77 OSReport("Can't change dir to %s\n", path); in printOneLevel() 80 printOneLevel(path); in printOneLevel() 83 OSReport("Can't change dir to %s/..\n", path); in printOneLevel() 113 OSReport("Can't open file %s/%s\n", path, dirent.name); in printOneLevel()
|
| /RvlSDK-2.1/build/demos/cxdemo/src/ |
| D | cx_uncompress.c | 62 static void* LoadTexData ( const char* path ); 63 static void* LoadTexDataRL ( const char* path ); 64 static void* LoadTexDataLZ ( const char* path ); 65 static void* LoadTexDataHuff( const char* path ); 159 static void* LoadTexData( const char* path ) in LoadTexData() argument 164 DVDOpen( path, &fileInfo ); in LoadTexData() 184 static void* LoadTexDataRL( const char* path ) in LoadTexDataRL() argument 191 buf = LoadTexData( path ); in LoadTexDataRL() 218 static void* LoadTexDataLZ( const char* path ) in LoadTexDataLZ() argument 225 buf = LoadTexData( path ); in LoadTexDataLZ() [all …]
|
| D | cx_uncompress_stream.c | 56 static void* LoadTexData ( const char* path ); 57 static void* LoadTexDataLZ ( const char* path ); 58 static void* LoadTexDataRL ( const char* path ); 59 static void* LoadTexDataHuff( const char* path ); 155 static void* LoadTexData( const char* path ) in LoadTexData() argument 160 DVDOpen( path, &fileInfo ); in LoadTexData() 182 static void* LoadTexDataRL( const char* path ) in LoadTexDataRL() argument 193 DVDOpen( path, &fileInfo ); in LoadTexDataRL() 249 static void* LoadTexDataLZ( const char* path ) in LoadTexDataLZ() argument 260 DVDOpen( path, &fileInfo ); in LoadTexDataLZ() [all …]
|
| /RvlSDK-2.1/build/libraries/arc/src/ |
| D | arc.c | 167 static BOOL isSame(const char* path, const char* string) in isSame() argument 172 if (tolower(*path++) != tolower(*string++)) in isSame() 178 if ( (*path == '/') || (*path == '\0') ) in isSame() 339 static u32 entryToPath(ARCHandle* handle, u32 entry, char* path, u32 maxlen) in entryToPath() argument 354 loc = entryToPath(handle, parentDir(FSTEntries, entry), path, maxlen); in entryToPath() 361 *(path + loc++) = '/'; in entryToPath() 363 loc += myStrncpy(path + loc, name, maxlen - loc); in entryToPath() 381 static BOOL ARCConvertEntrynumToPath(ARCHandle* handle, s32 entrynum, char* path, u32 maxlen) in ARCConvertEntrynumToPath() argument 399 loc = entryToPath(handle, (u32)entrynum, path, maxlen); in ARCConvertEntrynumToPath() 404 path[maxlen - 1] = '\0'; in ARCConvertEntrynumToPath() [all …]
|
| /RvlSDK-2.1/build/tools/sndconv/src/ |
| D | sndconv.c | 29 static char path[1024]; variable 82 strcpy(path, token); in parsePathStatement() 83 fixString(path); in parsePathStatement() 145 else if (path[0] != 0) in parseFileStatement() 149 strcpy(ch, path); in parseFileStatement() 381 else if (path[0] != 0) in parseIncludeStatement() 385 strcpy(ch, path); in parseIncludeStatement() 614 typedef int (*FUNCTION1)(u8 *path, SOUNDINFO *soundinfo); 615 typedef int (*FUNCTION2)(u8 *path, SOUNDINFO *soundinfo, void *dest); 691 path[0] = 0; in init() [all …]
|
| /RvlSDK-2.1/build/demos/thpdemo/src/THPSimple/ |
| D | axseq.c | 85 static void* LoadFileIntoRam(char *path) in LoadFileIntoRam() argument 93 if (!DVDOpen(path, &handle)) in LoadFileIntoRam() 95 OSReport("WARNING! Failed to open %s\n", path); in LoadFileIntoRam()
|
| /RvlSDK-2.1/build/demos/axdemo/src/ |
| D | syndemo.c | 273 static void* LoadFileIntoRam(char *path) in LoadFileIntoRam() argument 281 if (!DVDOpen(path, &handle)) in LoadFileIntoRam() 283 OSReport("WARNING! Failed to open %s\n", path); in LoadFileIntoRam()
|
| D | dpl2demo.c | 388 static void* LoadFileIntoRam(char *path) in LoadFileIntoRam() argument 396 if (!DVDOpen(path, &handle)) in LoadFileIntoRam() 398 OSReport("WARNING! Failed to open %s\n", path); in LoadFileIntoRam()
|
| /RvlSDK-2.1/build/tools/TexConv/sample/ |
| D | sample.tcs | 23 path = /cp/build/tools/TexConv/sample/ 25 ; sets directory path for subsequent source files. 27 ; end the path with a '/' 28 ; to cancel, type path = 0 29 ; then in file list, type full path + file name
|
| /RvlSDK-2.1/build/demos/carddemo/tpl/ |
| D | luigi.tcs | 1 path = ./
|
| D | marioCI.tcs | 1 path = ./
|
| D | gamecube.tcs | 1 path = ./
|
| D | bannerc.tcs | 1 path = ./
|
| D | banner.tcs | 1 path = ./
|
| D | iconc.tcs | 1 path = ./
|
| D | yoshi.tcs | 1 path = ./
|
| /RvlSDK-2.1/ |
| D | RVL_NDEV.bat | 55 @echo setndenv DvdRoot "path"...Set DvdRoot to "path".
|
| /RvlSDK-2.1/build/demos/wpaddemo/src/ |
| D | wpad_seqdemo.c | 48 static void *LoadFileIntoRam ( char *path ); 421 static void *LoadFileIntoRam(char *path) in LoadFileIntoRam() argument 429 if (!DVDOpen(path, &handle)) in LoadFileIntoRam() 431 OSReport("WARNING! Failed to open %s\n", path); in LoadFileIntoRam()
|