1/* 2 * Copyright (C) 2023 Huawei Device Co., Ltd. 3 * Licensed under the Apache License, Version 2.0 (the "License"); 4 * you may not use this file except in compliance with the License. 5 * You may obtain a copy of the License at 6 * 7 * http://www.apache.org/licenses/LICENSE-2.0 8 * 9 * Unless required by applicable law or agreed to in writing, software 10 * distributed under the License is distributed on an "AS IS" BASIS, 11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 * See the License for the specific language governing permissions and 13 * limitations under the License. 14 */ 15 16interface IIdlTestService { 17 void idl_ipc_test_basic_001(); 18 [oneway] void idl_ipc_test_basic_002(); 19 20 boolean idl_ipc_test_basic_101([in] boolean iBool); 21 byte idl_ipc_test_basic_102([in] byte iByte); 22 short idl_ipc_test_basic_103([in] short iShort); 23 int idl_ipc_test_basic_104([in] int iInt); 24 long idl_ipc_test_basic_105([in] long iLong); 25 float idl_ipc_test_basic_106([in] float iFloat); 26 double idl_ipc_test_basic_107([in] double iDouble); 27 String idl_ipc_test_basic_108([in] String iString); 28 boolean idl_ipc_test_basic_199([in] boolean iBool, [in] long iLong, [in] float iFloat, 29 [in] double iDouble, [in] String iString); 30}