The lights support is only needed by PowerManagerService and NotificationManagerService, so we do not need a Binder API for it. Move backlight and notification light support to new LightsService class. The camera flash is now handled directly by the camera HAL, so the flash Hardware service flash support is obsolete. Change-Id: I086d681f54668e7f7de3e8b90df3de19d59833c5 Signed-off-by: Mike Lockwood <lockwood@android.com>
56 lines
1.4 KiB
C++
56 lines
1.4 KiB
C++
/*
|
|
* 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.
|
|
*/
|
|
|
|
#define LOG_TAG "VibratorService"
|
|
|
|
#include "jni.h"
|
|
#include "JNIHelp.h"
|
|
#include "android_runtime/AndroidRuntime.h"
|
|
|
|
#include <utils/misc.h>
|
|
#include <utils/Log.h>
|
|
#include <hardware_legacy/vibrator.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
namespace android
|
|
{
|
|
|
|
static void vibratorOn(JNIEnv *env, jobject clazz, jlong timeout_ms)
|
|
{
|
|
// LOGI("vibratorOn\n");
|
|
vibrator_on(timeout_ms);
|
|
}
|
|
|
|
static void vibratorOff(JNIEnv *env, jobject clazz)
|
|
{
|
|
// LOGI("vibratorOff\n");
|
|
vibrator_off();
|
|
}
|
|
|
|
static JNINativeMethod method_table[] = {
|
|
{ "vibratorOn", "(J)V", (void*)vibratorOn },
|
|
{ "vibratorOff", "()V", (void*)vibratorOff }
|
|
};
|
|
|
|
int register_android_server_VibratorService(JNIEnv *env)
|
|
{
|
|
return jniRegisterNativeMethods(env, "com/android/server/VibratorService",
|
|
method_table, NELEM(method_table));
|
|
}
|
|
|
|
};
|