Searched refs:vendorOui (Results 1 – 2 of 2) sorted by relevance
255 assertThat(meshcopTxts.vendorOui).isEqualTo(TEST_VENDOR_OUI_BYTES); in initialize_resourceOverlayValuesAreSetToOtDaemon()337 private byte[] getMeshcopTxtAttributesWithVendorOui(String vendorOui) { in getMeshcopTxtAttributesWithVendorOui() argument338 when(mResources.getString(eq(R.string.config_thread_vendor_oui))).thenReturn(vendorOui); in getMeshcopTxtAttributesWithVendorOui()339 return ThreadNetworkControllerService.getMeshcopTxtAttributes(mResources).vendorOui; in getMeshcopTxtAttributesWithVendorOui()
342 final String vendorOui = resources.getString(R.string.config_thread_vendor_oui); in getMeshcopTxtAttributes() local366 if (!vendorOui.isEmpty() && !Pattern.compile(OUI_REGEX).matcher(vendorOui).matches()) { in getMeshcopTxtAttributes()367 throw new IllegalStateException("Vendor OUI is invalid: " + vendorOui); in getMeshcopTxtAttributes()373 meshcopTxts.vendorOui = HexEncoding.decode(vendorOui.replace("-", "").replace(":", "")); in getMeshcopTxtAttributes()