vitasdk
Documentation of the vitasdk
fcntl.h File Reference

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. More...
 
int sceIoClose (SceUID fd)
 Delete a descriptor. More...
 
SceSSize sceIoRead (SceUID fd, void *buf, SceSize nbyte)
 Read input. More...
 
int sceIoPread (SceUID fd, void *data, SceSize size, SceOff offset)
 Read input at offset. More...
 
SceSSize sceIoWrite (SceUID fd, const void *buf, SceSize nbyte)
 Write output. More...
 
int sceIoPwrite (SceUID fd, const void *data, SceSize size, SceOff offset)
 Write output at offset. More...
 
SceOff sceIoLseek (SceUID fd, SceOff offset, int whence)
 Reposition read/write file descriptor offset. More...
 
long sceIoLseek32 (SceUID fd, long offset, int whence)
 Reposition read/write file descriptor offset (32bit mode) More...
 
int sceIoRemove (const char *file)
 Remove directory entry. More...
 
int sceIoRename (const char *oldname, const char *newname)
 Change the name of a file. More...
 
int sceIoSync (const char *device, unsigned int unk)
 Synchronize the file data on the device. More...
 
int sceIoSyncByFd (SceUID fd, int flag)
 Synchronize the file data for one file. More...
 
int sceIoCancel (SceUID fd)
 Cancel an asynchronous operation on a file descriptor. More...
 
int sceIoGetPriority (SceUID fd)
 
int sceIoGetProcessDefaultPriority (void)
 
int sceIoGetThreadDefaultPriority (void)
 
int sceIoSetPriority (SceUID fd, int priority)
 
int sceIoSetProcessDefaultPriority (int priority)
 
int sceIoSetThreadDefaultPriority (int priority)