Merge "Add comments to frozen AIDL API files"
am: 714b313903
Change-Id: Ic7ef8bc0b2f22508e06ca56c4b030b2f12cde7ea
This commit is contained in:
@@ -1,3 +1,20 @@
|
|||||||
|
///////////////////////////////////////////////////////////////////////////////
|
||||||
|
// THIS FILE IS IMMUTABLE. DO NOT EDIT IN ANY CASE. //
|
||||||
|
///////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
|
// This file is a frozen snapshot of an AIDL interface (or parcelable). Do not
|
||||||
|
// try to edit this file. It looks like you are doing that because you have
|
||||||
|
// modified an AIDL interface in a backward-incompatible way, e.g., deleting a
|
||||||
|
// function from an interface or a field from a parcelable and it broke the
|
||||||
|
// build. That breakage is intended.
|
||||||
|
//
|
||||||
|
// You must not make a backward incompatible changes to the AIDL files built
|
||||||
|
// with the aidl_interface module type with versions property set. The module
|
||||||
|
// type is used to build AIDL files in a way that they can be used across
|
||||||
|
// independently updatable components of the system. If a device is shipped
|
||||||
|
// with such a backward incompatible change, it has a high risk of breaking
|
||||||
|
// later when a module using the interface is updated, e.g., Mainline modules.
|
||||||
|
|
||||||
package android.net;
|
package android.net;
|
||||||
interface IIpMemoryStore {
|
interface IIpMemoryStore {
|
||||||
oneway void storeNetworkAttributes(String l2Key, in android.net.ipmemorystore.NetworkAttributesParcelable attributes, android.net.ipmemorystore.IOnStatusListener listener);
|
oneway void storeNetworkAttributes(String l2Key, in android.net.ipmemorystore.NetworkAttributesParcelable attributes, android.net.ipmemorystore.IOnStatusListener listener);
|
||||||
|
|||||||
@@ -1,3 +1,20 @@
|
|||||||
|
///////////////////////////////////////////////////////////////////////////////
|
||||||
|
// THIS FILE IS IMMUTABLE. DO NOT EDIT IN ANY CASE. //
|
||||||
|
///////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
|
// This file is a frozen snapshot of an AIDL interface (or parcelable). Do not
|
||||||
|
// try to edit this file. It looks like you are doing that because you have
|
||||||
|
// modified an AIDL interface in a backward-incompatible way, e.g., deleting a
|
||||||
|
// function from an interface or a field from a parcelable and it broke the
|
||||||
|
// build. That breakage is intended.
|
||||||
|
//
|
||||||
|
// You must not make a backward incompatible changes to the AIDL files built
|
||||||
|
// with the aidl_interface module type with versions property set. The module
|
||||||
|
// type is used to build AIDL files in a way that they can be used across
|
||||||
|
// independently updatable components of the system. If a device is shipped
|
||||||
|
// with such a backward incompatible change, it has a high risk of breaking
|
||||||
|
// later when a module using the interface is updated, e.g., Mainline modules.
|
||||||
|
|
||||||
package android.net;
|
package android.net;
|
||||||
interface IIpMemoryStoreCallbacks {
|
interface IIpMemoryStoreCallbacks {
|
||||||
oneway void onIpMemoryStoreFetched(in android.net.IIpMemoryStore ipMemoryStore);
|
oneway void onIpMemoryStoreFetched(in android.net.IIpMemoryStore ipMemoryStore);
|
||||||
|
|||||||
@@ -1,3 +1,20 @@
|
|||||||
|
///////////////////////////////////////////////////////////////////////////////
|
||||||
|
// THIS FILE IS IMMUTABLE. DO NOT EDIT IN ANY CASE. //
|
||||||
|
///////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
|
// This file is a frozen snapshot of an AIDL interface (or parcelable). Do not
|
||||||
|
// try to edit this file. It looks like you are doing that because you have
|
||||||
|
// modified an AIDL interface in a backward-incompatible way, e.g., deleting a
|
||||||
|
// function from an interface or a field from a parcelable and it broke the
|
||||||
|
// build. That breakage is intended.
|
||||||
|
//
|
||||||
|
// You must not make a backward incompatible changes to the AIDL files built
|
||||||
|
// with the aidl_interface module type with versions property set. The module
|
||||||
|
// type is used to build AIDL files in a way that they can be used across
|
||||||
|
// independently updatable components of the system. If a device is shipped
|
||||||
|
// with such a backward incompatible change, it has a high risk of breaking
|
||||||
|
// later when a module using the interface is updated, e.g., Mainline modules.
|
||||||
|
|
||||||
package android.net.ipmemorystore;
|
package android.net.ipmemorystore;
|
||||||
parcelable Blob {
|
parcelable Blob {
|
||||||
byte[] data;
|
byte[] data;
|
||||||
|
|||||||
@@ -1,3 +1,20 @@
|
|||||||
|
///////////////////////////////////////////////////////////////////////////////
|
||||||
|
// THIS FILE IS IMMUTABLE. DO NOT EDIT IN ANY CASE. //
|
||||||
|
///////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
|
// This file is a frozen snapshot of an AIDL interface (or parcelable). Do not
|
||||||
|
// try to edit this file. It looks like you are doing that because you have
|
||||||
|
// modified an AIDL interface in a backward-incompatible way, e.g., deleting a
|
||||||
|
// function from an interface or a field from a parcelable and it broke the
|
||||||
|
// build. That breakage is intended.
|
||||||
|
//
|
||||||
|
// You must not make a backward incompatible changes to the AIDL files built
|
||||||
|
// with the aidl_interface module type with versions property set. The module
|
||||||
|
// type is used to build AIDL files in a way that they can be used across
|
||||||
|
// independently updatable components of the system. If a device is shipped
|
||||||
|
// with such a backward incompatible change, it has a high risk of breaking
|
||||||
|
// later when a module using the interface is updated, e.g., Mainline modules.
|
||||||
|
|
||||||
package android.net.ipmemorystore;
|
package android.net.ipmemorystore;
|
||||||
interface IOnBlobRetrievedListener {
|
interface IOnBlobRetrievedListener {
|
||||||
oneway void onBlobRetrieved(in android.net.ipmemorystore.StatusParcelable status, in String l2Key, in String name, in android.net.ipmemorystore.Blob data);
|
oneway void onBlobRetrieved(in android.net.ipmemorystore.StatusParcelable status, in String l2Key, in String name, in android.net.ipmemorystore.Blob data);
|
||||||
|
|||||||
@@ -1,3 +1,20 @@
|
|||||||
|
///////////////////////////////////////////////////////////////////////////////
|
||||||
|
// THIS FILE IS IMMUTABLE. DO NOT EDIT IN ANY CASE. //
|
||||||
|
///////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
|
// This file is a frozen snapshot of an AIDL interface (or parcelable). Do not
|
||||||
|
// try to edit this file. It looks like you are doing that because you have
|
||||||
|
// modified an AIDL interface in a backward-incompatible way, e.g., deleting a
|
||||||
|
// function from an interface or a field from a parcelable and it broke the
|
||||||
|
// build. That breakage is intended.
|
||||||
|
//
|
||||||
|
// You must not make a backward incompatible changes to the AIDL files built
|
||||||
|
// with the aidl_interface module type with versions property set. The module
|
||||||
|
// type is used to build AIDL files in a way that they can be used across
|
||||||
|
// independently updatable components of the system. If a device is shipped
|
||||||
|
// with such a backward incompatible change, it has a high risk of breaking
|
||||||
|
// later when a module using the interface is updated, e.g., Mainline modules.
|
||||||
|
|
||||||
package android.net.ipmemorystore;
|
package android.net.ipmemorystore;
|
||||||
interface IOnL2KeyResponseListener {
|
interface IOnL2KeyResponseListener {
|
||||||
oneway void onL2KeyResponse(in android.net.ipmemorystore.StatusParcelable status, in String l2Key);
|
oneway void onL2KeyResponse(in android.net.ipmemorystore.StatusParcelable status, in String l2Key);
|
||||||
|
|||||||
@@ -1,3 +1,20 @@
|
|||||||
|
///////////////////////////////////////////////////////////////////////////////
|
||||||
|
// THIS FILE IS IMMUTABLE. DO NOT EDIT IN ANY CASE. //
|
||||||
|
///////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
|
// This file is a frozen snapshot of an AIDL interface (or parcelable). Do not
|
||||||
|
// try to edit this file. It looks like you are doing that because you have
|
||||||
|
// modified an AIDL interface in a backward-incompatible way, e.g., deleting a
|
||||||
|
// function from an interface or a field from a parcelable and it broke the
|
||||||
|
// build. That breakage is intended.
|
||||||
|
//
|
||||||
|
// You must not make a backward incompatible changes to the AIDL files built
|
||||||
|
// with the aidl_interface module type with versions property set. The module
|
||||||
|
// type is used to build AIDL files in a way that they can be used across
|
||||||
|
// independently updatable components of the system. If a device is shipped
|
||||||
|
// with such a backward incompatible change, it has a high risk of breaking
|
||||||
|
// later when a module using the interface is updated, e.g., Mainline modules.
|
||||||
|
|
||||||
package android.net.ipmemorystore;
|
package android.net.ipmemorystore;
|
||||||
interface IOnNetworkAttributesRetrievedListener {
|
interface IOnNetworkAttributesRetrievedListener {
|
||||||
oneway void onNetworkAttributesRetrieved(in android.net.ipmemorystore.StatusParcelable status, in String l2Key, in android.net.ipmemorystore.NetworkAttributesParcelable attributes);
|
oneway void onNetworkAttributesRetrieved(in android.net.ipmemorystore.StatusParcelable status, in String l2Key, in android.net.ipmemorystore.NetworkAttributesParcelable attributes);
|
||||||
|
|||||||
@@ -1,3 +1,20 @@
|
|||||||
|
///////////////////////////////////////////////////////////////////////////////
|
||||||
|
// THIS FILE IS IMMUTABLE. DO NOT EDIT IN ANY CASE. //
|
||||||
|
///////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
|
// This file is a frozen snapshot of an AIDL interface (or parcelable). Do not
|
||||||
|
// try to edit this file. It looks like you are doing that because you have
|
||||||
|
// modified an AIDL interface in a backward-incompatible way, e.g., deleting a
|
||||||
|
// function from an interface or a field from a parcelable and it broke the
|
||||||
|
// build. That breakage is intended.
|
||||||
|
//
|
||||||
|
// You must not make a backward incompatible changes to the AIDL files built
|
||||||
|
// with the aidl_interface module type with versions property set. The module
|
||||||
|
// type is used to build AIDL files in a way that they can be used across
|
||||||
|
// independently updatable components of the system. If a device is shipped
|
||||||
|
// with such a backward incompatible change, it has a high risk of breaking
|
||||||
|
// later when a module using the interface is updated, e.g., Mainline modules.
|
||||||
|
|
||||||
package android.net.ipmemorystore;
|
package android.net.ipmemorystore;
|
||||||
interface IOnSameL3NetworkResponseListener {
|
interface IOnSameL3NetworkResponseListener {
|
||||||
oneway void onSameL3NetworkResponse(in android.net.ipmemorystore.StatusParcelable status, in android.net.ipmemorystore.SameL3NetworkResponseParcelable response);
|
oneway void onSameL3NetworkResponse(in android.net.ipmemorystore.StatusParcelable status, in android.net.ipmemorystore.SameL3NetworkResponseParcelable response);
|
||||||
|
|||||||
@@ -1,3 +1,20 @@
|
|||||||
|
///////////////////////////////////////////////////////////////////////////////
|
||||||
|
// THIS FILE IS IMMUTABLE. DO NOT EDIT IN ANY CASE. //
|
||||||
|
///////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
|
// This file is a frozen snapshot of an AIDL interface (or parcelable). Do not
|
||||||
|
// try to edit this file. It looks like you are doing that because you have
|
||||||
|
// modified an AIDL interface in a backward-incompatible way, e.g., deleting a
|
||||||
|
// function from an interface or a field from a parcelable and it broke the
|
||||||
|
// build. That breakage is intended.
|
||||||
|
//
|
||||||
|
// You must not make a backward incompatible changes to the AIDL files built
|
||||||
|
// with the aidl_interface module type with versions property set. The module
|
||||||
|
// type is used to build AIDL files in a way that they can be used across
|
||||||
|
// independently updatable components of the system. If a device is shipped
|
||||||
|
// with such a backward incompatible change, it has a high risk of breaking
|
||||||
|
// later when a module using the interface is updated, e.g., Mainline modules.
|
||||||
|
|
||||||
package android.net.ipmemorystore;
|
package android.net.ipmemorystore;
|
||||||
interface IOnStatusListener {
|
interface IOnStatusListener {
|
||||||
oneway void onComplete(in android.net.ipmemorystore.StatusParcelable status);
|
oneway void onComplete(in android.net.ipmemorystore.StatusParcelable status);
|
||||||
|
|||||||
@@ -1,3 +1,20 @@
|
|||||||
|
///////////////////////////////////////////////////////////////////////////////
|
||||||
|
// THIS FILE IS IMMUTABLE. DO NOT EDIT IN ANY CASE. //
|
||||||
|
///////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
|
// This file is a frozen snapshot of an AIDL interface (or parcelable). Do not
|
||||||
|
// try to edit this file. It looks like you are doing that because you have
|
||||||
|
// modified an AIDL interface in a backward-incompatible way, e.g., deleting a
|
||||||
|
// function from an interface or a field from a parcelable and it broke the
|
||||||
|
// build. That breakage is intended.
|
||||||
|
//
|
||||||
|
// You must not make a backward incompatible changes to the AIDL files built
|
||||||
|
// with the aidl_interface module type with versions property set. The module
|
||||||
|
// type is used to build AIDL files in a way that they can be used across
|
||||||
|
// independently updatable components of the system. If a device is shipped
|
||||||
|
// with such a backward incompatible change, it has a high risk of breaking
|
||||||
|
// later when a module using the interface is updated, e.g., Mainline modules.
|
||||||
|
|
||||||
package android.net.ipmemorystore;
|
package android.net.ipmemorystore;
|
||||||
parcelable NetworkAttributesParcelable {
|
parcelable NetworkAttributesParcelable {
|
||||||
byte[] assignedV4Address;
|
byte[] assignedV4Address;
|
||||||
|
|||||||
@@ -1,3 +1,20 @@
|
|||||||
|
///////////////////////////////////////////////////////////////////////////////
|
||||||
|
// THIS FILE IS IMMUTABLE. DO NOT EDIT IN ANY CASE. //
|
||||||
|
///////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
|
// This file is a frozen snapshot of an AIDL interface (or parcelable). Do not
|
||||||
|
// try to edit this file. It looks like you are doing that because you have
|
||||||
|
// modified an AIDL interface in a backward-incompatible way, e.g., deleting a
|
||||||
|
// function from an interface or a field from a parcelable and it broke the
|
||||||
|
// build. That breakage is intended.
|
||||||
|
//
|
||||||
|
// You must not make a backward incompatible changes to the AIDL files built
|
||||||
|
// with the aidl_interface module type with versions property set. The module
|
||||||
|
// type is used to build AIDL files in a way that they can be used across
|
||||||
|
// independently updatable components of the system. If a device is shipped
|
||||||
|
// with such a backward incompatible change, it has a high risk of breaking
|
||||||
|
// later when a module using the interface is updated, e.g., Mainline modules.
|
||||||
|
|
||||||
package android.net.ipmemorystore;
|
package android.net.ipmemorystore;
|
||||||
parcelable SameL3NetworkResponseParcelable {
|
parcelable SameL3NetworkResponseParcelable {
|
||||||
String l2Key1;
|
String l2Key1;
|
||||||
|
|||||||
@@ -1,3 +1,20 @@
|
|||||||
|
///////////////////////////////////////////////////////////////////////////////
|
||||||
|
// THIS FILE IS IMMUTABLE. DO NOT EDIT IN ANY CASE. //
|
||||||
|
///////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
|
// This file is a frozen snapshot of an AIDL interface (or parcelable). Do not
|
||||||
|
// try to edit this file. It looks like you are doing that because you have
|
||||||
|
// modified an AIDL interface in a backward-incompatible way, e.g., deleting a
|
||||||
|
// function from an interface or a field from a parcelable and it broke the
|
||||||
|
// build. That breakage is intended.
|
||||||
|
//
|
||||||
|
// You must not make a backward incompatible changes to the AIDL files built
|
||||||
|
// with the aidl_interface module type with versions property set. The module
|
||||||
|
// type is used to build AIDL files in a way that they can be used across
|
||||||
|
// independently updatable components of the system. If a device is shipped
|
||||||
|
// with such a backward incompatible change, it has a high risk of breaking
|
||||||
|
// later when a module using the interface is updated, e.g., Mainline modules.
|
||||||
|
|
||||||
package android.net.ipmemorystore;
|
package android.net.ipmemorystore;
|
||||||
parcelable StatusParcelable {
|
parcelable StatusParcelable {
|
||||||
int resultCode;
|
int resultCode;
|
||||||
|
|||||||
@@ -1,3 +1,20 @@
|
|||||||
|
///////////////////////////////////////////////////////////////////////////////
|
||||||
|
// THIS FILE IS IMMUTABLE. DO NOT EDIT IN ANY CASE. //
|
||||||
|
///////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
|
// This file is a frozen snapshot of an AIDL interface (or parcelable). Do not
|
||||||
|
// try to edit this file. It looks like you are doing that because you have
|
||||||
|
// modified an AIDL interface in a backward-incompatible way, e.g., deleting a
|
||||||
|
// function from an interface or a field from a parcelable and it broke the
|
||||||
|
// build. That breakage is intended.
|
||||||
|
//
|
||||||
|
// You must not make a backward incompatible changes to the AIDL files built
|
||||||
|
// with the aidl_interface module type with versions property set. The module
|
||||||
|
// type is used to build AIDL files in a way that they can be used across
|
||||||
|
// independently updatable components of the system. If a device is shipped
|
||||||
|
// with such a backward incompatible change, it has a high risk of breaking
|
||||||
|
// later when a module using the interface is updated, e.g., Mainline modules.
|
||||||
|
|
||||||
package android.net;
|
package android.net;
|
||||||
parcelable DhcpResultsParcelable {
|
parcelable DhcpResultsParcelable {
|
||||||
android.net.StaticIpConfiguration baseConfiguration;
|
android.net.StaticIpConfiguration baseConfiguration;
|
||||||
|
|||||||
@@ -1,3 +1,20 @@
|
|||||||
|
///////////////////////////////////////////////////////////////////////////////
|
||||||
|
// THIS FILE IS IMMUTABLE. DO NOT EDIT IN ANY CASE. //
|
||||||
|
///////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
|
// This file is a frozen snapshot of an AIDL interface (or parcelable). Do not
|
||||||
|
// try to edit this file. It looks like you are doing that because you have
|
||||||
|
// modified an AIDL interface in a backward-incompatible way, e.g., deleting a
|
||||||
|
// function from an interface or a field from a parcelable and it broke the
|
||||||
|
// build. That breakage is intended.
|
||||||
|
//
|
||||||
|
// You must not make a backward incompatible changes to the AIDL files built
|
||||||
|
// with the aidl_interface module type with versions property set. The module
|
||||||
|
// type is used to build AIDL files in a way that they can be used across
|
||||||
|
// independently updatable components of the system. If a device is shipped
|
||||||
|
// with such a backward incompatible change, it has a high risk of breaking
|
||||||
|
// later when a module using the interface is updated, e.g., Mainline modules.
|
||||||
|
|
||||||
package android.net;
|
package android.net;
|
||||||
interface INetworkMonitor {
|
interface INetworkMonitor {
|
||||||
oneway void start();
|
oneway void start();
|
||||||
|
|||||||
@@ -1,3 +1,20 @@
|
|||||||
|
///////////////////////////////////////////////////////////////////////////////
|
||||||
|
// THIS FILE IS IMMUTABLE. DO NOT EDIT IN ANY CASE. //
|
||||||
|
///////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
|
// This file is a frozen snapshot of an AIDL interface (or parcelable). Do not
|
||||||
|
// try to edit this file. It looks like you are doing that because you have
|
||||||
|
// modified an AIDL interface in a backward-incompatible way, e.g., deleting a
|
||||||
|
// function from an interface or a field from a parcelable and it broke the
|
||||||
|
// build. That breakage is intended.
|
||||||
|
//
|
||||||
|
// You must not make a backward incompatible changes to the AIDL files built
|
||||||
|
// with the aidl_interface module type with versions property set. The module
|
||||||
|
// type is used to build AIDL files in a way that they can be used across
|
||||||
|
// independently updatable components of the system. If a device is shipped
|
||||||
|
// with such a backward incompatible change, it has a high risk of breaking
|
||||||
|
// later when a module using the interface is updated, e.g., Mainline modules.
|
||||||
|
|
||||||
package android.net;
|
package android.net;
|
||||||
interface INetworkMonitorCallbacks {
|
interface INetworkMonitorCallbacks {
|
||||||
oneway void onNetworkMonitorCreated(in android.net.INetworkMonitor networkMonitor);
|
oneway void onNetworkMonitorCreated(in android.net.INetworkMonitor networkMonitor);
|
||||||
|
|||||||
@@ -1,3 +1,20 @@
|
|||||||
|
///////////////////////////////////////////////////////////////////////////////
|
||||||
|
// THIS FILE IS IMMUTABLE. DO NOT EDIT IN ANY CASE. //
|
||||||
|
///////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
|
// This file is a frozen snapshot of an AIDL interface (or parcelable). Do not
|
||||||
|
// try to edit this file. It looks like you are doing that because you have
|
||||||
|
// modified an AIDL interface in a backward-incompatible way, e.g., deleting a
|
||||||
|
// function from an interface or a field from a parcelable and it broke the
|
||||||
|
// build. That breakage is intended.
|
||||||
|
//
|
||||||
|
// You must not make a backward incompatible changes to the AIDL files built
|
||||||
|
// with the aidl_interface module type with versions property set. The module
|
||||||
|
// type is used to build AIDL files in a way that they can be used across
|
||||||
|
// independently updatable components of the system. If a device is shipped
|
||||||
|
// with such a backward incompatible change, it has a high risk of breaking
|
||||||
|
// later when a module using the interface is updated, e.g., Mainline modules.
|
||||||
|
|
||||||
package android.net;
|
package android.net;
|
||||||
interface INetworkStackConnector {
|
interface INetworkStackConnector {
|
||||||
oneway void makeDhcpServer(in String ifName, in android.net.dhcp.DhcpServingParamsParcel params, in android.net.dhcp.IDhcpServerCallbacks cb);
|
oneway void makeDhcpServer(in String ifName, in android.net.dhcp.DhcpServingParamsParcel params, in android.net.dhcp.IDhcpServerCallbacks cb);
|
||||||
|
|||||||
@@ -1,3 +1,20 @@
|
|||||||
|
///////////////////////////////////////////////////////////////////////////////
|
||||||
|
// THIS FILE IS IMMUTABLE. DO NOT EDIT IN ANY CASE. //
|
||||||
|
///////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
|
// This file is a frozen snapshot of an AIDL interface (or parcelable). Do not
|
||||||
|
// try to edit this file. It looks like you are doing that because you have
|
||||||
|
// modified an AIDL interface in a backward-incompatible way, e.g., deleting a
|
||||||
|
// function from an interface or a field from a parcelable and it broke the
|
||||||
|
// build. That breakage is intended.
|
||||||
|
//
|
||||||
|
// You must not make a backward incompatible changes to the AIDL files built
|
||||||
|
// with the aidl_interface module type with versions property set. The module
|
||||||
|
// type is used to build AIDL files in a way that they can be used across
|
||||||
|
// independently updatable components of the system. If a device is shipped
|
||||||
|
// with such a backward incompatible change, it has a high risk of breaking
|
||||||
|
// later when a module using the interface is updated, e.g., Mainline modules.
|
||||||
|
|
||||||
package android.net;
|
package android.net;
|
||||||
interface INetworkStackStatusCallback {
|
interface INetworkStackStatusCallback {
|
||||||
oneway void onStatusAvailable(int statusCode);
|
oneway void onStatusAvailable(int statusCode);
|
||||||
|
|||||||
@@ -1,3 +1,20 @@
|
|||||||
|
///////////////////////////////////////////////////////////////////////////////
|
||||||
|
// THIS FILE IS IMMUTABLE. DO NOT EDIT IN ANY CASE. //
|
||||||
|
///////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
|
// This file is a frozen snapshot of an AIDL interface (or parcelable). Do not
|
||||||
|
// try to edit this file. It looks like you are doing that because you have
|
||||||
|
// modified an AIDL interface in a backward-incompatible way, e.g., deleting a
|
||||||
|
// function from an interface or a field from a parcelable and it broke the
|
||||||
|
// build. That breakage is intended.
|
||||||
|
//
|
||||||
|
// You must not make a backward incompatible changes to the AIDL files built
|
||||||
|
// with the aidl_interface module type with versions property set. The module
|
||||||
|
// type is used to build AIDL files in a way that they can be used across
|
||||||
|
// independently updatable components of the system. If a device is shipped
|
||||||
|
// with such a backward incompatible change, it has a high risk of breaking
|
||||||
|
// later when a module using the interface is updated, e.g., Mainline modules.
|
||||||
|
|
||||||
package android.net;
|
package android.net;
|
||||||
parcelable InitialConfigurationParcelable {
|
parcelable InitialConfigurationParcelable {
|
||||||
android.net.LinkAddress[] ipAddresses;
|
android.net.LinkAddress[] ipAddresses;
|
||||||
|
|||||||
@@ -1,3 +1,20 @@
|
|||||||
|
///////////////////////////////////////////////////////////////////////////////
|
||||||
|
// THIS FILE IS IMMUTABLE. DO NOT EDIT IN ANY CASE. //
|
||||||
|
///////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
|
// This file is a frozen snapshot of an AIDL interface (or parcelable). Do not
|
||||||
|
// try to edit this file. It looks like you are doing that because you have
|
||||||
|
// modified an AIDL interface in a backward-incompatible way, e.g., deleting a
|
||||||
|
// function from an interface or a field from a parcelable and it broke the
|
||||||
|
// build. That breakage is intended.
|
||||||
|
//
|
||||||
|
// You must not make a backward incompatible changes to the AIDL files built
|
||||||
|
// with the aidl_interface module type with versions property set. The module
|
||||||
|
// type is used to build AIDL files in a way that they can be used across
|
||||||
|
// independently updatable components of the system. If a device is shipped
|
||||||
|
// with such a backward incompatible change, it has a high risk of breaking
|
||||||
|
// later when a module using the interface is updated, e.g., Mainline modules.
|
||||||
|
|
||||||
package android.net;
|
package android.net;
|
||||||
parcelable NattKeepalivePacketDataParcelable {
|
parcelable NattKeepalivePacketDataParcelable {
|
||||||
byte[] srcAddress;
|
byte[] srcAddress;
|
||||||
|
|||||||
@@ -1,3 +1,20 @@
|
|||||||
|
///////////////////////////////////////////////////////////////////////////////
|
||||||
|
// THIS FILE IS IMMUTABLE. DO NOT EDIT IN ANY CASE. //
|
||||||
|
///////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
|
// This file is a frozen snapshot of an AIDL interface (or parcelable). Do not
|
||||||
|
// try to edit this file. It looks like you are doing that because you have
|
||||||
|
// modified an AIDL interface in a backward-incompatible way, e.g., deleting a
|
||||||
|
// function from an interface or a field from a parcelable and it broke the
|
||||||
|
// build. That breakage is intended.
|
||||||
|
//
|
||||||
|
// You must not make a backward incompatible changes to the AIDL files built
|
||||||
|
// with the aidl_interface module type with versions property set. The module
|
||||||
|
// type is used to build AIDL files in a way that they can be used across
|
||||||
|
// independently updatable components of the system. If a device is shipped
|
||||||
|
// with such a backward incompatible change, it has a high risk of breaking
|
||||||
|
// later when a module using the interface is updated, e.g., Mainline modules.
|
||||||
|
|
||||||
package android.net;
|
package android.net;
|
||||||
parcelable PrivateDnsConfigParcel {
|
parcelable PrivateDnsConfigParcel {
|
||||||
String hostname;
|
String hostname;
|
||||||
|
|||||||
@@ -1,3 +1,20 @@
|
|||||||
|
///////////////////////////////////////////////////////////////////////////////
|
||||||
|
// THIS FILE IS IMMUTABLE. DO NOT EDIT IN ANY CASE. //
|
||||||
|
///////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
|
// This file is a frozen snapshot of an AIDL interface (or parcelable). Do not
|
||||||
|
// try to edit this file. It looks like you are doing that because you have
|
||||||
|
// modified an AIDL interface in a backward-incompatible way, e.g., deleting a
|
||||||
|
// function from an interface or a field from a parcelable and it broke the
|
||||||
|
// build. That breakage is intended.
|
||||||
|
//
|
||||||
|
// You must not make a backward incompatible changes to the AIDL files built
|
||||||
|
// with the aidl_interface module type with versions property set. The module
|
||||||
|
// type is used to build AIDL files in a way that they can be used across
|
||||||
|
// independently updatable components of the system. If a device is shipped
|
||||||
|
// with such a backward incompatible change, it has a high risk of breaking
|
||||||
|
// later when a module using the interface is updated, e.g., Mainline modules.
|
||||||
|
|
||||||
package android.net;
|
package android.net;
|
||||||
parcelable ProvisioningConfigurationParcelable {
|
parcelable ProvisioningConfigurationParcelable {
|
||||||
boolean enableIPv4;
|
boolean enableIPv4;
|
||||||
|
|||||||
@@ -1,3 +1,20 @@
|
|||||||
|
///////////////////////////////////////////////////////////////////////////////
|
||||||
|
// THIS FILE IS IMMUTABLE. DO NOT EDIT IN ANY CASE. //
|
||||||
|
///////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
|
// This file is a frozen snapshot of an AIDL interface (or parcelable). Do not
|
||||||
|
// try to edit this file. It looks like you are doing that because you have
|
||||||
|
// modified an AIDL interface in a backward-incompatible way, e.g., deleting a
|
||||||
|
// function from an interface or a field from a parcelable and it broke the
|
||||||
|
// build. That breakage is intended.
|
||||||
|
//
|
||||||
|
// You must not make a backward incompatible changes to the AIDL files built
|
||||||
|
// with the aidl_interface module type with versions property set. The module
|
||||||
|
// type is used to build AIDL files in a way that they can be used across
|
||||||
|
// independently updatable components of the system. If a device is shipped
|
||||||
|
// with such a backward incompatible change, it has a high risk of breaking
|
||||||
|
// later when a module using the interface is updated, e.g., Mainline modules.
|
||||||
|
|
||||||
package android.net;
|
package android.net;
|
||||||
parcelable TcpKeepalivePacketDataParcelable {
|
parcelable TcpKeepalivePacketDataParcelable {
|
||||||
byte[] srcAddress;
|
byte[] srcAddress;
|
||||||
|
|||||||
@@ -1,3 +1,20 @@
|
|||||||
|
///////////////////////////////////////////////////////////////////////////////
|
||||||
|
// THIS FILE IS IMMUTABLE. DO NOT EDIT IN ANY CASE. //
|
||||||
|
///////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
|
// This file is a frozen snapshot of an AIDL interface (or parcelable). Do not
|
||||||
|
// try to edit this file. It looks like you are doing that because you have
|
||||||
|
// modified an AIDL interface in a backward-incompatible way, e.g., deleting a
|
||||||
|
// function from an interface or a field from a parcelable and it broke the
|
||||||
|
// build. That breakage is intended.
|
||||||
|
//
|
||||||
|
// You must not make a backward incompatible changes to the AIDL files built
|
||||||
|
// with the aidl_interface module type with versions property set. The module
|
||||||
|
// type is used to build AIDL files in a way that they can be used across
|
||||||
|
// independently updatable components of the system. If a device is shipped
|
||||||
|
// with such a backward incompatible change, it has a high risk of breaking
|
||||||
|
// later when a module using the interface is updated, e.g., Mainline modules.
|
||||||
|
|
||||||
package android.net.dhcp;
|
package android.net.dhcp;
|
||||||
parcelable DhcpServingParamsParcel {
|
parcelable DhcpServingParamsParcel {
|
||||||
int serverAddr;
|
int serverAddr;
|
||||||
|
|||||||
@@ -1,3 +1,20 @@
|
|||||||
|
///////////////////////////////////////////////////////////////////////////////
|
||||||
|
// THIS FILE IS IMMUTABLE. DO NOT EDIT IN ANY CASE. //
|
||||||
|
///////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
|
// This file is a frozen snapshot of an AIDL interface (or parcelable). Do not
|
||||||
|
// try to edit this file. It looks like you are doing that because you have
|
||||||
|
// modified an AIDL interface in a backward-incompatible way, e.g., deleting a
|
||||||
|
// function from an interface or a field from a parcelable and it broke the
|
||||||
|
// build. That breakage is intended.
|
||||||
|
//
|
||||||
|
// You must not make a backward incompatible changes to the AIDL files built
|
||||||
|
// with the aidl_interface module type with versions property set. The module
|
||||||
|
// type is used to build AIDL files in a way that they can be used across
|
||||||
|
// independently updatable components of the system. If a device is shipped
|
||||||
|
// with such a backward incompatible change, it has a high risk of breaking
|
||||||
|
// later when a module using the interface is updated, e.g., Mainline modules.
|
||||||
|
|
||||||
package android.net.dhcp;
|
package android.net.dhcp;
|
||||||
interface IDhcpServer {
|
interface IDhcpServer {
|
||||||
oneway void start(in android.net.INetworkStackStatusCallback cb);
|
oneway void start(in android.net.INetworkStackStatusCallback cb);
|
||||||
|
|||||||
@@ -1,3 +1,20 @@
|
|||||||
|
///////////////////////////////////////////////////////////////////////////////
|
||||||
|
// THIS FILE IS IMMUTABLE. DO NOT EDIT IN ANY CASE. //
|
||||||
|
///////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
|
// This file is a frozen snapshot of an AIDL interface (or parcelable). Do not
|
||||||
|
// try to edit this file. It looks like you are doing that because you have
|
||||||
|
// modified an AIDL interface in a backward-incompatible way, e.g., deleting a
|
||||||
|
// function from an interface or a field from a parcelable and it broke the
|
||||||
|
// build. That breakage is intended.
|
||||||
|
//
|
||||||
|
// You must not make a backward incompatible changes to the AIDL files built
|
||||||
|
// with the aidl_interface module type with versions property set. The module
|
||||||
|
// type is used to build AIDL files in a way that they can be used across
|
||||||
|
// independently updatable components of the system. If a device is shipped
|
||||||
|
// with such a backward incompatible change, it has a high risk of breaking
|
||||||
|
// later when a module using the interface is updated, e.g., Mainline modules.
|
||||||
|
|
||||||
package android.net.dhcp;
|
package android.net.dhcp;
|
||||||
interface IDhcpServerCallbacks {
|
interface IDhcpServerCallbacks {
|
||||||
oneway void onDhcpServerCreated(int statusCode, in android.net.dhcp.IDhcpServer server);
|
oneway void onDhcpServerCreated(int statusCode, in android.net.dhcp.IDhcpServer server);
|
||||||
|
|||||||
@@ -1,3 +1,20 @@
|
|||||||
|
///////////////////////////////////////////////////////////////////////////////
|
||||||
|
// THIS FILE IS IMMUTABLE. DO NOT EDIT IN ANY CASE. //
|
||||||
|
///////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
|
// This file is a frozen snapshot of an AIDL interface (or parcelable). Do not
|
||||||
|
// try to edit this file. It looks like you are doing that because you have
|
||||||
|
// modified an AIDL interface in a backward-incompatible way, e.g., deleting a
|
||||||
|
// function from an interface or a field from a parcelable and it broke the
|
||||||
|
// build. That breakage is intended.
|
||||||
|
//
|
||||||
|
// You must not make a backward incompatible changes to the AIDL files built
|
||||||
|
// with the aidl_interface module type with versions property set. The module
|
||||||
|
// type is used to build AIDL files in a way that they can be used across
|
||||||
|
// independently updatable components of the system. If a device is shipped
|
||||||
|
// with such a backward incompatible change, it has a high risk of breaking
|
||||||
|
// later when a module using the interface is updated, e.g., Mainline modules.
|
||||||
|
|
||||||
package android.net.ip;
|
package android.net.ip;
|
||||||
interface IIpClient {
|
interface IIpClient {
|
||||||
oneway void completedPreDhcpAction();
|
oneway void completedPreDhcpAction();
|
||||||
|
|||||||
@@ -1,3 +1,20 @@
|
|||||||
|
///////////////////////////////////////////////////////////////////////////////
|
||||||
|
// THIS FILE IS IMMUTABLE. DO NOT EDIT IN ANY CASE. //
|
||||||
|
///////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
|
// This file is a frozen snapshot of an AIDL interface (or parcelable). Do not
|
||||||
|
// try to edit this file. It looks like you are doing that because you have
|
||||||
|
// modified an AIDL interface in a backward-incompatible way, e.g., deleting a
|
||||||
|
// function from an interface or a field from a parcelable and it broke the
|
||||||
|
// build. That breakage is intended.
|
||||||
|
//
|
||||||
|
// You must not make a backward incompatible changes to the AIDL files built
|
||||||
|
// with the aidl_interface module type with versions property set. The module
|
||||||
|
// type is used to build AIDL files in a way that they can be used across
|
||||||
|
// independently updatable components of the system. If a device is shipped
|
||||||
|
// with such a backward incompatible change, it has a high risk of breaking
|
||||||
|
// later when a module using the interface is updated, e.g., Mainline modules.
|
||||||
|
|
||||||
package android.net.ip;
|
package android.net.ip;
|
||||||
interface IIpClientCallbacks {
|
interface IIpClientCallbacks {
|
||||||
oneway void onIpClientCreated(in android.net.ip.IIpClient ipClient);
|
oneway void onIpClientCreated(in android.net.ip.IIpClient ipClient);
|
||||||
|
|||||||
Reference in New Issue
Block a user