blob: 619f4dc631d5b262e362b59fff863c8594d9308b [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
19/** @hide */
20public interface IHwBinder {
Andreas Huber90349b32016-08-18 14:29:40 -070021 // These MUST match their corresponding libhwbinder/IBinder.h definition !!!
Andreas Huberdab5fc62016-08-15 09:25:02 -070022 public static final int FIRST_CALL_TRANSACTION = 1;
Andreas Huber90349b32016-08-18 14:29:40 -070023 public static final int FLAG_ONEWAY = 1;
Andreas Huberdab5fc62016-08-15 09:25:02 -070024
25 public void transact(
Steven Moreland27538df2016-12-20 15:55:48 -080026 int code, HwParcel request, HwParcel reply, int flags)
27 throws RemoteException;
Andreas Huberdab5fc62016-08-15 09:25:02 -070028
29 public IHwInterface queryLocalInterface(String descriptor);
Martijn Coenen727f7bf2016-12-27 14:33:09 +010030
31 /**
32 * Interface for receiving a callback when the process hosting a service
33 * has gone away.
34 */
35 public interface DeathRecipient {
36 public void serviceDied(long cookie);
37 }
38
39 public boolean linkToDeath(DeathRecipient recipient, long cookie);
Martijn Coenen727f7bf2016-12-27 14:33:09 +010040 public boolean unlinkToDeath(DeathRecipient recipient);
Andreas Huberdab5fc62016-08-15 09:25:02 -070041}