OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:JHwRemoteBinder
(Results
1 - 2
of
2
) sorted by null
/frameworks/base/core/jni/
android_os_HwRemoteBinder.h
50
struct
JHwRemoteBinder
: public RefBase {
53
static sp<
JHwRemoteBinder
> SetNativeContext(
54
JNIEnv *env, jobject thiz, const sp<
JHwRemoteBinder
> &context);
56
static sp<
JHwRemoteBinder
> GetNativeContext(JNIEnv *env, jobject thiz);
60
JHwRemoteBinder
(
68
virtual ~
JHwRemoteBinder
();
76
DISALLOW_COPY_AND_ASSIGN(
JHwRemoteBinder
);
android_os_HwRemoteBinder.cpp
18
#define LOG_TAG "
JHwRemoteBinder
"
213
void
JHwRemoteBinder
::InitClass(JNIEnv *env) {
228
sp<
JHwRemoteBinder
>
JHwRemoteBinder
::SetNativeContext(
229
JNIEnv *env, jobject thiz, const sp<
JHwRemoteBinder
> &context) {
230
sp<
JHwRemoteBinder
> old =
231
(
JHwRemoteBinder
*)env->GetLongField(thiz, gProxyOffsets.contextID);
247
sp<
JHwRemoteBinder
>
JHwRemoteBinder
::GetNativeContext(
249
return (
JHwRemoteBinder
*)env->GetLongField(thiz, gProxyOffsets.contextID)
[
all
...]
Completed in 61 milliseconds