xref: /aosp_15_r20/art/libnativebridge/tests/NativeBridge7CriticalNative_lib.cpp (revision 795d594fd825385562da6b089ea9b2033f3abf5a)
1*795d594fSAndroid Build Coastguard Worker /*
2*795d594fSAndroid Build Coastguard Worker  * Copyright (C) 2023 The Android Open Source Project
3*795d594fSAndroid Build Coastguard Worker  *
4*795d594fSAndroid Build Coastguard Worker  * Licensed under the Apache License, Version 2.0 (the "License");
5*795d594fSAndroid Build Coastguard Worker  * you may not use this file except in compliance with the License.
6*795d594fSAndroid Build Coastguard Worker  * You may obtain a copy of the License at
7*795d594fSAndroid Build Coastguard Worker  *
8*795d594fSAndroid Build Coastguard Worker  *      http://www.apache.org/licenses/LICENSE-2.0
9*795d594fSAndroid Build Coastguard Worker  *
10*795d594fSAndroid Build Coastguard Worker  * Unless required by applicable law or agreed to in writing, software
11*795d594fSAndroid Build Coastguard Worker  * distributed under the License is distributed on an "AS IS" BASIS,
12*795d594fSAndroid Build Coastguard Worker  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13*795d594fSAndroid Build Coastguard Worker  * See the License for the specific language governing permissions and
14*795d594fSAndroid Build Coastguard Worker  * limitations under the License.
15*795d594fSAndroid Build Coastguard Worker  */
16*795d594fSAndroid Build Coastguard Worker 
17*795d594fSAndroid Build Coastguard Worker #include "NativeBridge7CriticalNative_lib.h"
18*795d594fSAndroid Build Coastguard Worker 
19*795d594fSAndroid Build Coastguard Worker namespace android {
20*795d594fSAndroid Build Coastguard Worker 
21*795d594fSAndroid Build Coastguard Worker static bool g_legacy_get_trampoline_called = false;
22*795d594fSAndroid Build Coastguard Worker static bool g_get_trampoline2_called = false;
23*795d594fSAndroid Build Coastguard Worker static JNICallType g_jni_call_type = kJNICallTypeRegular;
24*795d594fSAndroid Build Coastguard Worker 
25*795d594fSAndroid Build Coastguard Worker static bool g_get_trampoline_fn_ptr_called = false;
26*795d594fSAndroid Build Coastguard Worker static JNICallType g_fn_ptr_jni_call_type = kJNICallTypeRegular;
27*795d594fSAndroid Build Coastguard Worker 
ResetTrampolineCalledState()28*795d594fSAndroid Build Coastguard Worker void ResetTrampolineCalledState() {
29*795d594fSAndroid Build Coastguard Worker   g_legacy_get_trampoline_called = false;
30*795d594fSAndroid Build Coastguard Worker   g_get_trampoline2_called = false;
31*795d594fSAndroid Build Coastguard Worker   g_jni_call_type = kJNICallTypeRegular;
32*795d594fSAndroid Build Coastguard Worker }
33*795d594fSAndroid Build Coastguard Worker 
SetLegacyGetTrampolineCalled()34*795d594fSAndroid Build Coastguard Worker void SetLegacyGetTrampolineCalled() { g_legacy_get_trampoline_called = true; }
35*795d594fSAndroid Build Coastguard Worker 
IsLegacyGetTrampolineCalled()36*795d594fSAndroid Build Coastguard Worker bool IsLegacyGetTrampolineCalled() { return g_legacy_get_trampoline_called; }
37*795d594fSAndroid Build Coastguard Worker 
SetGetTrampoline2Called(JNICallType jni_call_type)38*795d594fSAndroid Build Coastguard Worker void SetGetTrampoline2Called(JNICallType jni_call_type) {
39*795d594fSAndroid Build Coastguard Worker   g_get_trampoline2_called = true;
40*795d594fSAndroid Build Coastguard Worker   g_jni_call_type = jni_call_type;
41*795d594fSAndroid Build Coastguard Worker }
42*795d594fSAndroid Build Coastguard Worker 
IsGetTrampoline2Called()43*795d594fSAndroid Build Coastguard Worker bool IsGetTrampoline2Called() { return g_get_trampoline2_called; }
44*795d594fSAndroid Build Coastguard Worker 
GetTrampoline2JNICallType()45*795d594fSAndroid Build Coastguard Worker JNICallType GetTrampoline2JNICallType() { return g_jni_call_type; }
46*795d594fSAndroid Build Coastguard Worker 
SetGetTrampolineFnPtrCalled(JNICallType jni_call_type)47*795d594fSAndroid Build Coastguard Worker void SetGetTrampolineFnPtrCalled(JNICallType jni_call_type) {
48*795d594fSAndroid Build Coastguard Worker   g_get_trampoline_fn_ptr_called = true;
49*795d594fSAndroid Build Coastguard Worker   g_fn_ptr_jni_call_type = jni_call_type;
50*795d594fSAndroid Build Coastguard Worker }
51*795d594fSAndroid Build Coastguard Worker 
IsGetTrampolineFnPtrCalled()52*795d594fSAndroid Build Coastguard Worker bool IsGetTrampolineFnPtrCalled() { return g_get_trampoline_fn_ptr_called; }
53*795d594fSAndroid Build Coastguard Worker 
GetTrampolineFnPtrJNICallType()54*795d594fSAndroid Build Coastguard Worker JNICallType GetTrampolineFnPtrJNICallType() { return g_fn_ptr_jni_call_type; }
55*795d594fSAndroid Build Coastguard Worker 
56*795d594fSAndroid Build Coastguard Worker }  // namespace android
57