Lines Matching refs:BParameterGroup

12 	BParameterWeb, BParameterGroup, BParameter, BNullParameter,
349 delete static_cast<BParameterGroup*>(fGroups->ItemAt(i));
365 BParameterGroup*
370 BParameterGroup* group = new(std::nothrow) BParameterGroup(this, name);
390 BParameterGroup*
393 return static_cast<BParameterGroup*>(fGroups->ItemAt(index));
409 BParameterGroup* group
410 = static_cast<BParameterGroup*>(groups.ItemAt(i));
434 BParameterGroup* group
435 = static_cast<BParameterGroup*>(groups.ItemAt(i));
492 BParameterGroup* group
493 = static_cast<BParameterGroup*>(fGroups->ItemAt(i));
528 BParameterGroup* group
529 = static_cast<BParameterGroup*>(fGroups->ItemAt(i));
607 delete static_cast<BParameterGroup*>(fGroups->ItemAt(i));
625 BParameterGroup* group = new BParameterGroup(this, "unnamed");
644 BParameterGroup* group
645 = static_cast<BParameterGroup*>(groups.ItemAt(i));
673 // #pragma mark - BParameterGroup
676 BParameterGroup::BParameterGroup(BParameterWeb* web, const char* name)
682 TRACE("BParameterGroup: web = %p, name = \"%s\"\n", web, name);
691 BParameterGroup::~BParameterGroup()
701 delete static_cast<BParameterGroup*>(fGroups->ItemAt(i));
710 BParameterGroup::Web() const
717 BParameterGroup::Name() const
724 BParameterGroup::SetFlags(uint32 flags)
731 BParameterGroup::Flags() const
738 BParameterGroup::MakeNullParameter(int32 id, media_type mediaType,
756 BParameterGroup::MakeContinuousParameter(int32 id, media_type mediaType,
776 BParameterGroup::MakeDiscreteParameter(int32 id, media_type mediaType,
794 BParameterGroup::MakeTextParameter(int32 id, media_type mediaType,
811 BParameterGroup*
812 BParameterGroup::MakeGroup(const char* name)
816 BParameterGroup* group = new(std::nothrow) BParameterGroup(fWeb, name);
825 BParameterGroup::CountParameters()
832 BParameterGroup::ParameterAt(int32 index)
839 BParameterGroup::CountGroups()
845 BParameterGroup*
846 BParameterGroup::GroupAt(int32 index)
848 return static_cast<BParameterGroup*>(fGroups->ItemAt(index));
853 BParameterGroup::IsFixedSize() const
860 BParameterGroup::TypeCode() const
867 BParameterGroup::FlattenedSize() const
915 BParameterGroup* group
916 = static_cast<BParameterGroup*>(fGroups->ItemAt(i));
919 size += sizeof(BParameterGroup*) + sizeof(type_code)
929 BParameterGroup::Flatten(void* buffer, ssize_t size) const
934 ERROR("BParameterGroup::Flatten buffer is NULL\n");
939 // BParameterGroup::FlattenedSize, not by a descendent's override of this method.
940 ssize_t actualSize = BParameterGroup::FlattenedSize();
942 ERROR("BParameterGroup::Flatten size to small\n");
960 ERROR("BParameterGroup::Flatten(): NULL parameter\n");
985 BParameterGroup* group
986 = static_cast<BParameterGroup*>(fGroups->ItemAt(i));
988 ERROR("BParameterGroup::Flatten(): NULL group\n");
992 write_to_buffer<BParameterGroup*>(&buffer, group);
1013 BParameterGroup::AllowsTypeCode(type_code code) const
1020 BParameterGroup::Unflatten(type_code code, const void* buffer, ssize_t size)
1025 ERROR("BParameterGroup::Unflatten() wrong type code\n");
1030 ERROR("BParameterGroup::Unflatten() buffer is NULL\n");
1037 ERROR("BParameterGroup::Unflatten() size to small\n");
1071 delete static_cast<BParameterGroup*>(fGroups->ItemAt(i));
1103 ERROR("BParameterGroup::Unflatten(): MakeControl() failed\n");
1110 ERROR("BParameterGroup::Unflatten(): parameter->Unflatten() failed\n");
1137 sizeof(BParameterGroup*) + sizeof(type_code)
1142 BParameterGroup* oldPointer = read_pointer_from_buffer_swap<
1143 BParameterGroup*>(&buffer, isSwapped);
1151 BParameterGroup* group = new BParameterGroup(fWeb, "sub-unnamed");
1153 ERROR("BParameterGroup::Unflatten(): MakeGroup() failed\n");
1159 ERROR("BParameterGroup::Unflatten(): group->Unflatten() failed\n");
1178 Unlike the BParameterGroup::MakeXXXParameter() type of methods, this
1182 BParameterGroup::MakeControl(int32 type)
1202 ERROR("BParameterGroup::MakeControl unknown type %" B_PRId32 "\n",
1226 BParameterGroup*
2418 status_t BParameterGroup::_Reserved_ControlGroup_0(void *) { return B_ERROR; }
2419 status_t BParameterGroup::_Reserved_ControlGroup_1(void *) { return B_ERROR; }
2420 status_t BParameterGroup::_Reserved_ControlGroup_2(void *) { return B_ERROR; }
2421 status_t BParameterGroup::_Reserved_ControlGroup_3(void *) { return B_ERROR; }
2422 status_t BParameterGroup::_Reserved_ControlGroup_4(void *) { return B_ERROR; }
2423 status_t BParameterGroup::_Reserved_ControlGroup_5(void *) { return B_ERROR; }
2424 status_t BParameterGroup::_Reserved_ControlGroup_6(void *) { return B_ERROR; }
2425 status_t BParameterGroup::_Reserved_ControlGroup_7(void *) { return B_ERROR; }