Yu-Han Yang | 73f16ad | 2018-02-24 10:05:32 -0800 | [diff] [blame] | 1 | #include "GnssConfiguration.h" |
| 2 | |
| 3 | namespace android { |
| 4 | namespace hardware { |
| 5 | namespace gnss { |
| 6 | namespace V1_1 { |
| 7 | namespace implementation { |
| 8 | |
| 9 | // Methods from ::android::hardware::gnss::V1_0::IGnssConfiguration follow. |
| 10 | Return<bool> GnssConfiguration::setSuplEs(bool) { |
| 11 | // TODO implement |
| 12 | return bool{}; |
| 13 | } |
| 14 | |
| 15 | Return<bool> GnssConfiguration::setSuplVersion(uint32_t) { |
| 16 | // TODO implement |
| 17 | return bool{}; |
| 18 | } |
| 19 | |
| 20 | Return<bool> GnssConfiguration::setSuplMode(hidl_bitfield<SuplMode>) { |
| 21 | // TODO implement |
| 22 | return bool{}; |
| 23 | } |
| 24 | |
| 25 | Return<bool> GnssConfiguration::setGpsLock(hidl_bitfield<GpsLock>) { |
| 26 | // TODO implement |
| 27 | return bool{}; |
| 28 | } |
| 29 | |
| 30 | Return<bool> GnssConfiguration::setLppProfile(hidl_bitfield<LppProfile>) { |
| 31 | // TODO implement |
| 32 | return bool{}; |
| 33 | } |
| 34 | |
| 35 | Return<bool> GnssConfiguration::setGlonassPositioningProtocol(hidl_bitfield<GlonassPosProtocol>) { |
| 36 | // TODO implement |
| 37 | return bool{}; |
| 38 | } |
| 39 | |
| 40 | Return<bool> GnssConfiguration::setEmergencySuplPdn(bool) { |
| 41 | // TODO implement |
| 42 | return bool{}; |
| 43 | } |
| 44 | |
| 45 | // Methods from ::android::hardware::gnss::V1_1::IGnssConfiguration follow. |
| 46 | Return<bool> GnssConfiguration::setBlacklist( |
| 47 | const hidl_vec<::android::hardware::gnss::V1_1::IGnssConfiguration::BlacklistedSource>&) { |
| 48 | // TODO implement |
| 49 | return bool{}; |
| 50 | } |
| 51 | |
| 52 | // Methods from ::android::hidl::base::V1_0::IBase follow. |
| 53 | |
| 54 | } // namespace implementation |
| 55 | } // namespace V1_1 |
| 56 | } // namespace gnss |
| 57 | } // namespace hardware |
| 58 | } // namespace android |