Lines Matching refs:AddAttribute

205 			status_t		AddAttribute(Attribute* attribute, bool overwrite);
206 status_t AddAttribute(const char* name, type_code type,
209 status_t AddAttribute(const char* name, type_code type,
211 status_t AddAttribute(const char* name, type_code type,
213 status_t AddAttribute(const char* name, type_code type,
450 || inode->AddAttribute(attribute, true) != B_OK) {
719 inode->AddAttribute("Audio:Artist", B_STRING_TYPE,
721 inode->AddAttribute("Audio:Album", B_STRING_TYPE, text.album);
722 inode->AddAttribute("Audio:Title", B_STRING_TYPE, text.titles[i]);
723 inode->AddAttribute("Audio:Genre", B_STRING_TYPE, text.genre);
724 inode->AddAttribute("Audio:Track", B_INT32_TYPE, (uint32)track);
725 inode->AddAttribute("Audio:Bitrate", B_STRING_TYPE, "1411 kbps");
726 inode->AddAttribute("Media:Length", B_INT64_TYPE,
728 inode->AddAttribute("BEOS:TYPE", B_MIME_STRING_TYPE, "audio/x-wav");
732 fRootNode->AddAttribute(kCddbIdAttribute, B_UINT32_TYPE, fDiscID);
738 fRootNode->AddAttribute(kTocAttribute, B_RAW_TYPE, true,
814 fRootNode->AddAttribute(kDoLookupAttribute, B_BOOL_TYPE, true,
1265 Inode::AddAttribute(Attribute* attribute, bool overwrite)
1282 Inode::AddAttribute(const char* name, type_code type, bool overwrite,
1293 status = AddAttribute(attribute, overwrite);
1304 Inode::AddAttribute(const char* name, type_code type, const char* string)
1309 return AddAttribute(name, type, true, (const uint8*)string,
1315 Inode::AddAttribute(const char* name, type_code type, uint32 value)
1318 return AddAttribute(name, type, true, (const uint8*)&data, sizeof(uint32));
1323 Inode::AddAttribute(const char* name, type_code type, uint64 value)
1326 return AddAttribute(name, type, true, (const uint8*)&data, sizeof(uint64));
2065 status_t status = inode->AddAttribute(name, type, true, NULL, 0);