![]() |
vitasdk
Documentation of the vitasdk
|
Go to the source code of this file.
Functions | |
| SceUID | sceIoOpen (const char *file, int flags, SceMode mode) |
| Open or create a file for reading or writing. | |
| int | sceIoClose (SceUID fd) |
| Delete a descriptor. | |
| SceSSize | sceIoRead (SceUID fd, void *buf, SceSize nbyte) |
| Read input. | |
| int | sceIoPread (SceUID fd, void *data, SceSize size, SceOff offset) |
| Read input at offset. | |
| SceSSize | sceIoWrite (SceUID fd, const void *buf, SceSize nbyte) |
| Write output. | |
| int | sceIoPwrite (SceUID fd, const void *data, SceSize size, SceOff offset) |
| Write output at offset. | |
| SceOff | sceIoLseek (SceUID fd, SceOff offset, int whence) |
| Reposition read/write file descriptor offset. | |
| long | sceIoLseek32 (SceUID fd, long offset, int whence) |
| Reposition read/write file descriptor offset (32bit mode) | |
| int | sceIoRemove (const char *file) |
| Remove directory entry. | |
| int | sceIoRename (const char *oldname, const char *newname) |
| Change the name of a file. | |
| int | sceIoSync (const char *device, unsigned int unk) |
| Synchronize the file data on the device. | |
| int | sceIoSyncByFd (SceUID fd, int flag) |
| Synchronize the file data for one file. | |
| int | sceIoCancel (SceUID fd) |
| Cancel an asynchronous operation on a file descriptor. | |
| int | sceIoGetPriority (SceUID fd) |
| int | sceIoGetProcessDefaultPriority (void) |
| int | sceIoGetThreadDefaultPriority (void) |
| int | sceIoSetPriority (SceUID fd, int priority) |
| int | sceIoSetProcessDefaultPriority (int priority) |
| int | sceIoSetThreadDefaultPriority (int priority) |