Home
last modified time | relevance | path

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

/external/icu4c/common/
Duresbund.c600 if(resB->fResPath == NULL) { in ures_appendResPath()
601 resB->fResPath = resB->fResBuf; in ures_appendResPath()
602 *(resB->fResPath) = 0; in ures_appendResPath()
607 if(resB->fResPath == resB->fResBuf) { in ures_appendResPath()
608 resB->fResPath = (char *)uprv_malloc((resB->fResPathLen+1)*sizeof(char)); in ures_appendResPath()
609 uprv_strcpy(resB->fResPath, resB->fResBuf); in ures_appendResPath()
611 resB->fResPath = (char *)uprv_realloc(resB->fResPath, (resB->fResPathLen+1)*sizeof(char)); in ures_appendResPath()
614 uprv_strcpy(resB->fResPath + resPathLenOrig, toAdd); in ures_appendResPath()
618 if (resB->fResPath && resB->fResPath != resB->fResBuf) { in ures_freeResPath()
619 uprv_free(resB->fResPath); in ures_freeResPath()
[all …]
Duresimp.h65 char *fResPath; /* full path to the resource: "zh_TW/CollationElements/Sequence" */ member