| 79 | } |
| 80 | |
| 81 | void ByteArrayOutputStream::Write(lang::ByteArray b, int off, int len) |
| 82 | { |
| 83 | m_env->CallVoidMethod(m_object, m_env->GetMethodID(m_class, "write", "([BII)V"), (jbyteArray)b, off, len); |
| 84 | } |
| 85 | |
| 86 | lang::ByteArray ByteArrayOutputStream::ToByteArray() const |
| 87 | { |
no outgoing calls
no test coverage detected