| /CafeSDK-2.12.13/system/src/lib/libsys/ |
| D | ind_io.h | 22 int open (const char *filename, int mode, ...); 23 int creat (const char *filename, int prot); 26 int hostio_creat (const char *filename, int prot); 39 int __ghs_hostio_open (const char *filename, int mode, ...); 40 int __ghs_hostio_creat (const char *filename, int prot);
|
| D | ind_io.c | 143 int __ghs_hostio_open (const char *filename, int flags, ...) in __ghs_hostio_open() argument 159 return __ghs_syscall(SYSCALL_OPEN2, filename, flags, mode); in __ghs_hostio_open() 163 return __ghs_syscall(SYSCALL_OPEN, filename, flags); in __ghs_hostio_open() 189 int __ghs_hostio_creat (const char *filename, int prot) in __ghs_hostio_creat() argument 192 return __ghs_syscall(SYSCALL_CREAT, filename, prot); in __ghs_hostio_creat()
|
| /CafeSDK-2.12.13/system/src/tool/cafex/ |
| D | Tools.cs | 244 internal static int DoProcess(string filename, string arguments) in DoProcess() argument 247 Log.WriteLine("ProcessorExecutor.DoProcess : " + filename + " " + arguments); in DoProcess() 252 ProcessStartInfo si = new ProcessStartInfo(filename); in DoProcess() 273 Console.WriteLine(filename + " " + arguments); in DoProcess() 286 internal static int DoProcess_DontWait(string filename, string arguments) in DoProcess_DontWait() argument 289 … Log.WriteLine("ProcessorExecutor.DoProcess_DontWait : " + filename + " " + arguments); in DoProcess_DontWait() 295 ProcessStartInfo si = new ProcessStartInfo(filename); in DoProcess_DontWait() 313 Console.WriteLine(filename + " " + arguments); in DoProcess_DontWait() 327 … internal static int DoProcess_GetOutput(string filename, string arguments, out string output) in DoProcess_GetOutput() argument 330 … Log.WriteLine("ProcessorExecutor.DoProcess_GetOutput : " + filename + " " + arguments); in DoProcess_GetOutput() [all …]
|
| D | CafeFunctions.cs | 7371 String filename = directory + @"\makecfmaster.exe"; in getPathToMakeCfMaster() 7373 if (File.Exists(filename)) in getPathToMakeCfMaster() 7374 return filename; in getPathToMakeCfMaster() 7379 filename = directory + @"\makecfmaster.exe"; in getPathToMakeCfMaster() 7381 if (File.Exists(filename)) in getPathToMakeCfMaster() 7383 return filename; in getPathToMakeCfMaster() 7390 filename = directory + @"\system\bin\tool\mastering\makecfmaster.exe"; in getPathToMakeCfMaster() 7392 if (File.Exists(filename)) in getPathToMakeCfMaster() 7394 return filename; in getPathToMakeCfMaster()
|
| /CafeSDK-2.12.13/system/src/lib/demo/headers/cafe/demo/ |
| D | demoFS.h | 155 void * DEMOFSSimpleRead(const char * filename, u32 * len); 167 void * DEMOFSSimpleReadAlign(const char * filename, u32 * len, u32 alignSize);
|
| /CafeSDK-2.12.13/system/include/cafe/demo/ |
| D | demoFS.h | 155 void * DEMOFSSimpleRead(const char * filename, u32 * len); 167 void * DEMOFSSimpleReadAlign(const char * filename, u32 * len, u32 alignSize);
|
| /CafeSDK-2.12.13/system/src/lib/demo/ |
| D | demoGfx.c | 869 char filename[MAX_ASSET_DIR_FULL_LEN]; in DEMOGfxOpenAssetFile() local 871 strcpy(filename, gDemoAssetsDir); in DEMOGfxOpenAssetFile() 872 strncat(filename, path, MAX_ASSET_DIR_FULL_LEN - MAX_ASSET_DIR_LEN); in DEMOGfxOpenAssetFile() 874 return DEMOFSOpenFile(filename, info); in DEMOGfxOpenAssetFile() 894 char filename[MAX_ASSET_DIR_FULL_LEN]; in DEMOGfxLoadAssetFile() local 896 strcpy(filename, gDemoAssetsDir); in DEMOGfxLoadAssetFile() 897 strncat(filename, path, MAX_ASSET_DIR_FULL_LEN - MAX_ASSET_DIR_LEN); in DEMOGfxLoadAssetFile() 899 return DEMOFSSimpleRead(filename, len); in DEMOGfxLoadAssetFile() 904 char filename[MAX_ASSET_DIR_FULL_LEN]; in DEMOGfxLoadAssetFileAlign() local 906 strcpy(filename, gDemoAssetsDir); in DEMOGfxLoadAssetFileAlign() [all …]
|
| D | demoFS.c | 253 void * DEMOFSSimpleRead(const char * filename, u32 * len) in DEMOFSSimpleRead() argument 261 fileRet = DEMOFSOpenFile(filename, &file); in DEMOFSSimpleRead() 283 void * DEMOFSSimpleReadAlign(const char * filename, u32 * len, u32 alignSize) in DEMOFSSimpleReadAlign() argument 291 fileRet = DEMOFSOpenFile(filename, &file); in DEMOFSSimpleReadAlign()
|
| /CafeSDK-2.12.13/system/include/cafe/gx2/ |
| D | gx2Misc.h | 438 void GX2API GX2DebugCaptureFrame(const char* filename); 449 void GX2API GX2DebugCaptureFrames(const char* filename, u32 numFrames); 465 void GX2API GX2DebugCaptureStart(const char* filename, GX2DebugCaptureOptions optionFlags);
|
| /CafeSDK-2.12.13/system/include/cafe/curl/ |
| D | curl.h | 179 char *filename; member
|