Home | History | Annotate | Download | only in bluetooth

Lines Matching defs:Major

29  * exactly one device class. The device class is further broken down into major
136 * major and minor components.
138 * BluetoothClass.Device} represent a combination of major and minor
140 * BluetoothClass.Device.Major} represent only major device classes.
147 * Defines all major device class constants.
150 public static class Major {
166 // Devices in the COMPUTER major class
175 // Devices in the PHONE major class
183 // Minor classes for the AUDIO_VIDEO major class
204 // Devices in the WEARABLE major class
212 // Devices in the TOY major class
220 // Devices in the HEALTH major class
230 // Devices in PERIPHERAL major class
250 * Return the major device class component of this {@link BluetoothClass}.
252 * public constants in {@link BluetoothClass.Device.Major} to determine
253 * which major class is encoded in this Bluetooth class.
255 * @return major device class component
258 return (mClass & Device.Major.BITMASK);
262 * Return the (major and minor) device class component of this
352 return (getDeviceClass() & Device.Major.PERIPHERAL) == Device.Major.PERIPHERAL;
358 return (getDeviceClass() & Device.Major.NETWORKING) == Device.Major.NETWORKING;