/frameworks/base/tests/net/java/android/net/ |
D | IpMemoryStoreTest.java | 115 final String l2Key = "fakeKey"; in testNetworkAttributes() local 117 mStore.storeNetworkAttributes(l2Key, TEST_NETWORK_ATTRIBUTES, in testNetworkAttributes() 120 verify(mMockService, times(1)).storeNetworkAttributes(eq(l2Key), in testNetworkAttributes() 124 mStore.retrieveNetworkAttributes(l2Key, in testNetworkAttributes() 128 assertEquals(l2Key, key); in testNetworkAttributes() 132 verify(mMockService, times(1)).retrieveNetworkAttributes(eq(l2Key), any()); in testNetworkAttributes() 140 final String l2Key = "fakeKey"; in testPrivateData() local 142 mStore.storeBlob(l2Key, TEST_CLIENT_ID, TEST_DATA_NAME, b, in testPrivateData() 146 verify(mMockService, times(1)).storeBlob(eq(l2Key), eq(TEST_CLIENT_ID), eq(TEST_DATA_NAME), in testPrivateData() 149 mStore.retrieveBlob(l2Key, TEST_CLIENT_ID, TEST_OTHER_DATA_NAME, in testPrivateData() [all …]
|
/frameworks/base/services/net/java/android/net/ |
D | IpMemoryStoreClient.java | 86 public void storeNetworkAttributes(@NonNull final String l2Key, in storeNetworkAttributes() argument 91 () -> service.storeNetworkAttributes(l2Key, attributes.toParcelable(), in storeNetworkAttributes() 110 public void storeBlob(@NonNull final String l2Key, @NonNull final String clientId, in storeBlob() argument 115 () -> service.storeBlob(l2Key, clientId, name, data, in storeBlob() 179 public void retrieveNetworkAttributes(@NonNull final String l2Key, in retrieveNetworkAttributes() argument 183 () -> service.retrieveNetworkAttributes(l2Key, in retrieveNetworkAttributes() 203 public void retrieveBlob(@NonNull final String l2Key, @NonNull final String clientId, in retrieveBlob() argument 207 () -> service.retrieveBlob(l2Key, clientId, name, in retrieveBlob()
|
D | IIpMemoryStore.aidl | 45 void storeNetworkAttributes(String l2Key, in NetworkAttributesParcelable attributes, in storeNetworkAttributes() argument 59 void storeBlob(String l2Key, String clientId, String name, in Blob data, in storeBlob() argument 98 void retrieveNetworkAttributes(String l2Key, IOnNetworkAttributesRetrievedListener listener); in retrieveNetworkAttributes() argument 111 void retrieveBlob(String l2Key, String clientId, String name, in retrieveBlob() argument
|
/frameworks/base/services/net/aidl/ipmemorystore/2/android/net/ |
D | IIpMemoryStore.aidl | 3 …oneway void storeNetworkAttributes(String l2Key, in android.net.ipmemorystore.NetworkAttributesPar… in storeNetworkAttributes() argument 4 …oneway void storeBlob(String l2Key, String clientId, String name, in android.net.ipmemorystore.Blo… in storeBlob() argument 7 …oneway void retrieveNetworkAttributes(String l2Key, android.net.ipmemorystore.IOnNetworkAttributes… in retrieveNetworkAttributes() argument 8 …oneway void retrieveBlob(String l2Key, String clientId, String name, android.net.ipmemorystore.IOn… in retrieveBlob() argument
|
/frameworks/base/services/net/aidl/ipmemorystore/1/android/net/ |
D | IIpMemoryStore.aidl | 3 …oneway void storeNetworkAttributes(String l2Key, in android.net.ipmemorystore.NetworkAttributesPar… in storeNetworkAttributes() argument 4 …oneway void storeBlob(String l2Key, String clientId, String name, in android.net.ipmemorystore.Blo… in storeBlob() argument 7 …oneway void retrieveNetworkAttributes(String l2Key, android.net.ipmemorystore.IOnNetworkAttributes… in retrieveNetworkAttributes() argument 8 …oneway void retrieveBlob(String l2Key, String clientId, String name, android.net.ipmemorystore.IOn… in retrieveBlob() argument
|
/frameworks/base/services/net/aidl/ipmemorystore/3/android/net/ |
D | IIpMemoryStore.aidl | 20 …oneway void storeNetworkAttributes(String l2Key, in android.net.ipmemorystore.NetworkAttributesPar… in storeNetworkAttributes() argument 21 …oneway void storeBlob(String l2Key, String clientId, String name, in android.net.ipmemorystore.Blo… in storeBlob() argument 24 …oneway void retrieveNetworkAttributes(String l2Key, android.net.ipmemorystore.IOnNetworkAttributes… in retrieveNetworkAttributes() argument 25 …oneway void retrieveBlob(String l2Key, String clientId, String name, android.net.ipmemorystore.IOn… in retrieveBlob() argument
|
/frameworks/base/services/net/java/android/net/ipmemorystore/ |
D | OnL2KeyResponseListener.java | 29 void onL2KeyResponse(Status status, String l2Key); in onL2KeyResponse() argument 37 final String l2Key) { in toAIDL() 40 listener.onL2KeyResponse(new Status(statusParcelable), l2Key); in toAIDL()
|
D | OnNetworkAttributesRetrievedListener.java | 29 void onNetworkAttributesRetrieved(Status status, String l2Key, NetworkAttributes attributes); in onNetworkAttributesRetrieved() argument 38 final String l2Key, in toAIDL() 43 new Status(statusParcelable), l2Key, null == networkAttributesParcelable in toAIDL()
|
D | OnBlobRetrievedListener.java | 29 void onBlobRetrieved(Status status, String l2Key, String name, Blob blob); in onBlobRetrieved() argument 36 public void onBlobRetrieved(final StatusParcelable statusParcelable, final String l2Key, in toAIDL() 40 listener.onBlobRetrieved(new Status(statusParcelable), l2Key, name, blob); in toAIDL()
|
D | IOnL2KeyResponseListener.aidl | 26 void onL2KeyResponse(in StatusParcelable status, in String l2Key); in onL2KeyResponse() argument
|
D | IOnNetworkAttributesRetrievedListener.aidl | 28 void onNetworkAttributesRetrieved(in StatusParcelable status, in String l2Key, in onNetworkAttributesRetrieved() argument
|
D | IOnBlobRetrievedListener.aidl | 28 void onBlobRetrieved(in StatusParcelable status, in String l2Key, in String name, in onBlobRetrieved() argument
|
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/ |
D | MemoryStoreImpl.java | 90 CatchAFallingBlob(String l2Key, WifiScoreCard.BlobListener blobListener) { in CatchAFallingBlob() argument 91 mL2Key = l2Key; in CatchAFallingBlob() 96 public void onBlobRetrieved(Status status, String l2Key, String name, Blob data) { in onBlobRetrieved() argument 97 if (!Objects.equals(mL2Key, l2Key)) { in onBlobRetrieved()
|
/frameworks/base/services/net/aidl/ipmemorystore/1/android/net/ipmemorystore/ |
D | IOnL2KeyResponseListener.aidl | 3 …oneway void onL2KeyResponse(in android.net.ipmemorystore.StatusParcelable status, in String l2Key); in onL2KeyResponse() argument
|
D | IOnNetworkAttributesRetrievedListener.aidl | 3 …Retrieved(in android.net.ipmemorystore.StatusParcelable status, in String l2Key, in android.net.ip… in onNetworkAttributesRetrieved() argument
|
D | IOnBlobRetrievedListener.aidl | 3 …oneway void onBlobRetrieved(in android.net.ipmemorystore.StatusParcelable status, in String l2Key,… in onBlobRetrieved() argument
|
/frameworks/base/services/net/aidl/ipmemorystore/2/android/net/ipmemorystore/ |
D | IOnL2KeyResponseListener.aidl | 3 …oneway void onL2KeyResponse(in android.net.ipmemorystore.StatusParcelable status, in String l2Key); in onL2KeyResponse() argument
|
D | IOnNetworkAttributesRetrievedListener.aidl | 3 …Retrieved(in android.net.ipmemorystore.StatusParcelable status, in String l2Key, in android.net.ip… in onNetworkAttributesRetrieved() argument
|
D | IOnBlobRetrievedListener.aidl | 3 …oneway void onBlobRetrieved(in android.net.ipmemorystore.StatusParcelable status, in String l2Key,… in onBlobRetrieved() argument
|
/frameworks/base/services/net/aidl/ipmemorystore/3/android/net/ipmemorystore/ |
D | IOnL2KeyResponseListener.aidl | 20 …oneway void onL2KeyResponse(in android.net.ipmemorystore.StatusParcelable status, in String l2Key); in onL2KeyResponse() argument
|
D | IOnNetworkAttributesRetrievedListener.aidl | 20 …Retrieved(in android.net.ipmemorystore.StatusParcelable status, in String l2Key, in android.net.ip… in onNetworkAttributesRetrieved() argument
|
D | IOnBlobRetrievedListener.aidl | 20 …oneway void onBlobRetrieved(in android.net.ipmemorystore.StatusParcelable status, in String l2Key,… in onBlobRetrieved() argument
|
/frameworks/base/services/net/java/android/net/ip/ |
D | IpClientManager.java | 263 public boolean setL2KeyAndGroupHint(String l2Key, String groupHint) { in setL2KeyAndGroupHint() argument 266 mIpClient.setL2KeyAndGroupHint(l2Key, groupHint); in setL2KeyAndGroupHint()
|
D | IIpClient.aidl | 36 void setL2KeyAndGroupHint(in String l2Key, in String groupHint); in setL2KeyAndGroupHint() argument
|
/frameworks/base/services/net/aidl/networkstack/2/android/net/ip/ |
D | IIpClient.aidl | 14 oneway void setL2KeyAndGroupHint(in String l2Key, in String groupHint); in setL2KeyAndGroupHint() argument
|