diff options
author | Mike Lockwood <lockwood@google.com> | 2014-09-19 02:00:25 +0000 |
---|---|---|
committer | Android (Google) Code Review <android-gerrit@google.com> | 2014-09-19 02:00:26 +0000 |
commit | 51938c205f41da95486b17ea645fd0ce2a73be82 (patch) | |
tree | 80b23ecf19607c803605a5f9fa173e11a9a9a744 /include/android_runtime | |
parent | 3540c462d95a0720e2931c30e1fe9820d0d63c51 (diff) | |
parent | 9ee5e7e17f7d65620f21d1a42865981e7bc56593 (diff) | |
download | frameworks_base-51938c205f41da95486b17ea645fd0ce2a73be82.zip frameworks_base-51938c205f41da95486b17ea645fd0ce2a73be82.tar.gz frameworks_base-51938c205f41da95486b17ea645fd0ce2a73be82.tar.bz2 |
Merge "USB string descriptors are not UTF8, so it is not safe to treat them as such." into lmp-dev
Diffstat (limited to 'include/android_runtime')
-rw-r--r-- | include/android_runtime/AndroidRuntime.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/android_runtime/AndroidRuntime.h b/include/android_runtime/AndroidRuntime.h index f3cfd97..fc33b7e 100644 --- a/include/android_runtime/AndroidRuntime.h +++ b/include/android_runtime/AndroidRuntime.h @@ -113,6 +113,9 @@ public: /** return a new string corresponding to 'className' with all '.'s replaced by '/'s. */ static char* toSlashClassName(const char* className); + /** Create a Java string from an ASCII or Latin-1 string */ + static jstring NewStringLatin1(JNIEnv* env, const char* bytes); + private: static int startReg(JNIEnv* env); bool parseRuntimeOption(const char* property, |