Home
last modified time | relevance | path

Searched refs:meshcopTxts (Results 1 – 2 of 2) sorted by relevance

/packages/modules/Connectivity/thread/tests/unit/src/com/android/server/thread/
DThreadNetworkControllerServiceTest.java253 MeshcopTxtAttributes meshcopTxts = mFakeOtDaemon.getOverriddenMeshcopTxtAttributes(); in initialize_resourceOverlayValuesAreSetToOtDaemon() local
254 assertThat(meshcopTxts.vendorName).isEqualTo(TEST_VENDOR_NAME); in initialize_resourceOverlayValuesAreSetToOtDaemon()
255 assertThat(meshcopTxts.vendorOui).isEqualTo(TEST_VENDOR_OUI_BYTES); in initialize_resourceOverlayValuesAreSetToOtDaemon()
256 assertThat(meshcopTxts.modelName).isEqualTo(TEST_MODEL_NAME); in initialize_resourceOverlayValuesAreSetToOtDaemon()
257 assertThat(meshcopTxts.nonStandardTxtEntries) in initialize_resourceOverlayValuesAreSetToOtDaemon()
266 MeshcopTxtAttributes meshcopTxts = in getMeshcopTxtAttributes_managedByGoogleIsFalse_vghIsZero() local
269 assertThat(meshcopTxts.nonStandardTxtEntries) in getMeshcopTxtAttributes_managedByGoogleIsFalse_vghIsZero()
277 MeshcopTxtAttributes meshcopTxts = in getMeshcopTxtAttributes_emptyVendorName_accepted() local
280 assertThat(meshcopTxts.vendorName).isEqualTo(""); in getMeshcopTxtAttributes_emptyVendorName_accepted()
307 var meshcopTxts = ThreadNetworkControllerService.getMeshcopTxtAttributes(mResources); in getMeshcopTxtAttributes_emptyModelName_accepted() local
[all …]
/packages/modules/Connectivity/thread/service/java/com/android/server/thread/
DThreadNetworkControllerService.java370 MeshcopTxtAttributes meshcopTxts = new MeshcopTxtAttributes(); in getMeshcopTxtAttributes() local
371 meshcopTxts.modelName = modelName; in getMeshcopTxtAttributes()
372 meshcopTxts.vendorName = vendorName; in getMeshcopTxtAttributes()
373 meshcopTxts.vendorOui = HexEncoding.decode(vendorOui.replace("-", "").replace(":", "")); in getMeshcopTxtAttributes()
374 meshcopTxts.nonStandardTxtEntries = List.of(makeManagedByGoogleTxtAttr(managedByGoogle)); in getMeshcopTxtAttributes()
376 return meshcopTxts; in getMeshcopTxtAttributes()