Home
last modified time | relevance | path

Searched refs:ScopedBytes (Results 1 – 1 of 1) sorted by relevance

/libnativehelper/include/nativehelper/
DScopedBytes.h29 class ScopedBytes {
31 ScopedBytes(JNIEnv* env, jobject object) in ScopedBytes() function
44 ~ScopedBytes() { in ~ScopedBytes()
60 ScopedBytes(const ScopedBytes&);
61 void operator=(const ScopedBytes&);
64 class ScopedBytesRO : public ScopedBytes<true> {
66 ScopedBytesRO(JNIEnv* env, jobject object) : ScopedBytes<true>(env, object) {} in ScopedBytesRO()
72 class ScopedBytesRW : public ScopedBytes<false> {
74 ScopedBytesRW(JNIEnv* env, jobject object) : ScopedBytes<false>(env, object) {} in ScopedBytesRW()