Home
last modified time | relevance | path

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

/packages/apps/Settings/tests/unit/src/com/android/settings/wifi/dpp/
DAdbQrCodeTest.java29 WifiNetworkConfig config = new AdbQrCode( in testZxParsing_validCode()
35 config = new AdbQrCode("WIFI:S:anotherone;T:ADB;P:3#=3j9asicla").getWifiNetworkConfig(); in testZxParsing_validCode()
40 config = new AdbQrCode("WIFI:S:xx;T:ADB;P:a").getWifiNetworkConfig(); in testZxParsing_validCode()
48 WifiNetworkConfig config = new AdbQrCode( in testZxParsing_invalidCodeButShouldWork()
54 config = new AdbQrCode("WIFI: S:anotherone;T:ADB;P:abcdefghihklmn").getWifiNetworkConfig(); in testZxParsing_invalidCodeButShouldWork()
59 config = new AdbQrCode("WIFI: S:xx; T:ADB; P:a").getWifiNetworkConfig(); in testZxParsing_invalidCodeButShouldWork()
/packages/apps/Settings/src/com/android/settings/development/
DAdbQrcodeScannerFragment.java48 import com.android.settings.wifi.dpp.AdbQrCode;
83 private AdbQrCode mAdbQrCode;
270 mAdbQrCode = new AdbQrCode(qrCode); in isValid()
287 AdbQrCode.triggerVibrationForQrCodeRecognition(getContext()); in handleSuccessfulResult()
/packages/apps/Settings/src/com/android/settings/wifi/dpp/
DAdbQrCode.java34 public class AdbQrCode { class
66 public AdbQrCode(String qrCode) throws IllegalArgumentException { in AdbQrCode() method in AdbQrCode