Searched refs:tlSize (Results 1 – 1 of 1) sorted by relevance
603 int32_t tlSize = ftell(fs); in mcRegistryGetServiceBlob() local605 if (MAX_TL_SIZE < tlSize) { in mcRegistryGetServiceBlob()606 LOG_E("mcRegistryGetServiceBlob() failed: service blob too big: %d", tlSize); in mcRegistryGetServiceBlob()651 if (NULL == (regobj = (regObject_t *) (malloc(sizeof(regObject_t) + tlSize)))) { in mcRegistryGetServiceBlob()656 regobj->len = tlSize; in mcRegistryGetServiceBlob()657 fread((char *)regobj->value, 1, tlSize, fs); in mcRegistryGetServiceBlob()662 size_t regObjValueSize = tlSize + sizeof(mcSoContainerPath_t); in mcRegistryGetServiceBlob()673 fread((char *)regobj->value, 1, tlSize, fs); in mcRegistryGetServiceBlob()733 assert(p - tlSize - sizeof(regObject_t) == (uint8_t *)regobj); in mcRegistryGetServiceBlob()766 int32_t tlSize = ftell(fs); in mcRegistryGetDriverBlob() local[all …]