Lines Matching refs:resultLength
81 vzone_write(VZone* zone, UChar* & result, int32_t & resultLength, UErrorCode& status) {
85 resultLength = s.length();
86 result = (UChar*)uprv_malloc(resultLength);
87 memcpy(result,s.getBuffer(),resultLength);
93 vzone_writeFromStart(VZone* zone, UDate start, UChar* & result, int32_t & resultLength, UErrorCode& status) {
97 resultLength = s.length();
98 result = (UChar*)uprv_malloc(resultLength);
99 memcpy(result,s.getBuffer(),resultLength);
105 vzone_writeSimple(VZone* zone, UDate time, UChar* & result, int32_t & resultLength, UErrorCode& status) {
109 resultLength = s.length();
110 result = (UChar*)uprv_malloc(resultLength);
111 memcpy(result,s.getBuffer(),resultLength);