Lines Matching defs:size
76 * @attention If you want to improve the performance of writing files, you need to define the heap size in TA's
77 * manifest to be at leaset 3 times the file size plus 256KB.
78 * For example: To write a file with a size of 100KB, the defined heap size is at least
79 * 556KB (3 * 100 + 256). If the heap size cannot be satisfied, the file writing will still succeed,
84 * @param size Indicates the size of the written data, the maximum size is 160KB.
93 TEE_Result TEE_RPMB_FS_Write(const char *filename, const uint8_t *buf, size_t size);
98 * @attention If you want to improve the performance of reading files, you need to define the heap size in TA's
99 * manifest to be at leaset 3 times the file size plus 256KB.
100 * For example: To read a file with a size of 100KB, the defined heap size is at least
101 * 556KB (3 * 100 + 256). If the heap size cannot be satisfied, the file reading will still succeed,
106 * @param size Indicates the read data size.
107 * @param count Indicates the size of the actual read.
117 TEE_Result TEE_RPMB_FS_Read(const char *filename, uint8_t *buf, size_t size, uint32_t *count);
156 /** Indicates the file size. */
157 uint32_t size;
183 /** Indicates the total size of RPMB partition. */
185 /** Indicates the TA used size. */
187 /** Indicates the free size of the RPMB partition. */