diff options
| author | 2017-12-28 02:16:20 +0000 | |
|---|---|---|
| committer | 2017-12-28 02:16:20 +0000 | |
| commit | 43fce46bcd2f77cbcf53fcb8d64d16b3eb92da2a (patch) | |
| tree | ac371594ea0789120d09f9f8b448769b72356c14 | |
| parent | bdfdf53d08618ed34358b6ba66e1893bd35a4623 (diff) | |
| parent | 31db18a4c078b77f011170a27eb95c94398efde6 (diff) | |
Merge "Added AIDL for cell identity"
| -rw-r--r-- | Android.mk | 4 | ||||
| -rw-r--r-- | telephony/java/android/telephony/CellIdentityCdma.aidl | 20 | ||||
| -rw-r--r-- | telephony/java/android/telephony/CellIdentityGsm.aidl | 20 | ||||
| -rw-r--r-- | telephony/java/android/telephony/CellIdentityLte.aidl | 20 | ||||
| -rw-r--r-- | telephony/java/android/telephony/CellIdentityWcdma.aidl | 20 |
5 files changed, 84 insertions, 0 deletions
diff --git a/Android.mk b/Android.mk index 1f373264b0db..a19f2d90d9bb 100644 --- a/Android.mk +++ b/Android.mk @@ -40,6 +40,10 @@ aidl_files := \ frameworks/base/telephony/java/android/telephony/mbms/StreamingServiceInfo.aidl \ frameworks/base/telephony/java/android/telephony/ServiceState.aidl \ frameworks/base/telephony/java/android/telephony/SubscriptionInfo.aidl \ + frameworks/base/telephony/java/android/telephony/CellIdentityCdma.aidl \ + frameworks/base/telephony/java/android/telephony/CellIdentityGsm.aidl \ + frameworks/base/telephony/java/android/telephony/CellIdentityLte.aidl \ + frameworks/base/telephony/java/android/telephony/CellIdentityWcdma.aidl \ frameworks/base/telephony/java/android/telephony/CellInfo.aidl \ frameworks/base/telephony/java/android/telephony/SignalStrength.aidl \ frameworks/base/telephony/java/android/telephony/IccOpenLogicalChannelResponse.aidl \ diff --git a/telephony/java/android/telephony/CellIdentityCdma.aidl b/telephony/java/android/telephony/CellIdentityCdma.aidl new file mode 100644 index 000000000000..b31ad0bded0c --- /dev/null +++ b/telephony/java/android/telephony/CellIdentityCdma.aidl @@ -0,0 +1,20 @@ +/* + * 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. + */ + +/** @hide */ +package android.telephony; + +parcelable CellIdentityCdma; diff --git a/telephony/java/android/telephony/CellIdentityGsm.aidl b/telephony/java/android/telephony/CellIdentityGsm.aidl new file mode 100644 index 000000000000..bcc07510277d --- /dev/null +++ b/telephony/java/android/telephony/CellIdentityGsm.aidl @@ -0,0 +1,20 @@ +/* + * 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. + */ + +/** @hide */ +package android.telephony; + +parcelable CellIdentityGsm; diff --git a/telephony/java/android/telephony/CellIdentityLte.aidl b/telephony/java/android/telephony/CellIdentityLte.aidl new file mode 100644 index 000000000000..940d170b6114 --- /dev/null +++ b/telephony/java/android/telephony/CellIdentityLte.aidl @@ -0,0 +1,20 @@ +/* + * 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. + */ + +/** @hide */ +package android.telephony; + +parcelable CellIdentityLte; diff --git a/telephony/java/android/telephony/CellIdentityWcdma.aidl b/telephony/java/android/telephony/CellIdentityWcdma.aidl new file mode 100644 index 000000000000..462ce2cccf45 --- /dev/null +++ b/telephony/java/android/telephony/CellIdentityWcdma.aidl @@ -0,0 +1,20 @@ +/* + * 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. + */ + +/** @hide */ +package android.telephony; + +parcelable CellIdentityWcdma; |