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 69 int32_t fResPathLen;
uresbund.cpp 833 resB->fResPathLen = uprv_strlen(toAdd);
834 if(RES_BUFSIZE <= resB->fResPathLen+1) {
836 resB->fResPath = (char *)uprv_malloc((resB->fResPathLen+1)*sizeof(char));
838 resB->fResPath = (char *)uprv_realloc(resB->fResPath, (resB->fResPathLen+1)*sizeof(char));
845 int32_t resPathLenOrig = resB->fResPathLen;
849 resB->fResPathLen = 0;
851 resB->fResPathLen += lenToAdd;
852 if(RES_BUFSIZE <= resB->fResPathLen+1) {
854 resB->fResPath = (char *)uprv_malloc((resB->fResPathLen+1)*sizeof(char));
862 char *temp = (char *)uprv_realloc(resB->fResPath, (resB->fResPathLen+1)*sizeof(char))
    [all...]

Completed in 2076 milliseconds