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

  /external/icu4c/common/
uresimp.h 78 int32_t fResPathLen;
uresbund.c 762 resB->fResPathLen = uprv_strlen(toAdd);
763 if(RES_BUFSIZE <= resB->fResPathLen+1) {
765 resB->fResPath = (char *)uprv_malloc((resB->fResPathLen+1)*sizeof(char));
767 resB->fResPath = (char *)uprv_realloc(resB->fResPath, (resB->fResPathLen+1)*sizeof(char));
774 int32_t resPathLenOrig = resB->fResPathLen;
778 resB->fResPathLen = 0;
780 resB->fResPathLen += lenToAdd;
781 if(RES_BUFSIZE <= resB->fResPathLen+1) {
783 resB->fResPath = (char *)uprv_malloc((resB->fResPathLen+1)*sizeof(char));
791 char *temp = (char *)uprv_realloc(resB->fResPath, (resB->fResPathLen+1)*sizeof(char))
    [all...]

Completed in 27 milliseconds