Searched refs:child (Results 151 - 175 of 292) sorted by relevance

1234567891011>>

/haiku/headers/private/kernel/util/
H A DMinMaxHeap.h384 int child = 2 * link->fIndex + 1;
385 if (child < lastElement) {
386 bool isSmaller = sCompare(sGetLink(tree[child])->fKey, link->fKey);
388 current = child;
391 child = 2 * link->fIndex + 2;
392 if (child < lastElement) {
393 bool isSmaller = sCompare(sGetLink(tree[child])->fKey,
396 current = child;
/haiku/headers/os/interface/
H A DBox.h23 BView* child = NULL);
24 BBox(border_style border, BView* child);
/haiku/src/apps/debuganalyzer/gui/table/
H A DTreeTable.cpp453 bool AddChild(TreeTableNode* child, int32 index);
458 int32 IndexOf(TreeTableNode* child);
517 for (int32 i = 0; TreeTableNode* child = fChildren->ItemAt(i); i++)
518 child->DetachRow();
532 TreeTableNode::AddChild(TreeTableNode* child, int32 index) argument
540 return fChildren->AddItem(child, index);
566 TreeTableNode::IndexOf(TreeTableNode* child) argument
568 return fChildren != NULL ? fChildren->IndexOf(child) : -1;
994 if (TreeTableNode* child = node->ChildAt(i))
995 UpdateRow(child
1055 void* child = fModel->ChildAt(parentNode->ModelObject(), i); local
[all...]
/haiku/src/system/kernel/disk_device_manager/
H A DKPartition.cpp915 KPartition* child = new(std::nothrow) KPartition(id);
916 if (child == NULL)
919 child->SetOffset(offset);
920 child->SetSize(size);
922 status_t error = AddChild(child, index);
926 delete child;
928 *_child = child;
962 KPartition::RemoveChild(KPartition* child) argument
964 if (child) {
965 int32 index = fChildren.IndexOf(child);
1546 FireChildAdded(KPartition* child, int32 index) argument
1558 FireChildRemoved(KPartition* child, int32 index) argument
[all...]
H A DKDiskSystem.cpp242 KDiskSystem::ResizeChild(KPartition* child, off_t size, disk_job_id job) argument
260 KDiskSystem::MoveChild(KPartition* child, off_t offset, disk_job_id job) argument
337 KPartition **child, partition_id childID)
346 KDiskSystem::DeleteChild(KPartition* child, disk_job_id job) argument
335 CreateChild(KPartition* partition, off_t offset, off_t size, const char* type, const char* name, const char* parameters, disk_job_id job, KPartition **child, partition_id childID) argument
/haiku/src/add-ons/kernel/network/ppp/shared/libkernelppp/
H A DKPPPInterface.cpp702 KPPPInterface *child = ChildAt(controlInfo->index); local
703 if (!child)
706 return child->Control(controlInfo->op, controlInfo->data, controlInfo->length);
926 KPPPInterface *child = ChildAt(control->index); local
927 if (!child)
930 return child->Control(control->op, control->data, control->length);
1176 //! Adds a new child interface (used for multilink interfaces).
1178 KPPPInterface::AddChild(KPPPInterface *child) argument
1180 TRACE("KPPPInterface: AddChild(%lX)\n", child ? child
1198 RemoveChild(KPPPInterface *child) argument
1225 KPPPInterface *child = fChildren.ItemAt(index); local
[all...]
/haiku/src/apps/cortex/Persistence/
H A DIPersistent.h72 // // any child objects) to the given stream. use the
97 // implement this method to write any child objects, using
138 // by child elements.)
150 // to the child object.
153 IPersistent* child,
H A DStringContent.cpp82 IPersistent* child,
84 context.reportError("StringContent: child not expected");
81 xmlImportChild( IPersistent* child, ImportContext& context) argument
/haiku/src/apps/cortex/Persistence/Wrappers/
H A DFlatMessageIO.h129 IPersistent* child,
H A DMediaFormatIO.h131 IPersistent* child,
H A DMessageIO.h122 IPersistent* child,
/haiku/src/apps/cortex/RouteApp/
H A DLiveNodeIO.h144 IPersistent* child,
H A DDormantNodeIO.h114 IPersistent* child,
H A DConnectionIO.h121 IPersistent* child,
/haiku/src/kits/interface/
H A DSplitLayout.h45 virtual BLayoutItem* AddView(BView* child);
46 virtual BLayoutItem* AddView(int32 index, BView* child);
47 virtual BLayoutItem* AddView(BView* child, float weight);
48 virtual BLayoutItem* AddView(int32 index, BView* child,
/haiku/src/kits/debugger/source_language/c_family/
H A DCLanguageExpressionEvaluator.h82 ValueNodeChild* child);
/haiku/headers/private/debugger/model/
H A DExpressionInfo.h45 void SetToValueNode(ValueNodeChild* child);
/haiku/src/tests/kits/net/service/
H A DTestServer.cpp189 // The job of this method is to spawn a child process that will later be killed
197 pid_t child = ::fork(); local
198 if (child < 0)
201 if (child > 0) {
202 fChildPid = child;
206 // This is the child process. We can exec image provided in args.
234 // Start a child testserver.py process with the random TCP port chosen by
242 // This is the child process. We can exec the server process.
255 // After this the child process has started. It may take a short amount of
256 // time before the child proces
[all...]
/haiku/src/add-ons/kernel/drivers/input/hid_shared/
H A DHIDCollection.h28 status_t AddChild(HIDCollection *child);
/haiku/src/libs/compat/freebsd_network/compat/sys/
H A Dhaiku-module.h34 typedef int bus_child_location_str_t(device_t dev __unused, device_t child,
36 typedef int bus_child_pnpinfo_str_t(device_t dev __unused, device_t child,
39 typedef int bus_print_child_t(device_t dev, device_t child);
40 typedef int bus_read_ivar_t(device_t dev, device_t child __unused, int which,
/haiku/headers/private/kernel/disk_device_manager/
H A DKPartition.h145 KPartition **child = NULL);
147 bool RemoveChild(KPartition *child);
209 void FireChildAdded(KPartition *child, int32 index);
210 void FireChildRemoved(KPartition *child, int32 index);
/haiku/src/tests/kits/net/netservices2/
H A DTestServer.cpp178 // The job of this method is to spawn a child process that will later be killed
187 pid_t child = ::fork(); local
188 if (child < 0)
191 if (child > 0) {
192 fChildPid = child;
196 // This is the child process. We can exec image provided in args.
218 // Start a child testserver.py process with the random TCP port chosen by
233 // This is the child process. We can exec the server process.
246 // After this the child process has started. It may take a short amount of
247 // time before the child proces
[all...]
/haiku/src/add-ons/kernel/drivers/display/
H A Ddisplay_adapter.cpp18 ( _DOD Method to retrieve information about child output devices
19 - You can already do this by listing child devices )
210 acpi_handle child = NULL; local
211 while (gAcpi->get_next_object(ACPI_TYPE_DEVICE, acpiHandle, &child)
215 if(gAcpi->get_name(child, 1, name, 5) == B_OK)
217 if (gAcpi->evaluate_object(child, "_ADR", NULL, &result, sizeof(result))
/haiku/src/add-ons/kernel/partitioning_systems/atari/
H A Datari.cpp176 TRACE(("atari: child partition exceeds existing space (%lld bytes)\n", p->Size()*SECTSZ));
186 partition_data *child = create_child_partition(partition->id, index, local
189 if (child == NULL) {
190 TRACE(("atari: Creating child at index %ld failed\n", index - 1));
196 child->type = strdup(type);
197 child->block_size = SECTSZ;
/haiku/src/add-ons/kernel/drivers/network/ether/vt612x/dev/vge/
H A Dif_vge.c2501 struct sysctl_oid_list *child, *parent; local
2507 child = SYSCTL_CHILDREN(device_get_sysctl_tree(sc->vge_dev));
2509 SYSCTL_ADD_INT(ctx, child, OID_AUTO, "int_holdoff",
2511 SYSCTL_ADD_INT(ctx, child, OID_AUTO, "rx_coal_pkt",
2513 SYSCTL_ADD_INT(ctx, child, OID_AUTO, "tx_coal_pkt",
2527 tree = SYSCTL_ADD_NODE(ctx, child, OID_AUTO, "stats", CTLFLAG_RD,
2534 child = SYSCTL_CHILDREN(tree);
2535 VGE_SYSCTL_STAT_ADD32(ctx, child, "frames",
2537 VGE_SYSCTL_STAT_ADD32(ctx, child, "good_frames",
2539 VGE_SYSCTL_STAT_ADD32(ctx, child, "fifo_oflow
[all...]

Completed in 130 milliseconds

1234567891011>>