HomeSort by relevance Sort by last modified time
    Searched refs:fResPathLen (Results 1 - 2 of 2) sorted by null

  /external/icu/icu4c/source/common/
uresimp.h 71 int32_t fResPathLen;
uresbund.cpp 835 resB->fResPathLen = uprv_strlen(toAdd);
836 if(RES_BUFSIZE <= resB->fResPathLen+1) {
838 resB->fResPath = (char *)uprv_malloc((resB->fResPathLen+1)*sizeof(char));
840 resB->fResPath = (char *)uprv_realloc(resB->fResPath, (resB->fResPathLen+1)*sizeof(char));
847 int32_t resPathLenOrig = resB->fResPathLen;
851 resB->fResPathLen = 0;
853 resB->fResPathLen += lenToAdd;
854 if(RES_BUFSIZE <= resB->fResPathLen+1) {
856 resB->fResPath = (char *)uprv_malloc((resB->fResPathLen+1)*sizeof(char));
864 char *temp = (char *)uprv_realloc(resB->fResPath, (resB->fResPathLen+1)*sizeof(char))
    [all...]

Completed in 173 milliseconds