OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:JNIEnvironment
(Results
1 - 2
of
2
) sorted by null
/external/webrtc/webrtc/modules/utility/include/
jvm_android.h
90
class
JNIEnvironment
{
92
explicit
JNIEnvironment
(JNIEnv* jni);
93
~
JNIEnvironment
();
123
// rtc::scoped_ptr<
JNIEnvironment
> env;
153
// used to create a valid
JNIEnvironment
object or to get a JavaClass object.
156
// Creates a
JNIEnvironment
object.
159
rtc::scoped_ptr<
JNIEnvironment
> environment();
/external/webrtc/webrtc/modules/utility/source/
jvm_android.cc
174
//
JNIEnvironment
implementation.
175
JNIEnvironment
::
JNIEnvironment
(JNIEnv* jni) : jni_(jni) {
176
ALOGD("
JNIEnvironment
::ctor%s", GetThreadInfo().c_str());
179
JNIEnvironment
::~
JNIEnvironment
() {
180
ALOGD("
JNIEnvironment
::dtor%s", GetThreadInfo().c_str());
184
rtc::scoped_ptr<NativeRegistration>
JNIEnvironment
::RegisterNatives(
186
ALOGD("
JNIEnvironment
::RegisterNatives(%s)", name);
195
std::string
JNIEnvironment
::JavaToStdString(const jstring& j_string)
[
all
...]
Completed in 46 milliseconds