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