blob: ce9f6c1654c26830d65cd32aabe5ea74c30b9ac2 [file] [log] [blame]
Andreas Huberdab5fc62016-08-15 09:25:02 -07001/*
2 * Copyright (C) 2016 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17package android.os;
18
Steven Morelande8e63aa2018-01-10 15:45:36 -080019import android.annotation.SystemApi;
20
Andreas Huberdab5fc62016-08-15 09:25:02 -070021/** @hide */
Steven Morelande8e63aa2018-01-10 15:45:36 -080022@SystemApi
Andreas Huberdab5fc62016-08-15 09:25:02 -070023public interface IHwBinder {
Andreas Huber90349b32016-08-18 14:29:40 -070024 // These MUST match their corresponding libhwbinder/IBinder.h definition !!!
Steven Morelande8e63aa2018-01-10 15:45:36 -080025 /** @hide */
Andreas Huberdab5fc62016-08-15 09:25:02 -070026 public static final int FIRST_CALL_TRANSACTION = 1;
Steven Morelande8e63aa2018-01-10 15:45:36 -080027 /** @hide */
Andreas Huber90349b32016-08-18 14:29:40 -070028 public static final int FLAG_ONEWAY = 1;
Andreas Huberdab5fc62016-08-15 09:25:02 -070029
Steven Morelande8e63aa2018-01-10 15:45:36 -080030 /** @hide */
Andreas Huberdab5fc62016-08-15 09:25:02 -070031 public void transact(
Steven Moreland27538df2016-12-20 15:55:48 -080032 int code, HwParcel request, HwParcel reply, int flags)
33 throws RemoteException;
Andreas Huberdab5fc62016-08-15 09:25:02 -070034
Steven Morelande8e63aa2018-01-10 15:45:36 -080035 /** @hide */
Andreas Huberdab5fc62016-08-15 09:25:02 -070036 public IHwInterface queryLocalInterface(String descriptor);
Martijn Coenen727f7bf2016-12-27 14:33:09 +010037
38 /**
39 * Interface for receiving a callback when the process hosting a service
40 * has gone away.
41 */
Steven Morelande8e63aa2018-01-10 15:45:36 -080042 @SystemApi
Martijn Coenen727f7bf2016-12-27 14:33:09 +010043 public interface DeathRecipient {
Steven Morelande8e63aa2018-01-10 15:45:36 -080044 /**
45 * Callback for a registered process dying.
46 */
47 @SystemApi
Martijn Coenen727f7bf2016-12-27 14:33:09 +010048 public void serviceDied(long cookie);
49 }
50
Steven Morelande8e63aa2018-01-10 15:45:36 -080051 /**
52 * Notifies the death recipient with the cookie when the process containing
53 * this binder dies.
54 */
55 @SystemApi
Martijn Coenen727f7bf2016-12-27 14:33:09 +010056 public boolean linkToDeath(DeathRecipient recipient, long cookie);
Steven Morelande8e63aa2018-01-10 15:45:36 -080057 /**
58 * Unregisters the death recipient from this binder.
59 */
60 @SystemApi
Martijn Coenen727f7bf2016-12-27 14:33:09 +010061 public boolean unlinkToDeath(DeathRecipient recipient);
Andreas Huberdab5fc62016-08-15 09:25:02 -070062}