Searched refs:container (Results 1 - 25 of 110) sorted by relevance

12345

/haiku/src/add-ons/kernel/network/stack/
H A Dancillary_data.h14 void delete_ancillary_data_container(ancillary_data_container* container);
16 status_t add_ancillary_data(ancillary_data_container* container,
20 status_t remove_ancillary_data(ancillary_data_container* container, void* data,
25 void* next_ancillary_data(ancillary_data_container* container,
H A Dancillary_data.cpp49 delete_ancillary_data_container(ancillary_data_container* container) argument
51 if (container == NULL)
54 while (ancillary_data* data = container->data_list.RemoveHead()) {
63 Adds ancillary data to the given container.
65 \param container The container.
69 data as parameter when the container is destroyed.
74 add_ancillary_data(ancillary_data_container* container, argument
96 container->data_list.Add(ancillaryData);
109 Removes ancillary data from the given container
122 remove_ancillary_data(ancillary_data_container* container, void* data, bool destroy) argument
184 next_ancillary_data(ancillary_data_container* container, void* previousData, ancillary_data_header* _header) argument
[all...]
/haiku/src/apps/debugger/user_interface/cli/commands/
H A DCliVariablesCommand.cpp41 ValueNodeContainer* container = manager->GetContainer(); local
42 AutoLocker<ValueNodeContainer> containerLocker(container);
43 if (container == NULL || container->CountChildren() == 0) {
49 for (int32 i = 0; ValueNodeChild* child = container->ChildAt(i); i++) {
H A DCliPrintVariableCommand.cpp46 ValueNodeContainer* container = manager->GetContainer(); local
47 AutoLocker<ValueNodeContainer> containerLocker(container);
48 if (container == NULL || container->CountChildren() == 0) {
82 for (int32 j = 0; ValueNodeChild* child = container->ChildAt(j); j++) {
112 ValueNodeContainer* container = manager->GetContainer(); local
113 AutoLocker<ValueNodeContainer> containerLocker(container);
116 context.CurrentThread()->GetCpuState(), container, node);
/haiku/src/apps/icon-o-matic/
H A DUtil.cpp23 new_style(rgb_color color, Container<Style>* container, argument
31 container, styles, 1,
32 container->CountItems());
44 new_path(Container<VectorPath>* container, VectorPath** path, argument
55 int32 insertIndex = other ? container->IndexOf(other) + 1
56 : container->CountItems();
58 container, paths, 1, true, insertIndex);
H A DUtil.h31 void new_style(rgb_color color, Container<Style>* container,
34 void new_path(Container<VectorPath>* container, VectorPath** path,
/haiku/src/add-ons/kernel/file_systems/reiserfs/
H A DSettings.h56 const container_t *container, const char *name, int32 &cookie);
59 static const char *_GetParameterValue(const container_t *container,
63 static bool _GetParameterValue(const container_t *container,
67 static int64 _GetParameterValue(const container_t *container,
83 Settings::_FindNextParameter(const container_t *container, argument
87 if (container) {
88 for (; !parameter && cookie < container->parameter_count; cookie++) {
89 const driver_parameter &param = container->parameters[cookie];
100 Settings::_GetParameterValue(const container_t *container, const char *name, argument
103 if (container) {
131 _GetParameterValue(const container_t *container, const char *name, bool unknownValue, bool noArgValue) argument
160 _GetParameterValue(const container_t *container, const char *name, int64 unknownValue, int64 noArgValue) argument
[all...]
/haiku/src/apps/icon-o-matic/shape/commands/
H A DMoveShapesCommand.cpp23 MoveShapesCommand::MoveShapesCommand(Container<Shape>* container, argument
25 : MoveCommand<Shape>(container, shapes, count, toIndex)
H A DMoveTransformersCommand.cpp23 MoveTransformersCommand::MoveTransformersCommand(Container<Transformer>* container, argument
25 : MoveCommand<Transformer>(container, transformers, count, toIndex)
H A DMovePathsCommand.cpp23 MovePathsCommand::MovePathsCommand(Container<VectorPath>* container, argument
25 : MoveCommand<VectorPath>(container, paths, count, toIndex)
H A DRemoveShapesCommand.cpp24 Container<Shape>* container, const int32* indices, int32 count)
25 : RemoveCommand<Shape>(container, indices, count)
23 RemoveShapesCommand( Container<Shape>* container, const int32* indices, int32 count) argument
H A DRemoveTransformersCommand.cpp23 RemoveTransformersCommand::RemoveTransformersCommand(Container<Transformer>* container, argument
26 : RemoveCommand<Transformer>(container, indices, count)
H A DAddShapesCommand.cpp23 AddShapesCommand::AddShapesCommand(Container<Shape>* container, argument
25 : AddCommand<Shape>(container, shapes, count, true, index)
H A DAddTransformersCommand.cpp23 AddTransformersCommand::AddTransformersCommand(Container<Transformer>* container, argument
25 : AddCommand<Transformer>(container, transformers, count, true, index)
H A DAddPathsCommand.cpp23 AddPathsCommand::AddPathsCommand(Container<VectorPath>* container, argument
25 : AddCommand<VectorPath>(container, paths, count, ownsPaths, index)
H A DMoveShapesCommand.h27 Container<Shape>* container,
H A DAddTransformersCommand.h27 Container<Transformer>* container,
H A DAddShapesCommand.h27 Container<Shape>* container,
H A DAddPathsCommand.h27 Container<VectorPath>* container,
H A DRemoveShapesCommand.h28 Container<Shape>* container,
/haiku/src/apps/icon-o-matic/style/
H A DAddStylesCommand.cpp22 AddStylesCommand::AddStylesCommand(Container<Style>* container, argument
24 : AddCommand<Style>(container, styles, count, true, index)
H A DMoveStylesCommand.cpp23 MoveStylesCommand::MoveStylesCommand(Container<Style>* container, argument
25 : MoveCommand<Style>(container, styles, count, toIndex)
H A DMoveStylesCommand.h27 Container<Style>* container,
/haiku/src/tests/kits/interface/layout/widget_layout_test/
H A DCheckBox.cpp38 CheckBox::Draw(BView* container, BRect updateRect) argument
43 container->SetHighColor((rgb_color){ 120, 0, 0, 255 });
45 container->SetHighColor((rgb_color){ 0, 0, 0, 255 });
47 container->StrokeRect(rect);
51 container->StrokeLine(rect.LeftTop(), rect.RightBottom());
52 container->StrokeLine(rect.RightTop(), rect.LeftBottom());
H A DStringView.cpp83 StringView::Draw(BView* container, BRect updateRect) argument
104 container->SetHighColor(fTextColor);
105 container->DrawString(fString.String(), base);
112 BView* container = Container(); local
113 if (!container)
117 container->GetFont(&font);

Completed in 104 milliseconds

12345