45 lines
1.5 KiB
C++
45 lines
1.5 KiB
C++
/*
|
|
* Copyright (C) 2016 Simon Fels <morphis@gravedo.de>
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify it
|
|
* under the terms of the GNU General Public License version 3, as published
|
|
* by the Free Software Foundation.
|
|
*
|
|
* This program is distributed in the hope that it will be useful, but
|
|
* WITHOUT ANY WARRANTY; without even the implied warranties of
|
|
* MERCHANTABILITY, SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR
|
|
* PURPOSE. See the GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License along
|
|
* with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*
|
|
*/
|
|
|
|
#include "android/service/platform_service_interface.h"
|
|
|
|
namespace android {
|
|
BpPlatformService::BpPlatformService(const sp<IBinder> &binder) :
|
|
BpInterface<IPlatformService>(binder) {
|
|
}
|
|
|
|
status_t BpPlatformService::boot_finished() {
|
|
Parcel data, reply;
|
|
data.writeInterfaceToken(IPlatformService::getInterfaceDescriptor());
|
|
return remote()->transact(IPlatformService::BOOT_FINISHED, data, &reply);
|
|
}
|
|
|
|
IMPLEMENT_META_INTERFACE(PlatformService, "anbox.IPlatformService");
|
|
|
|
status_t BnPlatformService::onTransact(uint32_t code, const Parcel &data,
|
|
Parcel *reply, uint32_t flags) {
|
|
switch (code) {
|
|
case BOOT_FINISHED:
|
|
CHECK_INTERFACE(IPlatformService, data, reply);
|
|
return boot_finished();
|
|
default:
|
|
break;
|
|
}
|
|
|
|
return BBinder::onTransact(code, data, reply, flags);
|
|
}
|
|
} // namespace android
|