Symbol: GetFriendlyName
headers/os/bluetooth/BluetoothDevice.h
30
virtual BString GetFriendlyName()=0;
headers/os/bluetooth/LocalDevice.h
35
BString GetFriendlyName();
headers/os/bluetooth/RemoteDevice.h
43
BString GetFriendlyName(bool alwaysAsk); /* Throwing */
headers/os/bluetooth/RemoteDevice.h
44
BString GetFriendlyName(void); /* Throwing */
src/add-ons/media/media-add-ons/esound_sink/ESDEndpoint.h
67
void GetFriendlyName(BString &name);
src/add-ons/media/media-add-ons/esound_sink/ESDSinkAddOn.cpp
142
device->GetFriendlyName(name);
src/bin/bt_dev_info.cpp
16
printf("[LocalDevice] %s\t%s\n", (device->GetFriendlyName()).String(),
src/bin/bt_discovery.cpp
76
(device->GetFriendlyName()).String(),
src/bin/bt_discovery.cpp
91
printf("\t%s \t@ %s ...\n", rDevice->GetFriendlyName(true).String(),
src/kits/bluetooth/RemoteDevice.cpp
165
return GetFriendlyName(false);
src/kits/bluetooth/RemoteDevice.cpp
218
request.AddString("name", GetFriendlyName());
src/kits/bluetooth/UI/ConnectionIncoming.cpp
42
fView = new ConnectionView(BRect(0, 0, 400, 80), rDevice->GetFriendlyName(),
src/preferences/bluetooth/BluetoothDeviceView.cpp
97
SetName(bDevice->GetFriendlyName().String());
src/preferences/bluetooth/BluetoothDeviceView.cpp
99
fName->SetText(bDevice->GetFriendlyName().String());
src/preferences/bluetooth/BluetoothSettingsView.cpp
205
BMenuItem* item = fLocalDevicesMenu->FindItem(ActiveLocalDevice->GetFriendlyName());
src/preferences/bluetooth/BluetoothSettingsView.cpp
274
(lDevice->GetFriendlyName().String()), message);
src/preferences/bluetooth/BluetoothSettingsView.cpp
294
fFriendlyName->SetText(lDevice->GetFriendlyName());
src/preferences/bluetooth/BluetoothSettingsView.cpp
90
fFriendlyName->SetText(ActiveLocalDevice->GetFriendlyName());
src/preferences/bluetooth/DeviceListItem.cpp
41
fName = bDevice->GetFriendlyName();
src/preferences/bluetooth/ExtendedLocalDeviceView.cpp
69
SetName(lDevice->GetFriendlyName().String());
src/preferences/bluetooth/InquiryPanel.cpp
158
SetTitle((const char*)(fLocalDevice->GetFriendlyName().String()));