Searched refs:container (Results 1 - 25 of 110) sorted by last modified time

12345

/haiku/src/add-ons/kernel/network/stack/
H A Dnet_socket.cpp202 add_ancillary_data(net_socket* socket, ancillary_data_container* container, argument
218 socket->first_protocol, container, header);
233 process_ancillary_data(net_socket* socket, ancillary_data_container* container, argument
239 if (container == NULL || dataBuffer == NULL) {
247 while ((data = next_ancillary_data(container, data, &header)) != NULL) {
1190 ancillary_data_container* container local
1192 if (container != NULL)
1193 status = process_ancillary_data(socket, container, header);
/haiku/src/apps/terminal/
H A DTermWindow.cpp110 BView(BRect(), "term view container", B_FOLLOW_ALL, 0),
325 // Make the scroll view one pixel wider than the tab view container view, so
1011 TermViewContainerView* container = _TermViewContainerViewAt(i); local
1012 _SetTermColors(container);
1013 container->Invalidate();
/haiku/src/kits/tracker/
H A DPoseView.cpp1408 EntryListBase* container = view->InitDirentIterator(&ref); local
1409 if (container == NULL) {
1437 int32 count = container->GetNextDirents(eptr, 1024, 1);
1480 view->ReturnDirentIterator(container);
1481 container = NULL;
1556 delete container;
1566 view->ReturnDirentIterator(container);
1569 delete container;
/haiku/src/apps/icon-o-matic/gui/
H A DStyleListView.cpp610 // container, when this is changed to asynchronous
627 // container, when this is changed to asynchronous
677 StyleListView::SetStyleContainer(Container<Style>* container) argument
679 if (fStyleContainer == container)
682 // detach from old container
688 fStyleContainer = container;
703 StyleListView::SetShapeContainer(Container<Shape>* container) argument
705 if (fShapeContainer == container)
708 // detach from old container
712 fShapeContainer = container;
[all...]
H A DPathListView.cpp688 // container, when this is changed to asynchronous
705 // container, when this is changed to asynchronous
721 PathListView::SetPathContainer(Container<VectorPath>* container) argument
723 if (fPathContainer == container)
726 // detach from old container
732 fPathContainer = container;
752 PathListView::SetShapeContainer(Container<Shape>* container) argument
754 if (fShapeContainer == container)
757 // detach from old container
761 fShapeContainer = container;
[all...]
H A DShapeListView.cpp585 // container, when this is changed to asynchronous
602 // container, when this is changed to asynchronous
688 ShapeListView::SetShapeContainer(Container<Shape>* container) argument
690 if (fShapeContainer == container)
693 // detach from old container
699 fShapeContainer = container;
714 ShapeListView::SetStyleContainer(Container<Style>* container) argument
716 fStyleContainer = container;
721 ShapeListView::SetPathContainer(Container<VectorPath>* container) argument
723 fPathContainer = container;
[all...]
H A DStyleListView.h69 void SetStyleContainer(Container<Style>* container);
70 void SetShapeContainer(Container<Shape>* container);
H A DShapeListView.h73 void SetShapeContainer(Container<Shape>* container);
74 void SetStyleContainer(Container<Style>* container);
75 void SetPathContainer(Container<VectorPath>* container);
H A DPathListView.h71 void SetPathContainer(Container<VectorPath>* container);
72 void SetShapeContainer(Container<Shape>* container);
/haiku/src/kits/interface/
H A DColumnListView.cpp390 BRowContainer* container,
/haiku/src/system/kernel/arch/x86/
H A Darch_cpu.cpp1131 struct amd_container_header* container = (struct amd_container_header*)data;
1132 if (container->magic != 0x414d44) {
1137 size -= sizeof(*container);
1138 data += sizeof(*container);
/haiku/src/add-ons/kernel/network/protocols/unix/
H A Dunix.cpp292 unix_add_ancillary_data(net_protocol *self, ancillary_data_container *container, argument
296 "len: %" B_PRId32 "))\n", find_thread(NULL), self, container, header,
326 // attach the ancillary data to the container
334 "container\n", find_thread(NULL), count);
336 error = gStackModule->add_ancillary_data(container, &header,
389 // will be released when the container is destroyed.
/haiku/headers/private/net/
H A Dnet_protocol.h102 ancillary_data_container* container, const cmsghdr* header);
/haiku/src/apps/debugger/user_interface/cli/commands/
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/style/
H A DMoveStylesCommand.cpp23 MoveStylesCommand::MoveStylesCommand(Container<Style>* container, argument
25 : MoveCommand<Style>(container, styles, count, toIndex)
H A DRemoveStylesCommand.cpp29 RemoveStylesCommand::RemoveStylesCommand(Container<Style>* container, argument
31 : RemoveCommand<Style>(container, indices, count),
68 // remove styles from the container
94 // add styles to the container
H A DAddStylesCommand.cpp22 AddStylesCommand::AddStylesCommand(Container<Style>* container, argument
24 : AddCommand<Style>(container, styles, count, true, index)
/haiku/src/apps/icon-o-matic/shape/commands/
H A DRemoveTransformersCommand.cpp23 RemoveTransformersCommand::RemoveTransformersCommand(Container<Transformer>* container, argument
26 : RemoveCommand<Transformer>(container, indices, count)
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 DRemovePathsCommand.cpp33 Container<VectorPath>* container, const int32* indices, int32 count)
34 : RemoveCommand<VectorPath>(container, indices, count),
71 // remove paths from the container
96 // add paths to the container
32 RemovePathsCommand( Container<VectorPath>* container, const int32* indices, int32 count) argument
H A DMoveTransformersCommand.cpp23 MoveTransformersCommand::MoveTransformersCommand(Container<Transformer>* container, argument
25 : MoveCommand<Transformer>(container, transformers, count, toIndex)
H A DMoveShapesCommand.cpp23 MoveShapesCommand::MoveShapesCommand(Container<Shape>* container, argument
25 : MoveCommand<Shape>(container, shapes, count, toIndex)
H A DMovePathsCommand.cpp23 MovePathsCommand::MovePathsCommand(Container<VectorPath>* container, argument
25 : MoveCommand<VectorPath>(container, paths, count, toIndex)
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)

Completed in 95 milliseconds

12345