Home
last modified time | relevance | path

Searched refs:filename (Results 1 – 10 of 10) sorted by relevance

/CafeSDK-2.12.13-1/system/src/lib/libsys/
Dind_io.h22 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);
Dind_io.c143 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-1/system/src/tool/cafex/
DTools.cs245 internal static int DoProcess(string filename, string arguments) in DoProcess() argument
248 Log.WriteLine("ProcessorExecutor.DoProcess : " + filename + " " + arguments); in DoProcess()
251 return DoProcess_WaitTime(filename, arguments, Int32.MaxValue); in DoProcess()
261 internal static int DoProcess_DontWait(string filename, string arguments) in DoProcess_DontWait() argument
264 … Log.WriteLine("ProcessorExecutor.DoProcess_DontWait : " + filename + " " + arguments); in DoProcess_DontWait()
270 ProcessStartInfo si = new ProcessStartInfo(filename); in DoProcess_DontWait()
288 Console.WriteLine(filename + " " + arguments); in DoProcess_DontWait()
302 internal static int DoProcess_WaitTime(string filename, string arguments, int time) in DoProcess_WaitTime() argument
305 …teLine(String.Format("ProcessorExecutor.DoProcessWaitTime : {0} {1} {2}",filename,arguments,time)); in DoProcess_WaitTime()
310 ProcessStartInfo si = new ProcessStartInfo(filename); in DoProcess_WaitTime()
[all …]
DCafeFunctions.cs7655 String filename = directory + @"\makecfmaster.exe"; in getPathToMakeCfMaster()
7657 if (File.Exists(filename)) in getPathToMakeCfMaster()
7658 return filename; in getPathToMakeCfMaster()
7663 filename = directory + @"\makecfmaster.exe"; in getPathToMakeCfMaster()
7665 if (File.Exists(filename)) in getPathToMakeCfMaster()
7667 return filename; in getPathToMakeCfMaster()
7674 filename = directory + @"\system\bin\tool\mastering\makecfmaster.exe"; in getPathToMakeCfMaster()
7676 if (File.Exists(filename)) in getPathToMakeCfMaster()
7678 return filename; in getPathToMakeCfMaster()
/CafeSDK-2.12.13-1/system/src/lib/demo/
DdemoGfx.c911 char filename[MAX_ASSET_DIR_FULL_LEN]; in DEMOGfxOpenAssetFile() local
913 strcpy(filename, gDemoAssetsDir); in DEMOGfxOpenAssetFile()
914 strncat(filename, path, MAX_ASSET_DIR_FULL_LEN - MAX_ASSET_DIR_LEN); in DEMOGfxOpenAssetFile()
916 return DEMOFSOpenFile(filename, info); in DEMOGfxOpenAssetFile()
936 char filename[MAX_ASSET_DIR_FULL_LEN]; in DEMOGfxLoadAssetFile() local
938 strcpy(filename, gDemoAssetsDir); in DEMOGfxLoadAssetFile()
939 strncat(filename, path, MAX_ASSET_DIR_FULL_LEN - MAX_ASSET_DIR_LEN); in DEMOGfxLoadAssetFile()
941 return DEMOFSSimpleRead(filename, len); in DEMOGfxLoadAssetFile()
946 char filename[MAX_ASSET_DIR_FULL_LEN]; in DEMOGfxLoadAssetFileAlign() local
948 strcpy(filename, gDemoAssetsDir); in DEMOGfxLoadAssetFileAlign()
[all …]
DdemoFS.c253 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-1/system/src/lib/demo/headers/cafe/demo/
DdemoFS.h153 void * DEMOFSSimpleRead(const char * filename, u32 * len);
165 void * DEMOFSSimpleReadAlign(const char * filename, u32 * len, u32 alignSize);
/CafeSDK-2.12.13-1/system/include/cafe/demo/
DdemoFS.h153 void * DEMOFSSimpleRead(const char * filename, u32 * len);
165 void * DEMOFSSimpleReadAlign(const char * filename, u32 * len, u32 alignSize);
/CafeSDK-2.12.13-1/system/include/cafe/gx2/
Dgx2Misc.h438 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-1/system/include/cafe/curl/
Dcurl.h179 char *filename; member