Symbol: GetAttribute
src/add-ons/kernel/file_systems/bfs/Attribute.cpp
98
return fInode->GetAttribute(name, &fAttribute);
src/add-ons/kernel/file_systems/bfs/Inode.cpp
1002
&& GetAttribute(name, &attribute) == B_OK) {
src/add-ons/kernel/file_systems/bfs/Inode.cpp
1078
status_t status = GetAttribute(name, &attribute);
src/add-ons/kernel/file_systems/bfs/Inode.cpp
1119
if (GetAttribute(name, &attribute) != B_OK) {
src/add-ons/kernel/file_systems/bfs/Inode.h
131
status_t GetAttribute(const char* name,
src/add-ons/kernel/file_systems/bfs/Query.cpp
256
if (inode->GetAttribute(attributeName, &attribute) == B_OK) {
src/add-ons/kernel/file_systems/netfs/client/ShareAttrDir.cpp
338
if (!name || GetAttribute(name))
src/add-ons/kernel/file_systems/netfs/client/ShareAttrDir.h
63
Attribute* GetAttribute(const char* name) const;
src/add-ons/kernel/file_systems/netfs/client/ShareVolume.cpp
1629
Attribute* attribute = attrDir->GetAttribute(name);
src/add-ons/kernel/file_systems/netfs/client/ShareVolume.cpp
1911
Attribute* attribute = attrDir->GetAttribute(name);
src/add-ons/kernel/file_systems/netfs/server/AttributeDirectory.cpp
194
if (!name || GetAttribute(name))
src/add-ons/kernel/file_systems/netfs/server/AttributeDirectory.h
59
Attribute* GetAttribute(const char* name) const;
src/apps/devices/Device.h
100
virtual Attribute GetAttribute(const BString& name) const
src/apps/devices/DeviceACPI.cpp
76
rootACPIPath = nodeACPIPath = GetAttribute("acpi/path").fValue;
src/apps/devices/DeviceACPI.cpp
77
nodeACPIHid = GetAttribute("acpi/hid").fValue;
src/apps/devices/DeviceACPI.cpp
78
nodeACPICid = GetAttribute("acpi/cid").fValue;
src/apps/devices/DeviceSCSI.cpp
60
BString nodeVendor(GetAttribute("scsi/vendor").fValue);
src/apps/devices/DeviceSCSI.cpp
61
BString nodeProduct(GetAttribute("scsi/product").fValue);
src/apps/devices/DeviceSCSI.cpp
65
uint32 nodeTypeID = atoi(GetAttribute("scsi/type").fValue);
src/apps/mediaplayer/playlist/FilePlaylistItem.h
34
virtual status_t GetAttribute(const Attribute& attribute,
src/apps/mediaplayer/playlist/FilePlaylistItem.h
39
virtual status_t GetAttribute(const Attribute& attribute,
src/apps/mediaplayer/playlist/FilePlaylistItem.h
44
virtual status_t GetAttribute(const Attribute& attribute,
src/apps/mediaplayer/playlist/FilePlaylistItem.h
49
virtual status_t GetAttribute(const Attribute& attribute,
src/apps/mediaplayer/playlist/PlaylistItem.cpp
106
if (GetAttribute(ATTR_STRING_AUTHOR, author) != B_OK)
src/apps/mediaplayer/playlist/PlaylistItem.cpp
116
if (GetAttribute(ATTR_STRING_ALBUM, album) != B_OK)
src/apps/mediaplayer/playlist/PlaylistItem.cpp
126
if (GetAttribute(ATTR_STRING_TITLE, title) != B_OK)
src/apps/mediaplayer/playlist/PlaylistItem.cpp
136
if (GetAttribute(ATTR_INT32_TRACK, trackNumber) != B_OK)
src/apps/mediaplayer/playlist/PlaylistItem.cpp
146
if (GetAttribute(ATTR_INT64_DURATION, duration) != B_OK) {
src/apps/mediaplayer/playlist/PlaylistItem.cpp
165
if (GetAttribute(ATTR_INT64_FRAME, lastFrame) != B_OK)
src/apps/mediaplayer/playlist/PlaylistItem.cpp
175
if (GetAttribute(ATTR_FLOAT_VOLUME, lastVolume) != B_OK)
src/apps/mediaplayer/playlist/PlaylistItem.cpp
96
if (GetAttribute(ATTR_STRING_NAME, name) != B_OK)
src/apps/mediaplayer/playlist/PlaylistItem.h
64
virtual status_t GetAttribute(const Attribute& attribute,
src/apps/mediaplayer/playlist/PlaylistItem.h
69
virtual status_t GetAttribute(const Attribute& attribute,
src/apps/mediaplayer/playlist/PlaylistItem.h
74
virtual status_t GetAttribute(const Attribute& attribute,
src/apps/mediaplayer/playlist/PlaylistItem.h
79
virtual status_t GetAttribute(const Attribute& attribute,
src/apps/mediaplayer/playlist/UrlPlaylistItem.h
28
virtual status_t GetAttribute(const Attribute& attribute,
src/apps/mediaplayer/playlist/UrlPlaylistItem.h
33
virtual status_t GetAttribute(const Attribute& attribute,
src/apps/mediaplayer/playlist/UrlPlaylistItem.h
38
virtual status_t GetAttribute(const Attribute& attribute,
src/apps/mediaplayer/playlist/UrlPlaylistItem.h
43
virtual status_t GetAttribute(const Attribute& attribute,