blob: 37bef6d478f815af58cd0f98951c94de0042f015 [file] [log] [blame]
//
// Copyright 2017, 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.
//
#include "android/os/parcel_file_descriptor.h"
#include <base/logging.h>
using android::OK;
using android::Parcel;
using android::status_t;
namespace android {
namespace os {
status_t ParcelFileDescriptor::writeToParcel(Parcel* parcel) const {
CHECK(fd_ >= 0);
return parcel->writeParcelFileDescriptor(fd_, takeOwnership_);
}
status_t ParcelFileDescriptor::readFromParcel(const Parcel* parcel) {
LOG(FATAL) << "Don't know how to read ParcelFileDescriptor";
return OK;
}
void ParcelFileDescriptor::setFileDescriptor(int fd, bool takeOwnership) {
fd_ = fd;
takeOwnership_ = takeOwnership;
}
} // namespace os
} // namespace android