Searched refs:szP (Results 1 – 2 of 2) sorted by relevance
/device/google/contexthub/firmware/src/platform/stm32f4xx/ |
D | eeData.c | 27 static void* eeFind(uint32_t nameToFind, uint32_t *offset, bool findFirst, uint32_t *szP) in eeFind() argument 44 *szP = sz; in eeFind() 67 static void *eeDataGetEx(uint32_t name, uint32_t *offsetP, bool first, void *buf, uint32_t *szP) in eeDataGetEx() argument 80 if (buf && szP) { //get the data in eeDataGetEx() 81 if (sz > *szP) in eeDataGetEx() 82 sz = *szP; in eeDataGetEx() 83 *szP = sz; in eeDataGetEx() 86 else if (szP) //get size in eeDataGetEx() 87 *szP = sz; in eeDataGetEx() 92 bool eeDataGet(uint32_t name, void *buf, uint32_t *szP) in eeDataGet() argument [all …]
|
/device/google/contexthub/firmware/inc/ |
D | eeData.h | 45 bool eeDataGet(uint32_t name, void *buf, uint32_t *szP); 49 void *eeDataGetAllVersions(uint32_t name, void *buf, uint32_t *szP, void **stateP);
|