Searched refs:child (Results 226 - 250 of 292) sorted by relevance

1234567891011>>

/haiku/src/add-ons/kernel/bus_managers/acpi/
H A DBusManager.cpp471 ACPI_HANDLE parent, child, newChild; local
485 child = *counter;
487 status = AcpiGetNextObject(objectType, parent, child, &newChild);
507 acpi_handle child = *currentChild; local
508 return AcpiGetNextObject(objectType, parent, child, currentChild) == AE_OK
H A DEmbeddedController.cpp402 // remove child nodes
403 device_node *child = NULL; local
405 while (gDeviceManager->get_next_child_node(dev, attrs, &child) == B_OK)
406 gDeviceManager->unregister_node(child);
/haiku/src/add-ons/kernel/drivers/network/ether/ipro100/dev/fxp/
H A Dif_fxp.c3148 struct sysctl_oid_list *child, *parent; local
3153 child = SYSCTL_CHILDREN(device_get_sysctl_tree(sc->dev));
3155 SYSCTL_ADD_PROC(ctx, child,
3159 SYSCTL_ADD_PROC(ctx, child,
3163 SYSCTL_ADD_INT(ctx, child,OID_AUTO, "rnr", CTLFLAG_RD, &sc->rnr, 0,
3178 tree = SYSCTL_ADD_NODE(ctx, child, OID_AUTO, "stats", CTLFLAG_RD,
3185 child = SYSCTL_CHILDREN(tree);
3186 FXP_SYSCTL_STAT_ADD(ctx, child, "good_frames",
3188 FXP_SYSCTL_STAT_ADD(ctx, child, "crc_errors",
3190 FXP_SYSCTL_STAT_ADD(ctx, child, "alignment_error
[all...]
/haiku/src/libs/libfdt/
H A Dfdt_overlay.c159 int child; local
170 fdt_for_each_subnode(child, fdto, node) {
171 ret = overlay_adjust_node_phandles(fdto, child, delta);
/haiku/headers/os/interface/
H A DWindow.h112 void AddChild(BView* child, BView* before = NULL);
113 void AddChild(BLayoutItem* child);
114 bool RemoveChild(BView* child);
H A DView.h173 void AddChild(BView* child, BView* before = NULL);
174 bool AddChild(BLayoutItem* child);
175 bool RemoveChild(BView* child);
747 bool _AddChildToList(BView* child,
749 bool _RemoveChildFromList(BView* child);
751 bool _AddChild(BView *child, BView *before);
/haiku/src/add-ons/kernel/file_systems/packagefs/volume/
H A DVolume.cpp1888 for (Node* child = directory->FirstChild(); child != NULL;
1889 child = directory->NextChild(child)) {
1890 NodeWriteLocker childWriteLocker(child);
1891 _AddPackageLinksNode(child);
1903 for (Node* child = directory->FirstChild(); child != NULL;
1904 child = directory->NextChild(child)) {
[all...]
/haiku/src/system/kernel/arch/ppc/
H A Darch_int.cpp401 // get first child
402 device_node *child = NULL; local
403 if (fDeviceManager->get_next_child_node(fNode, NULL, &child)
405 // move to the child node
409 fNode = child;
/haiku/src/system/kernel/arch/m68k/
H A Darch_int.cpp435 // get first child
436 device_node_handle child = NULL;
437 if (fDeviceManager->get_next_child_device(fNode, &child, NULL)
439 // move to the child node
443 fNode = child;
/haiku/headers/private/debugger/value/value_nodes/
H A DBMessageValueNode.h79 BMessageFieldNodeChild *child,
/haiku/src/libs/compat/freebsd_iflib/
H A Dnvpair_impl.h99 const unsigned char *ptr, size_t *leftp, size_t nfds, nvlist_t **child);
/haiku/src/apps/cortex/RouteApp/
H A DRouteAppNodeManager.cpp598 IPersistent* child,
604 DormantNodeIO* io = dynamic_cast<DormantNodeIO*>(child);
629 ConnectionIO* io = dynamic_cast<ConnectionIO*>(child);
655 MessageIO* io = dynamic_cast<MessageIO*>(child);
659 "RouteAppNodeManager: unexpected child '" <<
597 xmlImportChild( IPersistent* child, ImportContext& context) argument
/haiku/src/kits/package/hpkg/
H A DWriterImplBase.cpp203 WriterImplBase::PackageAttribute::AddChild(PackageAttribute* child) argument
205 children.Add(child);
212 while (PackageAttribute* child = children.RemoveHead())
213 delete child;
/haiku/src/kits/tracker/
H A DFilePanelPriv.h140 bool SelectChildInParent(const entry_ref* parent, const node_ref* child);
/haiku/headers/libs/alm/
H A DALMLayout.h134 virtual BLayoutItem* AddView(BView* child);
135 virtual BLayoutItem* AddView(int32 index, BView* child);
/haiku/src/kits/interface/
H A DSplitLayout.cpp351 BSplitLayout::AddView(BView* child) argument
353 return BAbstractLayout::AddView(child);
358 BSplitLayout::AddView(int32 index, BView* child) argument
360 return BAbstractLayout::AddView(index, child);
365 BSplitLayout::AddView(BView* child, float weight) argument
367 return AddView(-1, child, weight);
372 BSplitLayout::AddView(int32 index, BView* child, float weight) argument
374 BLayoutItem* item = AddView(index, child);
/haiku/src/add-ons/kernel/drivers/disk/nvme/libnvme/
H A Dnvme_internal.h239 * Number of child requests still outstanding for this
240 * request which was split into multiple child requests.
264 * Points to the outstanding child requests for a parent request.
265 * Only valid if a request was split into multiple child
271 * Linked-list pointers for a child request in its parent's list.
289 * (SUCCESS) before child requests are submitted. If a child
292 * status once all child requests are completed.
720 struct nvme_request *child);
723 struct nvme_request *child);
[all...]
/haiku/src/add-ons/kernel/bus_managers/pci/
H A Dpci.h28 PCIDev * child; member in struct:PCIBus
36 PCIBus * child; member in struct:PCIDev
/haiku/src/add-ons/kernel/file_systems/nfs4/
H A Dkernel_interface.cpp661 Inode* child = vti->Get(); local
662 if (child == NULL) {
668 child->fInfo.fNames->RemoveName(fromInode->fInfo.fNames, fromName);
669 child->fInfo.fNames->AddName(toInode->fInfo.fNames, toName);
798 Inode* child = vti->Get(); local
799 if (child == NULL) {
805 child->SetOpenState(cookie->fOpenState);
809 = new(std::nothrow) Delegation(data, child,
813 delegation->fFileSystem = child->GetFileSystem();
814 child
[all...]
/haiku/src/add-ons/kernel/network/ppp/shared/libkernelppp/
H A DKPPPStateMachine.cpp379 //! Notification that a child interface failed to go up.
390 //! Notification that a child interface went up successfully.
415 //! Notification that a child interface went down.
429 KPPPInterface *child; local
431 child = Interface().ChildAt(index);
433 if (child && child->IsUp()) {
436 MRU = child->MRU();
437 else if (MRU > child->MRU())
438 MRU = child
[all...]
/haiku/src/add-ons/kernel/drivers/network/ether/broadcom570x/dev/bge/
H A Dif_bge.c6461 struct sysctl_oid_list *child, *schild; local
6467 schild = child = SYSCTL_CHILDREN(tree);
6468 BGE_SYSCTL_STAT_ADD64(ctx, child, "FramesDroppedDueToFilters",
6470 BGE_SYSCTL_STAT_ADD64(ctx, child, "DmaWriteQueueFull",
6472 BGE_SYSCTL_STAT_ADD64(ctx, child, "DmaWriteHighPriQueueFull",
6475 BGE_SYSCTL_STAT_ADD64(ctx, child, "NoMoreRxBDs",
6477 BGE_SYSCTL_STAT_ADD64(ctx, child, "InputDiscards",
6479 BGE_SYSCTL_STAT_ADD64(ctx, child, "InputErrors",
6481 BGE_SYSCTL_STAT_ADD64(ctx, child, "RecvThresholdHit",
6486 child
[all...]
/haiku/src/add-ons/kernel/drivers/network/ether/intel22x/dev/igc/
H A Dif_igc.c2453 struct sysctl_oid_list *child = SYSCTL_CHILDREN(tree); local
2463 SYSCTL_ADD_ULONG(ctx, child, OID_AUTO, "dropped",
2466 SYSCTL_ADD_ULONG(ctx, child, OID_AUTO, "link_irq",
2469 SYSCTL_ADD_ULONG(ctx, child, OID_AUTO, "rx_overruns",
2472 SYSCTL_ADD_ULONG(ctx, child, OID_AUTO, "watchdog_timeouts",
2475 SYSCTL_ADD_PROC(ctx, child, OID_AUTO, "device_control",
2479 SYSCTL_ADD_PROC(ctx, child, OID_AUTO, "rx_control",
2483 SYSCTL_ADD_UINT(ctx, child, OID_AUTO, "fc_high_water",
2486 SYSCTL_ADD_UINT(ctx, child, OID_AUTO, "fc_low_water",
2493 queue_node = SYSCTL_ADD_NODE(ctx, child, OID_AUT
[all...]
/haiku/src/add-ons/kernel/file_systems/netfs/client/
H A DVirtualVolume.cpp88 // remove all child volumes
169 // check, if the volume's root node is a child of our root node
187 // surrender the child volumes reference to us
207 // get the child node of the root node
579 Node* child; local
580 if (!iterator->GetCurrentEntry(&name, &child))
592 buffer->d_ino = child->GetID();
767 // iterate through the child volumes and open subqueries for them
/haiku/src/kits/debugger/user_interface/util/
H A DUiUtils.cpp283 UiUtils::PrintValueNodeGraph(BString& _output, ValueNodeChild* child, argument
287 _output << child->Name();
289 ValueNode* node = child->Node();
443 // first, tokenize the range list to its constituent child ranges.
/haiku/src/kits/debugger/debug_info/
H A DDwarfImageDebugInfo.cpp1463 DebugInfoEntry* child = it.Next();) {
1464 DIENamespace* namespaceEntry = dynamic_cast<DIENamespace*>(child);
1531 DebugInfoEntry* child = it.Next();) {
1533 if (child->IsType()) {
1534 DIEType* type = dynamic_cast<DIEType*>(child);
1538 DIENamespace* nameSpace = dynamic_cast<DIENamespace*>(child);

Completed in 193 milliseconds

1234567891011>>