Searched refs:convertedLength (Results 1 - 1 of 1) sorted by relevance

/haiku/src/kits/mail/
H A Dmail_util.cpp569 int32 convertedLength = originalLength * 5 + 1; local
570 char *convertedBuffer = convertedWord.LockBuffer (convertedLength);
572 &originalLength, convertedBuffer, &convertedLength, &state);
573 for (int i = 0; i < convertedLength; i++) {
580 convertedWord.UnlockBuffer (convertedLength);
711 int32 convertedLength = currentWord->convertedWord.Length (); local
716 encoded = (char *) malloc (convertedLength * 3);
717 encoded_len = encode_qp (encoded, convertedBuffer, convertedLength, true /* headerMode */);
720 encoded = (char *) malloc (convertedLength * 2);
721 encoded_len = encode_base64 (encoded, convertedBuffer, convertedLength, tru
[all...]

Completed in 75 milliseconds