Home | History | Annotate | Download | only in common

Lines Matching refs:copyStr

1555         char *copyStr = (char *)uprv_malloc(len+1);
1556 if (copyStr == NULL) {
1559 uprv_memcpy(copyStr, src->context, len+1);
1560 dest->context = copyStr;
2334 UChar *copyStr = (UChar *)uprv_malloc((len+1) * sizeof(UChar));
2335 if (copyStr == NULL) {
2340 copyStr[i] = srcStr[i];
2342 copyStr[len] = 0;
2343 dest->context = copyStr;