894556cebd
This change adds a new HIDL safe union, InterfaceTypeSafeUnion (containing an interface+array) to the safeunion test HAL. Bug: 79878527 Bug: 110269925 Test: Existing hidl_test suite passes successfully. Added more test- cases to hidl_test_client.cpp to exercise InterfaceTypeSafeUnion (included in a separate CL). Change-Id: I04ffeeeabccc1dc2651aac9371569c36d37f4f87
21 lines
767 B
Text
21 lines
767 B
Text
/*
|
|
* Copyright (C) 2018 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.
|
|
*/
|
|
|
|
package android.hardware.tests.safeunion@1.0;
|
|
|
|
interface IOtherInterface {
|
|
concatTwoStrings(string a, string b) generates (string result);
|
|
};
|