/docs/source.android.com/src/tech/bluetooth/ |
sidebar2.md | 0 # Bluetooth Topics #
|
/development/pdk/docs/porting/bluetooth/ |
bluetooth_process.jd | 1 page.title=Bluetooth Process Diagram 6 <p>The diagram below offers a process-oriented architectural overview of Android's Bluetooth stack. Click <a href="../bluetooth.html">Bluetooth</a> to return to the Bluetooth overview page.</p>
|
/development/apps/BluetoothDebug/ |
AndroidManifest.xml | 3 <uses-permission android:name="android.permission.BLUETOOTH" /> 6 <application android:label="Bluetooth Debug" > 9 <action android:name="android.bluetooth.adapter.action.STATE_CHANGED" /> 10 <action android:name="android.bluetooth.adapter.action.SCAN_MODE_CHANGED" /> 11 <action android:name="android.bluetooth.adapter.action.DISCOVERY_STARTED" /> 12 <action android:name="android.bluetooth.adapter.action.DISCOVERY_FINISHED" /> 13 <action android:name="android.bluetooth.adapter.action.LOCAL_NAME_CHANGED" /> 15 <action android:name="android.bluetooth.device.action.FOUND" /> 16 <action android:name="android.bluetooth.device.action.DISAPPEARED" /> 17 <action android:name="android.bluetooth.device.action.CLASS_CHANGED" / [all...] |
/development/samples/BluetoothChat/ |
_index.html | 2 two-way text chat over Bluetooth. It demonstrates all the fundamental Bluetooth 5 <li>Scanning for other Bluetooth devices</li> 6 <li>Querying the local Bluetooth adapter for paired Bluetooth devices</li> 9 <li>Transfering data over Bluetooth</li>
|
/external/bluetooth/bluez/audio/ |
bluetooth.conf | 9 # "/etc/alsa/bluetooth.conf" 20 type bluetooth 24 pcm.bluetooth { 32 type bluetooth
|
/external/bluetooth/bluez/scripts/ |
bluetooth.rules.in | 1 # Run helper every time a Bluetooth device appears 3 ACTION=="add", SUBSYSTEM=="bluetooth", RUN+="@prefix@/sbin/bluetoothd --udev" 4 ACTION=="change", SUBSYSTEM=="bluetooth", RUN+="@prefix@/sbin/bluetoothd --udev"
|
bluetooth-serial.rules | 1 # Brain Boxes BL-620 Bluetooth Adapter 2 SUBSYSTEM=="tty", SUBSYSTEMS=="pcmcia", ATTRS{prod_id1}=="Brain Boxes", ATTRS{prod_id2}=="Bluetooth PC Card", ENV{HCIOPTS}="bboxes", RUN+="bluetooth_serial" 4 # Xircom CreditCard Bluetooth Adapter 7 # Xircom RealPort2 Bluetooth Adapter 10 # IBM Bluetooth PC Card II 11 SUBSYSTEM=="tty", SUBSYSTEMS=="pcmcia", ATTRS{prod_id1}=="IBM", ATTRS{prod_id2}=="Bluetooth PC Card II", ENV{HCIOPTS}="tdk", RUN+="bluetooth_serial" 13 # TDK Bluetooth PC Card 14 SUBSYSTEM=="tty", SUBSYSTEMS=="pcmcia", ATTRS{prod_id1}=="TDK", ATTRS{prod_id2}=="Bluetooth PC Card II", ENV{HCIOPTS}="tdk", RUN+="bluetooth_serial" 16 # AmbiCom BT2000C Bluetooth PC/CF Card 17 SUBSYSTEM=="tty", SUBSYSTEMS=="pcmcia", ATTRS{prod_id1}=="AmbiCom BT2000C", ATTRS{prod_id2}=="Bluetooth PC/CF Card", ENV{HCIOPTS}="bt2000c", RUN+="bluetooth_serial [all...] |
/frameworks/base/core/java/android/bluetooth/ |
package.html | 3 <p>Provides classes that manage Bluetooth functionality, such as scanning for 7 <a href="{@docRoot}guide/topics/wireless/bluetooth.html">Bluetooth</a> developer guide.</p> 10 <p>The Bluetooth APIs let applications:</p> 12 <li>Scan for other Bluetooth devices</li> 13 <li>Query the local Bluetooth adapter for paired Bluetooth devices</li> 20 To perform Bluetooth communication using these APIs, an application must 21 declare the {@link android.Manifest.permission#BLUETOOTH} permission. Some 28 Not all Android-powered devices provide Bluetooth functionality.</p [all...] |
BluetoothAdapter.java | 17 package android.bluetooth; 43 * Represents the local device Bluetooth adapter. The {@link BluetoothAdapter} 44 * lets you perform fundamental Bluetooth tasks, such as initiate 50 * <p>To get a {@link BluetoothAdapter} representing the local Bluetooth 53 * Bluetooth actions. Once you have the local adapter, you can get a set of 61 * Most methods require the {@link android.Manifest.permission#BLUETOOTH} 67 * <p>For more information about using Bluetooth, read the 68 * <a href="{@docRoot}guide/topics/wireless/bluetooth.html">Bluetooth</a> developer guide.</p> 88 * Broadcast Action: The state of the local Bluetooth adapter has bee [all...] |
BluetoothDevice.java | 17 package android.bluetooth; 34 * Represents a remote Bluetooth device. A {@link BluetoothDevice} lets you 38 * <p>This class is really just a thin wrapper for a Bluetooth hardware 40 * are performed on the remote Bluetooth hardware address, using the 55 * Requires the {@link android.Manifest.permission#BLUETOOTH} permission. 59 * <p>For more information about using Bluetooth, read the 60 * <a href="{@docRoot}guide/topics/wireless/bluetooth.html">Bluetooth</a> developer guide.</p> 84 * <p>Requires {@link android.Manifest.permission#BLUETOOTH} to receive. 89 "android.bluetooth.device.action.FOUND" [all...] |
/packages/apps/Settings/assets/html/en_us/ |
tethering_bluetooth_help.html | 20 <p><b>Bluetooth tethering</b></p> 21 <span class="style1">You can tether your Android device to your computer via a Bluetooth connection, to share your device's Internet connection with your computer</span> 23 <li>Bluetooth tethering works with any computer or other device that can obtain an Internet connection via Bluetooth</li><br> 24 <li>For more information, see <a href="http://www.android.com/tether#bluetooth">http://www.android.com/tether#bluetooth</a></li><br>
|
/development/samples/BluetoothHDP/ |
_index.html | 1 <p>A sample application that demonstrates how to communicate with a Bluetooth Health Device Profile (HDP) device. This feature is available on Android 4.0 (API level 14) or above platforms. The Android Bluetooth Health API lets you create 2 applications that use Bluetooth to communicate with health devices that support 3 Bluetooth, such as heart-rate monitors, blood meters, thermometers, scales, and 5 specialization codes, refer to <strong>Bluetooth Assigned Numbers</strong> at <a 6 href="http://www.bluetooth.org">www.bluetooth.org</a>. Note that these values 10 <p>The application manages connection with Bluetooth HDP-enabled devices. Possible device type include blood pressure monitor, glucose meter, thermometer, etc. Upon connection, the application retrieves raw data sent from the device. Note that in order to interpret the data, a parser that conforms to the IEEE 11073-xxxxx specifications would be required.</p>
|
/external/bluetooth/bluez/lib/ |
Android.mk | 5 bluetooth.c \ 11 $(LOCAL_PATH)/bluetooth \
|
/external/bluetooth/bluez/tools/ |
rfcomm.conf | 9 # # Bluetooth address of the device 16 # comment "Example Bluetooth device";
|
hcitool.1 | 3 hcitool \- configure Bluetooth connections 13 is used to configure Bluetooth connections and send some special command to 14 Bluetooth devices. If no 33 , which must be the name of an installed Bluetooth device. If not specified, 34 the command will be sent to the first available Bluetooth device. 41 Inquire remote devices. For each discovered device, Bluetooth device address, 48 Print device name of remote device with Bluetooth address 53 Bluetooth address 74 Create baseband connection to remote device with Bluetooth address 105 Delete baseband connection from remote device with Bluetooth addres [all...] |
/system/bluetooth/bluedroid/ |
Android.mk | 10 bluetooth.c 14 system/bluetooth/bluez-clean-headers
|
/device/samsung/crespo/ |
init.herring.rc | 9 setprop ro.bt.bdaddr_path "/efs/bluetooth/bt_addr" 38 chmod 770 /efs/bluetooth 47 # permissions for bluetooth. 48 chown bluetooth bluetooth /efs/bluetooth 49 chown bluetooth bluetooth ro.bt.bdaddr_path 50 chown bluetooth bluetooth /dev/s3c2410_serial [all...] |
/build/target/product/ |
generic_no_telephony.mk | 25 Bluetooth \ 46 bluetooth-health \ 64 system/bluetooth/data/audio.conf:system/etc/bluetooth/audio.conf \ 65 system/bluetooth/data/auto_pairing.conf:system/etc/bluetooth/auto_pairing.conf \ 66 system/bluetooth/data/blacklist.conf:system/etc/bluetooth/blacklist.conf \ 67 system/bluetooth/data/input.conf:system/etc/bluetooth/input.conf [all...] |
/frameworks/base/docs/html/guide/topics/wireless/ |
bluetooth.jd | 1 page.title=Bluetooth 9 <li>Android's bluetooth APIs allow your application to perform wireless data transactions with 16 <li><a href="#Permissions">Bluetooth Permissions</a></li> 17 <li><a href="#SettingUp">Setting Up Bluetooth</a></li> 38 <li>{@link android.bluetooth.BluetoothAdapter}</li> 39 <li>{@link android.bluetooth.BluetoothDevice}</li> 40 <li>{@link android.bluetooth.BluetoothSocket}</li> 41 <li>{@link android.bluetooth.BluetoothServerSocket}</li> 46 <li><a href="{@docRoot}resources/samples/BluetoothChat/index.html">Bluetooth Chat</a></li> 47 <li><a href="{@docRoot}resources/samples/BluetoothHDP/index.html">Bluetooth HDP (Health Device Profile)</a></li [all...] |
index.jd | 15 <h2>Bluetooth</h2> 16 <p>The Android platform includes support for the Bluetooth network stack, which allows a device to 17 wirelessly exchange data with other Bluetooth devices. The application framework provides access to 18 the Bluetooth functionality through the Android Bluetooth APIs. These APIs let applications 19 wirelessly connect to other Bluetooth devices, enabling point-to-point and multipoint wireless
|
/frameworks/base/core/tests/bluetoothtests/src/android/bluetooth/ |
BluetoothRebootStressTest.java | 17 package android.bluetooth; 25 * This test case tests that bluetooth is enabled after a device reboot. Because 51 * Test method used to start the test by turning bluetooth on. 60 * bluetooth is on. Does not toggle bluetooth after the check. Assumes that 61 * bluetooth has been turned on by {@code #testStart()} 71 * bluetooth is on. Toggles bluetooth after the check. Assumes that 72 * bluetooth has been turned on by {@code #testStart()} 84 * Test method used in the stop the test by turning bluetooth off. Assume [all...] |
/development/apps/BluetoothDebug/src/com/android/bluetoothdebug/ |
DebugReceiver.java | 19 import android.bluetooth.BluetoothA2dp; 20 import android.bluetooth.BluetoothAdapter; 21 import android.bluetooth.BluetoothClass; 22 import android.bluetooth.BluetoothDevice; 23 import android.bluetooth.BluetoothDevicePicker; 24 import android.bluetooth.BluetoothHeadset; 32 * Prints Bluetooth intents to logcat. For example: 57 // android.bluetooth.device.extra.DEVICE -> a.b.device.e.DEVICE 60 .replace("bluetooth", "b")
|
/external/bluetooth/hcidump/ |
README | 1 BlueZ - Bluetooth protocol stack for Linux 7 Bluetooth packet analyzer 13 In order to compile Bluetooth analyzer you need following software packages: 14 - Linux Bluetooth protocol stack (BlueZ) 30 linux-bluetooth@vger.kernel.org
|
/system/bluetooth/bluedroid/include/bluedroid/ |
bluetooth.h | 22 #include <bluetooth/bluetooth.h> 24 /* Enable the bluetooth interface. 27 * Will block until the HCI interface and bluetooth daemons are ready to 33 /* Disable the bluetooth interface.
|
/development/pdk/docs/porting/ |
bluetooth.jd | 1 page.title=Bluetooth 20 <p>Android's Bluetooth stack uses BlueZ as the host stack.</p> 24 <p>The qualification notes mentioned below are example qualifications of the particular device in question. Each company has to re-qualify their product with Bluetooth SIG even if no changes are made to the Bluetooth stack.</p> 28 <p> Profiles like A2DP, AVRCP, HID, PAN and other bluetooth functionality like pairing and scanning use the Bluez userspace stack.</p> 30 <p>The diagram below offers a library-oriented view of the Bluetooth stack. Click <a href="bluetooth/bluetooth_process.html">Bluetooth Process Diagram</a> for a process-oriented view.</p> 40 <p>BlueZ is Bluetooth 2.1 compatible and should work with any 2.1 chipset and is backward compatibile with older Bluetooth versions. There are two integration points:</p [all...] |