diff options
Diffstat (limited to 'services/jni/onload.cpp')
-rw-r--r-- | services/jni/onload.cpp | 73 |
1 files changed, 0 insertions, 73 deletions
diff --git a/services/jni/onload.cpp b/services/jni/onload.cpp deleted file mode 100644 index efc34a2..0000000 --- a/services/jni/onload.cpp +++ /dev/null @@ -1,73 +0,0 @@ -/* - * Copyright (C) 2009 The Android Open Source Project - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -#include "JNIHelp.h" -#include "jni.h" -#include "utils/Log.h" -#include "utils/misc.h" - -namespace android { -int register_android_server_AlarmManagerService(JNIEnv* env); -int register_android_server_ConsumerIrService(JNIEnv *env); -int register_android_server_InputApplicationHandle(JNIEnv* env); -int register_android_server_InputWindowHandle(JNIEnv* env); -int register_android_server_InputManager(JNIEnv* env); -int register_android_server_LightsService(JNIEnv* env); -int register_android_server_PowerManagerService(JNIEnv* env); -int register_android_server_SerialService(JNIEnv* env); -int register_android_server_UsbDeviceManager(JNIEnv* env); -int register_android_server_UsbHostManager(JNIEnv* env); -int register_android_server_VibratorService(JNIEnv* env); -int register_android_server_SystemServer(JNIEnv* env); -int register_android_server_location_GpsLocationProvider(JNIEnv* env); -int register_android_server_location_FlpHardwareProvider(JNIEnv* env); -int register_android_server_connectivity_Vpn(JNIEnv* env); -int register_android_server_AssetAtlasService(JNIEnv* env); -}; - -using namespace android; - -extern "C" jint JNI_OnLoad(JavaVM* vm, void* reserved) -{ - JNIEnv* env = NULL; - jint result = -1; - - if (vm->GetEnv((void**) &env, JNI_VERSION_1_4) != JNI_OK) { - ALOGE("GetEnv failed!"); - return result; - } - ALOG_ASSERT(env, "Could not retrieve the env!"); - - register_android_server_PowerManagerService(env); - register_android_server_SerialService(env); - register_android_server_InputApplicationHandle(env); - register_android_server_InputWindowHandle(env); - register_android_server_InputManager(env); - register_android_server_LightsService(env); - register_android_server_AlarmManagerService(env); - register_android_server_UsbDeviceManager(env); - register_android_server_UsbHostManager(env); - register_android_server_VibratorService(env); - register_android_server_SystemServer(env); - register_android_server_location_GpsLocationProvider(env); - register_android_server_location_FlpHardwareProvider(env); - register_android_server_connectivity_Vpn(env); - register_android_server_AssetAtlasService(env); - register_android_server_ConsumerIrService(env); - - - return JNI_VERSION_1_4; -} |