Symbol: CreateAttribute
src/add-ons/kernel/file_systems/bfs/Inode.cpp
1157
status = CreateAttribute(transaction, name, type, &attribute);
src/add-ons/kernel/file_systems/bfs/Inode.cpp
594
status_t status = CreateAttribute(transaction, item->Name(),
src/add-ons/kernel/file_systems/bfs/Inode.h
134
status_t CreateAttribute(Transaction& transaction,
src/add-ons/kernel/file_systems/layers/attribute_overlay/attribute_overlay.cpp
132
status_t CreateAttribute(const char *name, type_code type,
src/add-ons/kernel/file_systems/layers/attribute_overlay/attribute_overlay.cpp
1519
return attributeFile->CreateAttribute(name, type, openMode,
src/add-ons/kernel/file_systems/netfs/client/ShareAttrDir.cpp
343
status_t error = Attribute::CreateAttribute(name, info, data, &attribute);
src/add-ons/kernel/file_systems/netfs/client/ShareAttrDir.cpp
443
error = Attribute::CreateAttribute(attrInfo.name.GetString(),
src/add-ons/kernel/file_systems/netfs/client/ShareAttrDir.h
21
static status_t CreateAttribute(const char* name,
src/add-ons/kernel/file_systems/netfs/server/AttributeDirectory.cpp
199
status_t error = Attribute::CreateAttribute(name, info, data, &attribute);
src/add-ons/kernel/file_systems/netfs/server/AttributeDirectory.cpp
282
error = Attribute::CreateAttribute(name, info, data,
src/add-ons/kernel/file_systems/netfs/server/AttributeDirectory.h
25
static status_t CreateAttribute(const char* name,
src/add-ons/kernel/file_systems/ramfs/Node.h
89
status_t CreateAttribute(const char *name, Attribute **attribute);
src/add-ons/kernel/file_systems/ramfs/kernel_interface.cpp
1605
error = node->CreateAttribute(name, &attribute);