1 /* 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 #include "BroadcastRadioFactory.h" 17 #include "BroadcastRadio.h" 18 19 namespace android { 20 namespace hardware { 21 namespace broadcastradio { 22 namespace V1_0 { 23 namespace implementation { 24 25 // Methods from ::android::hardware::broadcastradio::V1_0::IBroadcastRadioFactory follow. connectModule(Class classId,connectModule_cb _hidl_cb)26Return<void> BroadcastRadioFactory::connectModule(Class classId, connectModule_cb _hidl_cb) { 27 sp<BroadcastRadio> impl = new BroadcastRadio(classId); 28 Result retval = Result::NOT_INITIALIZED; 29 if (impl != 0) { 30 retval = impl->initCheck(); 31 } 32 _hidl_cb(retval, impl); 33 return Void(); 34 } 35 36 HIDL_FETCH_IBroadcastRadioFactory(const char *)37IBroadcastRadioFactory* HIDL_FETCH_IBroadcastRadioFactory(const char* /* name */) { 38 return new BroadcastRadioFactory(); 39 } 40 41 } // namespace implementation 42 } // namespace V1_0 43 } // namespace broadcastradio 44 } // namespace hardware 45 } // namespace android 46