1 /*
2  * Copyright (C) 2020 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 
17 #define LOG_TAG "CoolingDevice"
18 
19 #include <android/CoolingDevice.h>
20 #include <binder/Parcel.h>
21 #include <utils/Log.h>
22 
23 namespace android {
24 namespace os {
25 
readFromParcel(const android::Parcel * parcel)26 status_t CoolingDevice::readFromParcel(const android::Parcel *parcel) {
27     if (parcel == nullptr) {
28         ALOGE("%s: Null parcel", __FUNCTION__);
29         return BAD_VALUE;
30     }
31 
32     parcel->readFloat(&mValue);
33     parcel->readUint32(&mType);
34     parcel->readString16(&mName);
35 
36     return OK;
37 }
38 
writeToParcel(android::Parcel * parcel) const39 status_t CoolingDevice::writeToParcel(android::Parcel *parcel) const {
40     if (parcel == nullptr) {
41         ALOGE("%s: Null parcel", __FUNCTION__);
42         return BAD_VALUE;
43     }
44 
45     parcel->writeFloat(mValue);
46     parcel->writeUint32(mType);
47     parcel->writeString16(mName);
48 
49     return OK;
50 }
51 
52 } // namespace os
53 } // namespace android