1*795d594fSAndroid Build Coastguard Worker /*
2*795d594fSAndroid Build Coastguard Worker * Copyright (C) 2014 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 // An implementation of the native-bridge interface for testing.
18*795d594fSAndroid Build Coastguard Worker
19*795d594fSAndroid Build Coastguard Worker #include "nativebridge/native_bridge.h"
20*795d594fSAndroid Build Coastguard Worker
21*795d594fSAndroid Build Coastguard Worker // NativeBridgeCallbacks implementations
native_bridge_initialize(const android::NativeBridgeRuntimeCallbacks *,const char *,const char *)22*795d594fSAndroid Build Coastguard Worker extern "C" bool native_bridge_initialize(const android::NativeBridgeRuntimeCallbacks* /* art_cbs */,
23*795d594fSAndroid Build Coastguard Worker const char* /* app_code_cache_dir */,
24*795d594fSAndroid Build Coastguard Worker const char* /* isa */) {
25*795d594fSAndroid Build Coastguard Worker return true;
26*795d594fSAndroid Build Coastguard Worker }
27*795d594fSAndroid Build Coastguard Worker
native_bridge_loadLibrary(const char *,int)28*795d594fSAndroid Build Coastguard Worker extern "C" void* native_bridge_loadLibrary(const char* /* libpath */, int /* flag */) {
29*795d594fSAndroid Build Coastguard Worker return nullptr;
30*795d594fSAndroid Build Coastguard Worker }
31*795d594fSAndroid Build Coastguard Worker
native_bridge_getTrampoline(void *,const char *,const char *,uint32_t)32*795d594fSAndroid Build Coastguard Worker extern "C" void* native_bridge_getTrampoline(void* /* handle */, const char* /* name */,
33*795d594fSAndroid Build Coastguard Worker const char* /* shorty */, uint32_t /* len */) {
34*795d594fSAndroid Build Coastguard Worker return nullptr;
35*795d594fSAndroid Build Coastguard Worker }
36*795d594fSAndroid Build Coastguard Worker
native_bridge_isSupported(const char *)37*795d594fSAndroid Build Coastguard Worker extern "C" bool native_bridge_isSupported(const char* /* libpath */) {
38*795d594fSAndroid Build Coastguard Worker return false;
39*795d594fSAndroid Build Coastguard Worker }
40*795d594fSAndroid Build Coastguard Worker
native_bridge_getAppEnv(const char *)41*795d594fSAndroid Build Coastguard Worker extern "C" const struct android::NativeBridgeRuntimeValues* native_bridge_getAppEnv(
42*795d594fSAndroid Build Coastguard Worker const char* /* abi */) {
43*795d594fSAndroid Build Coastguard Worker return nullptr;
44*795d594fSAndroid Build Coastguard Worker }
45*795d594fSAndroid Build Coastguard Worker
46*795d594fSAndroid Build Coastguard Worker android::NativeBridgeCallbacks NativeBridgeItf {
47*795d594fSAndroid Build Coastguard Worker .version = 1,
48*795d594fSAndroid Build Coastguard Worker .initialize = &native_bridge_initialize,
49*795d594fSAndroid Build Coastguard Worker .loadLibrary = &native_bridge_loadLibrary,
50*795d594fSAndroid Build Coastguard Worker .getTrampoline = &native_bridge_getTrampoline,
51*795d594fSAndroid Build Coastguard Worker .isSupported = &native_bridge_isSupported,
52*795d594fSAndroid Build Coastguard Worker .getAppEnv = &native_bridge_getAppEnv
53*795d594fSAndroid Build Coastguard Worker };
54