Symbol: GetProperty
headers/os/bluetooth/BluetoothDevice.h
33
virtual BString GetProperty(const char* property)=0;
headers/os/bluetooth/BluetoothDevice.h
34
virtual status_t GetProperty(const char* property, uint32* value)=0;
headers/os/bluetooth/LocalDevice.h
44
BString GetProperty(const char* property);
headers/os/bluetooth/LocalDevice.h
45
status_t GetProperty(const char* property, uint32* value);
headers/os/bluetooth/RemoteDevice.h
49
BString GetProperty(const char* property); /* Throwing */
headers/os/bluetooth/RemoteDevice.h
50
status_t GetProperty(const char* property, uint32* value); /* Throwing */
src/apps/icon-o-matic/generic/property/view/PropertyEditorView.h
47
virtual Property* GetProperty() const = 0;
src/apps/icon-o-matic/generic/property/view/PropertyItemView.cpp
170
if (const Property* property = GetProperty())
src/apps/icon-o-matic/generic/property/view/PropertyItemView.cpp
221
return fEditorView->GetProperty();
src/apps/icon-o-matic/generic/property/view/PropertyItemView.cpp
249
if (const Property* p = fEditorView->GetProperty())
src/apps/icon-o-matic/generic/property/view/PropertyItemView.cpp
52
const Property* property = GetProperty();
src/apps/icon-o-matic/generic/property/view/PropertyItemView.h
38
Property* GetProperty() const;
src/apps/icon-o-matic/generic/property/view/PropertyListView.cpp
223
const Property* property = item->GetProperty();
src/apps/icon-o-matic/generic/property/view/specific_properties/BoolValueView.h
33
virtual Property* GetProperty() const;
src/apps/icon-o-matic/generic/property/view/specific_properties/ColorValueView.h
35
virtual Property* GetProperty() const;
src/apps/icon-o-matic/generic/property/view/specific_properties/FloatValueView.h
29
virtual Property* GetProperty() const;
src/apps/icon-o-matic/generic/property/view/specific_properties/IconValueView.h
29
virtual Property* GetProperty() const;
src/apps/icon-o-matic/generic/property/view/specific_properties/Int64ValueView.h
29
virtual Property* GetProperty() const;
src/apps/icon-o-matic/generic/property/view/specific_properties/IntValueView.h
29
virtual Property* GetProperty() const;
src/apps/icon-o-matic/generic/property/view/specific_properties/OptionValueView.h
37
virtual Property* GetProperty() const;
src/apps/icon-o-matic/generic/property/view/specific_properties/StringValueView.h
30
virtual Property* GetProperty() const;
src/apps/icon-o-matic/gui/IconObjectListView.cpp
193
Property* property = item->GetProperty();
src/kits/bluetooth/LocalDevice.cpp
586
if (GetProperty("manufacturer", &value) == B_OK
src/kits/bluetooth/RemoteDevice.cpp
165
fDiscovererLocalDevice->GetProperty("role_switch_capable", &roleSwitch);
src/kits/bluetooth/RemoteDevice.cpp
169
fDiscovererLocalDevice->GetProperty("packet_type", &packetType);
src/kits/tracker/PoseView.h
463
bool GetProperty(BMessage*, int32, const char*, BMessage*);
src/kits/tracker/PoseViewScripting.cpp
238
handled = GetProperty(&specifier, form, property, &reply);
src/kits/tracker/Tracker.h
166
bool GetProperty(BMessage*, int32, const char*, BMessage*);
src/kits/tracker/TrackerScripting.cpp
167
handled = GetProperty(message, form, property, &reply);
src/preferences/bluetooth/BluetoothDeviceView.cpp
117
if (bDevice->GetProperty("hci_version", &value) == B_OK)
src/preferences/bluetooth/BluetoothDeviceView.cpp
119
if (bDevice->GetProperty("hci_revision", &value) == B_OK)
src/preferences/bluetooth/BluetoothDeviceView.cpp
125
if (bDevice->GetProperty("lmp_version", &value) == B_OK)
src/preferences/bluetooth/BluetoothDeviceView.cpp
127
if (bDevice->GetProperty("lmp_subversion", &value) == B_OK)
src/preferences/bluetooth/BluetoothDeviceView.cpp
132
if (bDevice->GetProperty("manufacturer", &value) == B_OK)
src/preferences/bluetooth/BluetoothDeviceView.cpp
138
if (bDevice->GetProperty("acl_mtu", &value) == B_OK)
src/preferences/bluetooth/BluetoothDeviceView.cpp
140
if (bDevice->GetProperty("acl_max_pkt", &value) == B_OK)
src/preferences/bluetooth/BluetoothDeviceView.cpp
145
if (bDevice->GetProperty("sco_mtu", &value) == B_OK)
src/preferences/bluetooth/BluetoothDeviceView.cpp
147
if (bDevice->GetProperty("sco_max_pkt", &value) == B_OK)