Lines Matching refs:fResPath
846 if(resB->fResPath == NULL) { in ures_appendResPath()
847 resB->fResPath = resB->fResBuf; in ures_appendResPath()
848 *(resB->fResPath) = 0; in ures_appendResPath()
853 if(resB->fResPath == resB->fResBuf) { in ures_appendResPath()
854 resB->fResPath = (char *)uprv_malloc((resB->fResPathLen+1)*sizeof(char)); in ures_appendResPath()
856 if (resB->fResPath == NULL) { in ures_appendResPath()
860 uprv_strcpy(resB->fResPath, resB->fResBuf); in ures_appendResPath()
862 char *temp = (char *)uprv_realloc(resB->fResPath, (resB->fResPathLen+1)*sizeof(char)); in ures_appendResPath()
868 resB->fResPath = temp; in ures_appendResPath()
871 uprv_strcpy(resB->fResPath + resPathLenOrig, toAdd); in ures_appendResPath()
875 if (resB->fResPath && resB->fResPath != resB->fResBuf) { in ures_freeResPath()
876 uprv_free(resB->fResPath); in ures_freeResPath()
878 resB->fResPath = NULL; in ures_freeResPath()
948 if(parent->fResPath != NULL) { in init_resb_result()
949 capacity = (int32_t)uprv_strlen(parent->fResPath) + 1; in init_resb_result()
1024 char *aKey = parent->fResPath; in init_resb_result()
1147 resB->fResPath = NULL; in init_resb_result()
1179 if(parent->fResPath && parent != resB) { in init_resb_result()
1180 ures_appendResPath(resB, parent->fResPath, parent->fResPathLen, status); in init_resb_result()
1184 if(resB->fResPath[resB->fResPathLen-1] != RES_PATH_SEPARATOR) { in init_resb_result()
1191 if(resB->fResPath[resB->fResPathLen-1] != RES_PATH_SEPARATOR) { in init_resb_result()
1197 int32_t usedLen = ((resB->fResBuf == resB->fResPath) ? resB->fResPathLen : 0); in init_resb_result()
1228 r->fResPath = NULL; in ures_copyResb()
1230 if(original->fResPath) { in ures_copyResb()
1231 ures_appendResPath(r, original->fResPath, original->fResPathLen, status); in ures_copyResb()
1824 const char* resPath = resB->fResPath; in ures_getByKeyWithFallback()
1851 resPath = helper->fResPath; in ures_getByKeyWithFallback()
1938 if (bundle->fResPath == NULL || *bundle->fResPath == 0) { in getAllContainerItemsWithFallback()
1941 rb = ures_getByKeyWithFallback(&parentBundle, bundle->fResPath, in getAllContainerItemsWithFallback()
2967 if(uprv_strncmp(res1->fResPath, res2->fResPath, res1->fResPathLen)!=0){
2983 if(res->fResPath!=NULL){
2984 ret = ures_findSubResource(bundle, res->fResPath, NULL, status);