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
32
BString GetFriendlyName(bool alwaysAsk); /* Throwing */
headers/os/bluetooth/RemoteDevice.h
33
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
116
return GetFriendlyName(false);
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
248
(lDevice->GetFriendlyName().String()), message);
src/preferences/bluetooth/DeviceListItem.cpp
40
fName = bDevice->GetFriendlyName();
src/preferences/bluetooth/ExtendedLocalDeviceView.cpp
69
SetName(lDevice->GetFriendlyName().String());
src/preferences/bluetooth/InquiryPanel.cpp
144
SetTitle((const char*)(fLocalDevice->GetFriendlyName().String()));