Home | History | Annotate | Download | only in androidfw

Lines Matching refs:mCache

416     : mError(NO_INIT), mOwnedData(NULL), mHeader(NULL), mCache(NULL)
421 : mError(NO_INIT), mOwnedData(NULL), mHeader(NULL), mCache(NULL)
632 if (mHeader != NULL && mCache != NULL) {
634 if (mCache[x] != NULL) {
635 free(mCache[x]);
636 mCache[x] = NULL;
639 free(mCache);
640 mCache = NULL;
720 if (mCache == NULL) {
729 mCache = (char16_t**)calloc(mHeader->stringCount, sizeof(char16_t**));
730 if (mCache == NULL) {
737 if (mCache[idx] != NULL) {
738 return mCache[idx];
758 mCache[idx] = u16str;