Lines Matching refs:fResPath
848 if(resB->fResPath == NULL) { in ures_appendResPath()
849 resB->fResPath = resB->fResBuf; in ures_appendResPath()
850 *(resB->fResPath) = 0; in ures_appendResPath()
855 if(resB->fResPath == resB->fResBuf) { in ures_appendResPath()
856 resB->fResPath = (char *)uprv_malloc((resB->fResPathLen+1)*sizeof(char)); in ures_appendResPath()
858 if (resB->fResPath == NULL) { in ures_appendResPath()
862 uprv_strcpy(resB->fResPath, resB->fResBuf); in ures_appendResPath()
864 char *temp = (char *)uprv_realloc(resB->fResPath, (resB->fResPathLen+1)*sizeof(char)); in ures_appendResPath()
870 resB->fResPath = temp; in ures_appendResPath()
873 uprv_strcpy(resB->fResPath + resPathLenOrig, toAdd); in ures_appendResPath()
877 if (resB->fResPath && resB->fResPath != resB->fResBuf) { in ures_freeResPath()
878 uprv_free(resB->fResPath); in ures_freeResPath()
880 resB->fResPath = NULL; in ures_freeResPath()
950 if(parent->fResPath != NULL) { in init_resb_result()
951 capacity = (int32_t)uprv_strlen(parent->fResPath) + 1; in init_resb_result()
1026 char *aKey = parent->fResPath; in init_resb_result()
1149 resB->fResPath = NULL; in init_resb_result()
1181 if(parent->fResPath && parent != resB) { in init_resb_result()
1182 ures_appendResPath(resB, parent->fResPath, parent->fResPathLen, status); in init_resb_result()
1186 if(resB->fResPath[resB->fResPathLen-1] != RES_PATH_SEPARATOR) { in init_resb_result()
1193 if(resB->fResPath[resB->fResPathLen-1] != RES_PATH_SEPARATOR) { in init_resb_result()
1199 int32_t usedLen = ((resB->fResBuf == resB->fResPath) ? resB->fResPathLen : 0); in init_resb_result()
1230 r->fResPath = NULL; in ures_copyResb()
1232 if(original->fResPath) { in ures_copyResb()
1233 ures_appendResPath(r, original->fResPath, original->fResPathLen, status); in ures_copyResb()
1827 const char* resPath = resB->fResPath; in ures_getByKeyWithFallback()
1854 resPath = helper->fResPath; in ures_getByKeyWithFallback()
1937 if (bundle->fResPath == NULL || *bundle->fResPath == 0) { in getAllItemsWithFallback()
1940 rb = ures_getByKeyWithFallback(&parentBundle, bundle->fResPath, in getAllItemsWithFallback()
2950 if(uprv_strncmp(res1->fResPath, res2->fResPath, res1->fResPathLen)!=0){
2966 if(res->fResPath!=NULL){
2967 ret = ures_findSubResource(bundle, res->fResPath, NULL, status);