Searched refs:perm (Results 1 – 3 of 3) sorted by relevance
| /RvlSDK-2.1/build/demos/nanddemo/src/ |
| D | gamesave.c | 44 static void GetPermString(u8 perm, char *permString); 372 GetPermString(u8 perm, char *permString) in GetPermString() argument 381 if (perm & NAND_PERM_OWNER_READ) permString[0] = 'r'; in GetPermString() 382 if (perm & NAND_PERM_OWNER_WRITE) permString[1] = 'w'; in GetPermString() 383 if (perm & NAND_PERM_GROUP_READ) permString[2] = 'r'; in GetPermString() 384 if (perm & NAND_PERM_GROUP_WRITE) permString[3] = 'w'; in GetPermString() 385 if (perm & NAND_PERM_OTHER_READ) permString[4] = 'r'; in GetPermString() 386 if (perm & NAND_PERM_OTHER_WRITE) permString[5] = 'w'; in GetPermString()
|
| D | directory.c | 62 static void createFile(const char *path, u8 perm); 180 static void createFile(const char *path, const u8 perm) in createFile() argument 182 s32 result = NANDCreate(path, perm, ATTR); in createFile()
|
| /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… 297 s32 NANDCreateDir (const char *path, u8 perm, u8 attr); 298 s32 NANDCreateDirAsync (const char *path, u8 perm, u8 attr, NANDCallback cb, NANDCommandBlock *bl…
|