OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:LocalBluetoothProfile
(Results
1 - 11
of
11
) sorted by null
/packages/apps/Settings/src/com/android/settings/bluetooth/
CachedBluetoothDevice.java
52
private HashMap<
LocalBluetoothProfile
, Integer> mProfileConnectionState;
54
private final List<
LocalBluetoothProfile
> mProfiles =
55
new ArrayList<
LocalBluetoothProfile
>();
58
private final List<
LocalBluetoothProfile
> mRemovedProfiles =
59
new ArrayList<
LocalBluetoothProfile
>();
106
private String describe(
LocalBluetoothProfile
profile) {
116
void onProfileStateChanged(
LocalBluetoothProfile
profile, int newProfileState) {
151
mProfileConnectionState = new HashMap<
LocalBluetoothProfile
, Integer>();
156
for (
LocalBluetoothProfile
profile : mProfiles) {
161
void disconnect(
LocalBluetoothProfile
profile)
[
all
...]
LocalBluetoothProfileManager.java
37
* LocalBluetoothProfileManager provides access to the
LocalBluetoothProfile
84
private final Map<String,
LocalBluetoothProfile
>
85
mProfileNameMap = new HashMap<String,
LocalBluetoothProfile
>();
172
private void addProfile(
LocalBluetoothProfile
profile,
178
private void addPanProfile(
LocalBluetoothProfile
profile,
185
LocalBluetoothProfile
getProfileByName(String name) {
202
final
LocalBluetoothProfile
mProfile;
204
StateChangedHandler(
LocalBluetoothProfile
profile) {
230
PanStateChangedHandler(
LocalBluetoothProfile
profile) {
271
LocalBluetoothProfile
profile = mHeadsetProfile
[
all
...]
DeviceProfilesSettings.java
66
private final HashMap<
LocalBluetoothProfile
, CheckBoxPreference> mAutoConnectPrefs
67
= new HashMap<
LocalBluetoothProfile
, CheckBoxPreference>();
178
for (
LocalBluetoothProfile
profile : mCachedDevice.getConnectableProfiles()) {
204
private CheckBoxPreference createProfilePreference(
LocalBluetoothProfile
profile) {
243
LocalBluetoothProfile
prof = getProfileOf(preference);
253
private void onProfileClicked(
LocalBluetoothProfile
profile) {
269
final
LocalBluetoothProfile
profile) {
308
for (
LocalBluetoothProfile
profile : mCachedDevice.getConnectableProfiles()) {
317
for (
LocalBluetoothProfile
profile : mCachedDevice.getRemovedProfiles()) {
328
LocalBluetoothProfile
profile)
[
all
...]
LocalBluetoothProfile.java
23
*
LocalBluetoothProfile
is an interface defining the basic
26
interface
LocalBluetoothProfile
{
OppProfile.java
28
final class OppProfile implements
LocalBluetoothProfile
{
BluetoothDevicePreference.java
219
for (
LocalBluetoothProfile
profile : cachedDevice.getProfiles()) {
289
List<
LocalBluetoothProfile
> profiles = mCachedDevice.getProfiles();
290
for (
LocalBluetoothProfile
profile : profiles) {
A2dpProfile.java
36
final class A2dpProfile implements
LocalBluetoothProfile
{
HidProfile.java
32
final class HidProfile implements
LocalBluetoothProfile
{
PanProfile.java
34
final class PanProfile implements
LocalBluetoothProfile
{
HeadsetProfile.java
35
final class HeadsetProfile implements
LocalBluetoothProfile
{
DockService.java
112
private
LocalBluetoothProfile
[] mProfiles;
590
mProfiles = new
LocalBluetoothProfile
[numOfProfiles];
709
LocalBluetoothProfile
profile, int startId) {
739
List<
LocalBluetoothProfile
> profiles = cachedDevice.getConnectableProfiles();
740
for (
LocalBluetoothProfile
profile : profiles) {
788
LocalBluetoothProfile
profile = mProfiles[i];
[
all
...]
Completed in 2310 milliseconds