Lines Matching refs:label
174 const char* label) { in CheckListSize() argument
186 ErrorStringPrintf("Overflow in range for %s: %zx for %zu@%zu", label, in CheckListSize()
196 ErrorStringPrintf("Bad range for %s: %zx to %zx", label, in CheckListSize()
204 bool DexFileVerifier::CheckList(size_t element_size, const char* label, const uint8_t* *ptr) { in CheckList() argument
206 if (!CheckListSize(*ptr, 1, 4U, label)) { in CheckList()
212 if (!CheckListSize(*ptr + 4, count, element_size, label)) { in CheckList()
221 bool DexFileVerifier::CheckIndex(uint32_t field, uint32_t limit, const char* label) { in CheckIndex() argument
223 ErrorStringPrintf("Bad index for %s: %x >= %x", label, field, limit); in CheckIndex()
229 bool DexFileVerifier::CheckValidOffsetAndSize(uint32_t offset, uint32_t size, const char* label) { in CheckValidOffsetAndSize() argument
232 ErrorStringPrintf("Offset(%d) should be zero when size is zero for %s.", offset, label); in CheckValidOffsetAndSize()
237 ErrorStringPrintf("Offset(%d) should be within file size(%zu) for %s.", offset, size_, label); in CheckValidOffsetAndSize()