| 375 | } |
| 376 | |
| 377 | UTF8* StringBuffer::createCopy8() const |
| 378 | { |
| 379 | incRequestCount8(); |
| 380 | // convert will create a buffer of the appropriate size for a null terminated |
| 381 | // input string. |
| 382 | UTF8* out = createUTF8string(mBuffer.address()); |
| 383 | return out; |
| 384 | } |
| 385 | |
| 386 | const UTF16* StringBuffer::getPtr() const |
| 387 | { |
no test coverage detected