MCPcopy Create free account
hub / github.com/alibaba/CicadaPlayer / FindClass

Method FindClass

framework/utils/Android/FindClass.cpp:8–18  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

6#include "JniException.h"
7
8FindClass::FindClass(JNIEnv *pEnv, const char *className)
9{
10 if (className == nullptr || pEnv == nullptr) {
11 mResult = nullptr;
12 mEnv = nullptr;
13 } else {
14 mEnv = pEnv;
15 mResult = pEnv->FindClass(className);
16 JniException::clearException(mEnv);
17 }
18}
19
20FindClass::~FindClass()
21{

Callers 5

uuid_get_uuidFunction · 0.45
init_jniMethod · 0.45
initMethod · 0.45
initMethod · 0.45
getJPlayerConfigMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected