Files
device_google_wahoo/wifi_offload/offload_status_util.cpp
Sohani Rao cb1e31a067 Offload HAL Service: Implement returning values in APIs
Implementation of HIDL APIs for Offload HAL returning status information.

Bug: 32842314
Test: VTS
Change-Id: Idb11e5188dc53511ce0ca252cc711c5aefd2b714
2017-06-08 13:45:58 -07:00

40 lines
1.1 KiB
C++

/*
* Copyright (C) 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 "offload_status_util.h"
namespace android {
namespace hardware {
namespace wifi {
namespace offload {
namespace V1_0 {
namespace implementation {
OffloadStatus createOffloadStatus(OffloadStatusCode code, const std::string &description) {
return {code, description};
}
OffloadStatus createOffloadStatus(OffloadStatusCode code) {
return createOffloadStatus(code, "");
}
} // namespace implementation
} // namespace V1_0
} // namespace offload
} // namespace wifi
} // namespace hardware
} // namespace android