/packages/modules/NetworkStack/common/networkstackclient/src/android/net/ipmemorystore/ |
D | SameL3NetworkResponse.java | 67 public final String l2Key2; field in SameL3NetworkResponse 95 public SameL3NetworkResponse(@NonNull final String l2Key1, @NonNull final String l2Key2, in SameL3NetworkResponse() argument 98 this.l2Key2 = l2Key2; in SameL3NetworkResponse() 105 this(parceled.l2Key1, parceled.l2Key2, parceled.confidence); in SameL3NetworkResponse() 113 parcelable.l2Key2 = l2Key2; in toParcelable() 124 return l2Key1.equals(other.l2Key1) && l2Key2.equals(other.l2Key2) in equals() 130 return Objects.hash(l2Key1, l2Key2, confidence); in hashCode() 138 return "\"" + l2Key1 + "\" same L3 network as \"" + l2Key2 + "\""; in toString() 140 return "\"" + l2Key1 + "\" different L3 network from \"" + l2Key2 + "\""; in toString() 142 return "\"" + l2Key1 + "\" can't be tested against \"" + l2Key2 + "\""; in toString() [all …]
|
D | SameL3NetworkResponseParcelable.aidl | 23 String l2Key2;
|
/packages/modules/Connectivity/tests/unit/java/android/net/ipmemorystore/ |
D | ParcelableTests.java | 96 parcelable.l2Key2 = "key 2"; in testSameL3NetworkResponseParceling() 101 assertEquals("key 2", in.l2Key2); in testSameL3NetworkResponseParceling() 109 assertEquals(in.l2Key2, out.l2Key2); in testSameL3NetworkResponseParceling()
|
/packages/modules/NetworkStack/src/com/android/networkstack/ipmemorystore/ |
D | IpMemoryStoreService.java | 298 public void isSameNetwork(@Nullable final String l2Key1, @Nullable final String l2Key2, in isSameNetwork() argument 303 if (null == l2Key1 || null == l2Key2) { in isSameNetwork() 315 IpMemoryStoreDatabase.retrieveNetworkAttributes(mDb, l2Key2); in isSameNetwork() 318 new SameL3NetworkResponse(l2Key1, l2Key2, in isSameNetwork() 324 new SameL3NetworkResponse(l2Key1, l2Key2, confidence).toParcelable()); in isSameNetwork()
|
/packages/modules/NetworkStack/common/networkstackclient/aidl_api/ipmemorystore-aidl-interfaces/7/android/net/ipmemorystore/ |
D | SameL3NetworkResponseParcelable.aidl | 22 String l2Key2;
|
/packages/modules/NetworkStack/common/networkstackclient/aidl_api/ipmemorystore-aidl-interfaces/2/android/net/ipmemorystore/ |
D | SameL3NetworkResponseParcelable.aidl | 4 String l2Key2;
|
/packages/modules/NetworkStack/common/networkstackclient/aidl_api/ipmemorystore-aidl-interfaces/9/android/net/ipmemorystore/ |
D | SameL3NetworkResponseParcelable.aidl | 22 String l2Key2;
|
/packages/modules/NetworkStack/common/networkstackclient/aidl_api/ipmemorystore-aidl-interfaces/1/android/net/ipmemorystore/ |
D | SameL3NetworkResponseParcelable.aidl | 4 String l2Key2;
|
/packages/modules/NetworkStack/common/networkstackclient/aidl_api/ipmemorystore-aidl-interfaces/8/android/net/ipmemorystore/ |
D | SameL3NetworkResponseParcelable.aidl | 22 String l2Key2;
|
/packages/modules/NetworkStack/common/networkstackclient/aidl_api/ipmemorystore-aidl-interfaces/6/android/net/ipmemorystore/ |
D | SameL3NetworkResponseParcelable.aidl | 22 String l2Key2;
|
/packages/modules/NetworkStack/common/networkstackclient/aidl_api/ipmemorystore-aidl-interfaces/4/android/net/ipmemorystore/ |
D | SameL3NetworkResponseParcelable.aidl | 4 String l2Key2;
|
/packages/modules/NetworkStack/common/networkstackclient/aidl_api/ipmemorystore-aidl-interfaces/3/android/net/ipmemorystore/ |
D | SameL3NetworkResponseParcelable.aidl | 21 String l2Key2;
|
/packages/modules/NetworkStack/common/networkstackclient/aidl_api/ipmemorystore-aidl-interfaces/5/android/net/ipmemorystore/ |
D | SameL3NetworkResponseParcelable.aidl | 22 String l2Key2;
|
/packages/modules/NetworkStack/common/networkstackclient/aidl_api/ipmemorystore-aidl-interfaces/current/android/net/ipmemorystore/ |
D | SameL3NetworkResponseParcelable.aidl | 39 String l2Key2;
|
/packages/modules/NetworkStack/common/networkstackclient/aidl_api/ipmemorystore-aidl-interfaces/10/android/net/ipmemorystore/ |
D | SameL3NetworkResponseParcelable.aidl | 23 String l2Key2;
|
/packages/modules/NetworkStack/common/networkstackclient/src/android/net/ |
D | IpMemoryStoreClient.java | 162 public void isSameNetwork(@NonNull final String l2Key1, @NonNull final String l2Key2, in isSameNetwork() argument 166 () -> service.isSameNetwork(l2Key1, l2Key2, in isSameNetwork()
|
D | IIpMemoryStore.aidl | 87 void isSameNetwork(String l2Key1, String l2Key2, IOnSameL3NetworkResponseListener listener); in isSameNetwork() argument
|
/packages/modules/Connectivity/tests/unit/java/android/net/ |
D | IpMemoryStoreTest.java | 186 final String l2Key2 = "fakeKey2"; in testIsSameNetwork() local 188 mStore.isSameNetwork(l2Key1, l2Key2, in testIsSameNetwork() 195 verify(mMockService, times(1)).isSameNetwork(eq(l2Key1), eq(l2Key2), any()); in testIsSameNetwork()
|
/packages/modules/NetworkStack/common/networkstackclient/aidl_api/ipmemorystore-aidl-interfaces/1/android/net/ |
D | IIpMemoryStore.aidl | 6 …oneway void isSameNetwork(String l2Key1, String l2Key2, android.net.ipmemorystore.IOnSameL3Network… in isSameNetwork() argument
|
/packages/modules/NetworkStack/common/networkstackclient/aidl_api/ipmemorystore-aidl-interfaces/2/android/net/ |
D | IIpMemoryStore.aidl | 6 …oneway void isSameNetwork(String l2Key1, String l2Key2, android.net.ipmemorystore.IOnSameL3Network… in isSameNetwork() argument
|
/packages/modules/NetworkStack/common/networkstackclient/aidl_api/ipmemorystore-aidl-interfaces/4/android/net/ |
D | IIpMemoryStore.aidl | 6 …oneway void isSameNetwork(String l2Key1, String l2Key2, android.net.ipmemorystore.IOnSameL3Network… in isSameNetwork() argument
|
/packages/modules/NetworkStack/common/networkstackclient/aidl_api/ipmemorystore-aidl-interfaces/5/android/net/ |
D | IIpMemoryStore.aidl | 24 …oneway void isSameNetwork(String l2Key1, String l2Key2, android.net.ipmemorystore.IOnSameL3Network… in isSameNetwork() argument
|
/packages/modules/NetworkStack/common/networkstackclient/aidl_api/ipmemorystore-aidl-interfaces/3/android/net/ |
D | IIpMemoryStore.aidl | 23 …oneway void isSameNetwork(String l2Key1, String l2Key2, android.net.ipmemorystore.IOnSameL3Network… in isSameNetwork() argument
|
/packages/modules/NetworkStack/common/networkstackclient/aidl_api/ipmemorystore-aidl-interfaces/6/android/net/ |
D | IIpMemoryStore.aidl | 24 …oneway void isSameNetwork(String l2Key1, String l2Key2, android.net.ipmemorystore.IOnSameL3Network… in isSameNetwork() argument
|
/packages/modules/NetworkStack/common/networkstackclient/aidl_api/ipmemorystore-aidl-interfaces/7/android/net/ |
D | IIpMemoryStore.aidl | 24 …oneway void isSameNetwork(String l2Key1, String l2Key2, android.net.ipmemorystore.IOnSameL3Network… in isSameNetwork() argument
|