|
PSPSDK 2026-01-13
|
Functions | |
| int | sceIdStorageLookup (u16 key, u32 offset, void *buf, u32 len) |
| Retrieves the value associated with a key. | |
| int | sceIdStorageReadLeaf (u16 key, void *buf) |
| Retrieves the whole 512 byte container for the key. | |
| int | sceIdStorageWriteLeaf (u16 key, void *buf) |
| sceIdStorageWriteLeaf() - Writes 512-bytes to idstorage key | |
| int | sceIdStorageIsReadOnly (void) |
| sceIdStorageIsReadOnly() - Checks idstorage for readonly status | |
| int | sceIdStorageFlush (void) |
| sceIdStorageFlush() - Finalizes a write | |
| int | sceIdStorageCreateLeaf (unsigned int leafid) |
| int | sceIdStorageCreateAtomicLeaves (u16 *leaves, int n) |
| int | sceIdStorageFormat () |
| int | sceIdStorageUnformat () |
| int sceIdStorageCreateAtomicLeaves | ( | u16 * | leaves, |
| int | n ) |
| int sceIdStorageCreateLeaf | ( | unsigned int | leafid | ) |
| int sceIdStorageFlush | ( | void | ) |
sceIdStorageFlush() - Finalizes a write
| int sceIdStorageFormat | ( | ) |
| int sceIdStorageIsReadOnly | ( | void | ) |
sceIdStorageIsReadOnly() - Checks idstorage for readonly status
Retrieves the value associated with a key.
| key | - idstorage key |
| offset | - offset within the 512 byte leaf |
| buf | - buffer with enough storage |
| len | - amount of data to retrieve (offset + len must be <= 512 bytes) |
| int sceIdStorageReadLeaf | ( | u16 | key, |
| void * | buf ) |
Retrieves the whole 512 byte container for the key.
| key | - idstorage key |
| buf | - buffer with at last 512 bytes of storage |
| int sceIdStorageUnformat | ( | ) |
| int sceIdStorageWriteLeaf | ( | u16 | key, |
| void * | buf ) |
sceIdStorageWriteLeaf() - Writes 512-bytes to idstorage key
| key | - idstorage key |
| buf | - buffer with 512-btes of data |