Home
last modified time | relevance | path

Searched refs:pLookup (Results 1 – 1 of 1) sorted by relevance

/dalvik/libdex/
DDexFile.c355 static void classLookupAdd(DexFile* pDexFile, DexClassLookup* pLookup, in classLookupAdd() argument
363 int mask = pLookup->numEntries-1; in classLookupAdd()
371 while (pLookup->table[idx].classDescriptorOffset != 0) { in classLookupAdd()
378 pLookup->table[idx].classDescriptorHash = hash; in classLookupAdd()
379 pLookup->table[idx].classDescriptorOffset = stringOff; in classLookupAdd()
380 pLookup->table[idx].classDefOffset = classDefOff; in classLookupAdd()
409 DexClassLookup* pLookup; in dexCreateClassLookup() local
427 + numEntries * sizeof(pLookup->table[0]); in dexCreateClassLookup()
429 pLookup = (DexClassLookup*) calloc(1, allocSize); in dexCreateClassLookup()
430 if (pLookup == NULL) in dexCreateClassLookup()
[all …]