Searched refs:Attribute (Results 26 - 50 of 96) sorted by relevance

1234

/haiku/src/add-ons/kernel/file_systems/ramfs/
H A DNode.cpp72 while (Attribute *attribute = fAttributes.First()) {
184 Node::CreateAttribute(const char *name, Attribute **_attribute)
189 Attribute *attribute = new(nothrow) Attribute(fVolume, NULL, name);
208 Node::DeleteAttribute(Attribute *attribute)
218 Node::AddAttribute(Attribute *attribute)
234 Node::RemoveAttribute(Attribute *attribute)
242 Attribute *nextAttr = fAttributes.GetNext(attribute);
276 Node::FindAttribute(const char *name, Attribute **_attribute) const
280 Attribute *attribut
[all...]
H A DNode.h11 #include "Attribute.h"
95 status_t CreateAttribute(const char *name, Attribute **attribute);
96 status_t DeleteAttribute(Attribute *attribute);
97 status_t AddAttribute(Attribute *attribute);
98 status_t RemoveAttribute(Attribute *attribute);
100 status_t FindAttribute(const char *name, Attribute **attribute) const;
102 status_t GetPreviousAttribute(Attribute **attribute) const;
103 status_t GetNextAttribute(Attribute **attribute) const;
129 DoublyLinkedList<Attribute> fAttributes;
H A DAttributeIndexImpl.cpp69 PrimaryKey(Attribute *attribute, const uint8 *theKey,
73 PrimaryKey(Attribute *attribute)
79 Attribute *attribute;
87 inline PrimaryKey operator()(Attribute *a)
92 inline PrimaryKey operator()(Attribute *a) const
121 if (Attribute **attribute = fIterator.GetCurrent()) {
130 if (Attribute **attribute = fIterator.GetNext()) {
144 : public TwoKeyAVLTree<Attribute*, PrimaryKey, PrimaryKeyCompare,
148 : TwoKeyAVLTree<Attribute*, PrimaryKey, PrimaryKeyCompare,
150 GetPrimaryKey(), TwoKeyAVLTreeStandardCompare<Attribute*>(),
[all...]
H A DAttributeIterator.cpp95 AttributeIterator::GetNext(Attribute **attribute)
132 AttributeIterator::SetCurrent(Attribute *attribute, bool isNext)
/haiku/src/apps/people/
H A DPeopleApp.h57 struct Attribute { struct in class:TPeopleApp
63 BObjectList<Attribute> fAttributes;
H A DAttributeTextControl.cpp99 if (Attribute() == "META:url") {
109 } else if (Attribute() == "META:email") {
156 if (Attribute() == "META:url") {
161 else if (Attribute() == "META:email") {
H A DAttributeTextControl.h31 const BString& Attribute() const function in class:AttributeTextControl
H A DPeopleApp.cpp125 Attribute* attribute = new Attribute();
126 ObjectDeleter<Attribute> deleter(attribute);
172 Attribute* attribute = new Attribute();
189 Attribute* attribute = fAttributes.ItemAt(i);
327 Attribute* attribute = fAttributes.ItemAt(i);
/haiku/src/add-ons/kernel/file_systems/ext2/
H A DAttribute.h22 class Attribute { class
24 Attribute(Inode* inode);
25 Attribute(Inode* inode, attr_cookie* cookie);
26 ~Attribute();
/haiku/src/kits/package/hpkg/
H A DPackageWriterImpl.cpp66 struct PackageWriterImpl::Attribute struct in class:BPackageKit::BHPKG::BPrivate::PackageWriterImpl
67 : public DoublyLinkedListLinkImpl<Attribute> {
70 DoublyLinkedList<Attribute> children;
72 Attribute(BHPKGAttributeID id_ = B_HPKG_ATTRIBUTE_ID_ENUM_COUNT) function in struct:BPackageKit::BHPKG::BPrivate::PackageWriterImpl::Attribute
78 ~Attribute()
83 void AddChild(Attribute* child)
88 void RemoveChild(Attribute* child)
95 while (Attribute* child = children.RemoveHead())
99 Attribute* FindEntryChild(const char* fileName) const
101 for (DoublyLinkedList<Attribute>
[all...]
/haiku/src/apps/devices/
H A DPropertyList.h17 struct Attribute;
/haiku/src/add-ons/mail_daemon/inbound_filters/match_header/
H A DMatchHeaderSettings.h34 const char* Attribute() const function in class:MatchHeaderSettings
H A DRuleFilter.cpp40 fAttribute = settings.Attribute();
126 if (settings.Attribute() != NULL && settings.Expression() != NULL) {
129 name.ReplaceAll("%attribute", settings.Attribute());
/haiku/src/add-ons/kernel/file_systems/xfs/
H A DNodeAttribute.h13 class NodeAttribute : public Attribute {
H A DShortAttribute.h9 #include "Attribute.h"
13 class ShortAttribute : public Attribute {
H A Dkernel_interface.cpp480 Attribute* iterator = Attribute::Init(inode);
500 delete (Attribute*)_cookie;
510 Attribute* iterator = (Attribute*)_cookie;
564 Attribute* attribute = Attribute::Init(inode);
601 Attribute* attribute = Attribute::Init(inode);
630 Attribute* attribut
[all...]
/haiku/src/add-ons/kernel/bus_managers/acpi/acpica/components/executer/
H A Dexserial.c321 Function = ACPI_READ | (ObjDesc->Field.Attribute << 16);
332 AccessorType = ObjDesc->Field.Attribute;
454 Function = ACPI_WRITE | (ObjDesc->Field.Attribute << 16);
465 AccessorType = ObjDesc->Field.Attribute;
/haiku/src/add-ons/kernel/file_systems/nfs4/
H A DRequestBuilder.h41 status_t GetAttr(Attribute* attrs, uint32 count);
67 Attribute* attrs, uint32 attrCount);
97 Attribute* attrs, uint32 count);
H A DNFS4Inode.cpp34 Attribute attr[] = { FATTR4_CHANGE };
35 req.GetAttr(attr, sizeof(attr) / sizeof(Attribute));
136 Attribute dirAttr[] = { FATTR4_CHANGE };
137 req.GetAttr(dirAttr, sizeof(dirAttr) / sizeof(Attribute));
148 Attribute attr[] = { FATTR4_FSID, FATTR4_FILEID };
149 req.GetAttr(attr, sizeof(attr) / sizeof(Attribute));
298 Attribute attr[] = { FATTR4_SIZE, FATTR4_MODE, FATTR4_NUMLINKS,
302 req.GetAttr(attr, sizeof(attr) / sizeof(Attribute));
390 Attribute attr[] = { FATTR4_FILEID };
391 req.GetAttr(attr, sizeof(attr) / sizeof(Attribute));
[all...]
H A DRootInode.cpp68 Attribute attr[] = { FATTR4_FILES_FREE, FATTR4_FILES_TOTAL,
71 req.GetAttr(attr, sizeof(attr) / sizeof(Attribute));
190 Attribute attr[] = { FATTR4_FS_LOCATIONS };
191 req.GetAttr(attr, sizeof(attr) / sizeof(Attribute));
H A DFileSystem.h57 inline bool IsAttrSupported(Attribute attr) const;
136 FileSystem::IsAttrSupported(Attribute attr) const
/haiku/headers/tools/cppunit/cppunit/
H A DXmlOutputter.h74 typedef std::pair<std::string,std::string> Attribute; typedef in class:CppUnit::XmlOutputter::Node
83 typedef std::deque<Attribute> Attributes;
/haiku/src/bin/bfs_tools/lib/
H A DInode.h141 class Attribute : public File { class in inherits:File
143 Attribute(Disk *disk, bfs_inode *inode, bool ownBuffer = true);
144 Attribute(const Inode &inode);
145 ~Attribute();
/haiku/src/add-ons/kernel/file_systems/cdda/
H A Dkernel_interface.cpp40 class Attribute;
45 typedef DoublyLinkedList<Attribute> AttributeList;
140 class Attribute : public DoublyLinkedListLinkImpl<Attribute> { class in inherits:DoublyLinkedListLinkImpl
142 Attribute(const char* name, type_code type);
143 ~Attribute();
204 Attribute* FindAttribute(const char* name) const;
205 status_t AddAttribute(Attribute* attribute, bool overwrite);
261 Attribute* current;
344 Attribute* attribut
1007 Attribute::Attribute(const char* name, type_code type) function in class:Attribute
[all...]
/haiku/src/apps/mediaplayer/playlist/
H A DFilePlaylistItem.cpp109 FilePlaylistItem::SetAttribute(const Attribute& attribute,
149 FilePlaylistItem::GetAttribute(const Attribute& attribute,
164 FilePlaylistItem::SetAttribute(const Attribute& attribute,
185 FilePlaylistItem::GetAttribute(const Attribute& attribute,
206 FilePlaylistItem::SetAttribute(const Attribute& attribute,
223 FilePlaylistItem::GetAttribute(const Attribute& attribute,
240 FilePlaylistItem::SetAttribute(const Attribute& attribute,
253 FilePlaylistItem::GetAttribute(const Attribute& attribute,

Completed in 275 milliseconds

1234