Home
last modified time | relevance | path

Searched refs:TEST_L2KEY (Results 1 – 3 of 3) sorted by relevance

/packages/modules/NetworkStack/tests/integration/src/android/net/ip/
DIpClientIntegrationTestCommon.java223 protected static final String TEST_L2KEY = "some l2key"; field in IpClientIntegrationTestCommon
790 ? new Layer2Information(TEST_L2KEY, TEST_CLUSTER,
819 final NetworkAttributes na = getStoredNetworkAttributes(TEST_L2KEY, TEST_TIMEOUT_MS);
837 assertIpMemoryNeverStoreNetworkAttributes(TEST_L2KEY, TEST_TIMEOUT_MS);
951 .onNetworkAttributesRetrieved(new Status(SUCCESS), TEST_L2KEY, na);
953 }).when(mIpMemoryStore).retrieveNetworkAttributes(eq(TEST_L2KEY), any());
2289 final Layer2Information layer2Info = new Layer2Information(TEST_L2KEY, TEST_CLUSTER, bssid);
2298 }).when(mIpMemoryStore).retrieveNetworkAttributes(eq(TEST_L2KEY), any());
2614 .onNetworkAttributesRetrieved(new Status(SUCCESS), TEST_L2KEY,
2623 }).when(mIpMemoryStore).retrieveNetworkAttributes(eq(TEST_L2KEY), any());
[all …]
DIpClientRootTest.kt177 mStore.delete(TEST_L2KEY, true) { _, _ -> latch.countDown() } in <lambda>()
238 if (key != TEST_L2KEY || status.resultCode != Status.SUCCESS) { in <lambda>()
/packages/modules/NetworkStack/tests/unit/src/android/net/ip/
DIpClientTest.java108 private static final String TEST_L2KEY = "some l2key"; field in IpClientTest
372 final String l2Key = TEST_L2KEY; in testProvisioningWithInitialConfiguration()