Loading framework/java/android/bluetooth/BluetoothAdapter.java +2 −2 Original line number Diff line number Diff line Loading @@ -1447,9 +1447,9 @@ public final class BluetoothAdapter { } /** * Return true if LE Periodic Advertising feature is supported. * Return true if LE Extended Advertising feature is supported. * * @return true if chipset supports LE Periodic Advertising feature * @return true if chipset supports LE Extended Advertising feature */ public boolean isLeExtendedAdvertisingSupported() { if (!getLeAccess()) return false; Loading framework/java/android/bluetooth/le/AdvertisingSetParameters.java +1 −1 Original line number Diff line number Diff line Loading @@ -284,7 +284,7 @@ public final class AdvertisingSetParameters implements Parcelable { * * @param isAnonymous wether anonymous advertising should be used. */ public Builder setAnonymouus(boolean isAnonymous) { public Builder setAnonymous(boolean isAnonymous) { this.isAnonymous = isAnonymous; return this; } Loading framework/java/android/bluetooth/le/ScanResult.java +2 −2 Original line number Diff line number Diff line Loading @@ -67,12 +67,12 @@ public final class ScanResult implements Parcelable { public static final int SID_NOT_PRESENT = 0xFF; /** * Mask for checking wether event type represents legacy advertisement. * Mask for checking whether event type represents legacy advertisement. */ private static final int ET_LEGACY_MASK = 0x10; /** * Mask for checking wether event type represents connectable advertisement. * Mask for checking whether event type represents connectable advertisement. */ private static final int ET_CONNECTABLE_MASK = 0x01; Loading Loading
framework/java/android/bluetooth/BluetoothAdapter.java +2 −2 Original line number Diff line number Diff line Loading @@ -1447,9 +1447,9 @@ public final class BluetoothAdapter { } /** * Return true if LE Periodic Advertising feature is supported. * Return true if LE Extended Advertising feature is supported. * * @return true if chipset supports LE Periodic Advertising feature * @return true if chipset supports LE Extended Advertising feature */ public boolean isLeExtendedAdvertisingSupported() { if (!getLeAccess()) return false; Loading
framework/java/android/bluetooth/le/AdvertisingSetParameters.java +1 −1 Original line number Diff line number Diff line Loading @@ -284,7 +284,7 @@ public final class AdvertisingSetParameters implements Parcelable { * * @param isAnonymous wether anonymous advertising should be used. */ public Builder setAnonymouus(boolean isAnonymous) { public Builder setAnonymous(boolean isAnonymous) { this.isAnonymous = isAnonymous; return this; } Loading
framework/java/android/bluetooth/le/ScanResult.java +2 −2 Original line number Diff line number Diff line Loading @@ -67,12 +67,12 @@ public final class ScanResult implements Parcelable { public static final int SID_NOT_PRESENT = 0xFF; /** * Mask for checking wether event type represents legacy advertisement. * Mask for checking whether event type represents legacy advertisement. */ private static final int ET_LEGACY_MASK = 0x10; /** * Mask for checking wether event type represents connectable advertisement. * Mask for checking whether event type represents connectable advertisement. */ private static final int ET_CONNECTABLE_MASK = 0x01; Loading