Searched refs:StringCharsReleaser (Results 1 – 2 of 2) sorted by relevance
33 class StringCharsReleaser {35 StringCharsReleaser() : env_(nullptr) {} in StringCharsReleaser() function37 StringCharsReleaser(JNIEnv* env, jstring jstr) : env_(env), jstr_(jstr) {} in StringCharsReleaser() function39 StringCharsReleaser(const StringCharsReleaser& orig) = default;42 StringCharsReleaser& operator=(const StringCharsReleaser& rhs) {68 using ScopedStringChars = std::unique_ptr<const char, StringCharsReleaser>;
72 StringCharsReleaser(env, string)); in GetScopedStringChars()