Searched refs:child (Results 251 - 275 of 292) sorted by relevance

<<1112

/haiku/src/tests/system/network/tcp_shell/
H A Dtcp_shell.cpp566 net_socket_private *child; local
568 && (child = socket->pending_children.RemoveTail()) != NULL) {
569 child->parent = NULL;
573 && (child = socket->connected_children.RemoveTail()) != NULL) {
574 child->parent = NULL;
575 socket_delete(child);
/haiku/src/apps/cortex/Persistence/Wrappers/
H A DMessageIO.cpp249 IPersistent* child,
255 context.reportError("Unexpected child element.\n");
259 MessageIO* childMessageIO = dynamic_cast<MessageIO*>(child);
566 // write child message
248 xmlImportChild( IPersistent* child, ImportContext& context) argument
H A DMediaFormatIO.cpp1284 IPersistent* child,
1287 MediaFormatIO* childAsFormat = dynamic_cast<MediaFormatIO*>(child);
1308 context.reportWarning("MediaFormatIO: Unexpected child element.");
1310 delete child;
1372 context.reportError("MediaFormatIO: bad child element.");
1283 xmlImportChild( IPersistent* child, ImportContext& context) argument
/haiku/src/tests/kits/interface/look/
H A DLook.cpp246 for (int32 i = 0; BView* child = view->ChildAt(i); i++)
247 _InvalidateChildrenAndView(child);
/haiku/src/add-ons/kernel/drivers/network/ether/jmicron2x0/dev/jme/
H A Dif_jme.c987 struct sysctl_oid_list *child, *parent; local
994 child = SYSCTL_CHILDREN(device_get_sysctl_tree(sc->jme_dev));
996 SYSCTL_ADD_PROC(ctx, child, OID_AUTO, "tx_coal_to",
1000 SYSCTL_ADD_PROC(ctx, child, OID_AUTO, "tx_coal_pkt",
1004 SYSCTL_ADD_PROC(ctx, child, OID_AUTO, "rx_coal_to",
1008 SYSCTL_ADD_PROC(ctx, child, OID_AUTO, "rx_coal_pkt",
1012 SYSCTL_ADD_PROC(ctx, child, OID_AUTO, "process_limit",
1087 tree = SYSCTL_ADD_NODE(ctx, child, OID_AUTO, "stats", CTLFLAG_RD,
1094 child = SYSCTL_CHILDREN(tree);
1095 JME_SYSCTL_STAT_ADD32(ctx, child, "good_frame
[all...]
/haiku/src/add-ons/media/media-add-ons/opensound/
H A DOpenSoundNode.cpp1908 BParameterGroup* child = web->MakeGroup("No mixer"); local
1909 child->MakeNullParameter(1, B_MEDIA_UNKNOWN_TYPE, "No Mixer",
1928 BParameterGroup *child = web->MakeGroup(childName); local
1929 _ProcessGroup(child, i, nb);
1979 BParameterGroup* child; local
1987 child = group->MakeGroup(childName);
1988 child->MakeNullParameter(i, B_MEDIA_RAW_AUDIO, childName,
1990 _ProcessGroup(child, i, nb);
/haiku/src/apps/cortex/RouteApp/
H A DRouteApp.cpp307 IPersistent* child,
310 MessageIO* io = dynamic_cast<MessageIO*>(child);
358 context.reportError("RouteApp import: unknown child element");
306 xmlImportChild( IPersistent* child, ImportContext& context) argument
/haiku/src/system/kernel/platform/openfirmware/
H A Dopenfirmware.cpp194 /** Returns the first child of the given node
205 intptr_t child; member in struct:__anon9
206 } args = {"child", 1, 1, node, 0};
211 return args.child;
/haiku/src/add-ons/kernel/drivers/network/ether/ipro1000/dev/e1000/
H A Dif_em.c801 struct sysctl_oid_list *child; local
822 child = SYSCTL_CHILDREN(device_get_sysctl_tree(dev));
824 SYSCTL_ADD_PROC(ctx_list, child, OID_AUTO, "nvm",
828 SYSCTL_ADD_PROC(ctx_list, child, OID_AUTO, "fw_version",
833 SYSCTL_ADD_PROC(ctx_list, child, OID_AUTO, "debug",
837 SYSCTL_ADD_PROC(ctx_list, child, OID_AUTO, "fc",
841 SYSCTL_ADD_PROC(ctx_list, child, OID_AUTO, "reg_dump",
845 SYSCTL_ADD_PROC(ctx_list, child, OID_AUTO, "rs_dump",
1058 SYSCTL_ADD_PROC(ctx_list, child, OID_AUTO, "eee_control",
4230 struct sysctl_oid_list *child local
[all...]
/haiku/headers/private/package/hpkg/
H A DWriterImplBase.h95 void AddChild(PackageAttribute* child);
/haiku/src/system/kernel/disk_device_manager/
H A DKDiskDeviceManager.cpp1235 // parent busy => child busy
1243 // child [descendant] busy => parent descendant busy
1376 for (int32 i = 0; KPartition* child = partition->ChildAt(i); i++) {
1377 _ScanPartition(child, restrictScan);
1450 for (int32 i = 0; KPartition* child = partition->ChildAt(i); i++)
1451 _ScanPartition(child, restrictScan);
/haiku/src/servers/debug/
H A DDebugServer.cpp130 BDriverParameter child = iterator.Next(); local
131 if (!match_team_name(teamName, child.Name()))
134 if (child.CountValues() > 0) {
135 if (action_for_string(child.ValueAt(0), tempAction) == B_OK) {
/haiku/headers/posix/
H A Dpthread.h196 void (*child)(void));
/haiku/src/kits/debugger/dwarf/
H A DDebugInfoEntry.h71 virtual status_t AddChild(DebugInfoEntry* child);
H A DDebugInfoEntry.cpp152 DebugInfoEntry::AddChild(DebugInfoEntry* child) argument
/haiku/src/tests/kits/storage/
H A DQueryTest.cpp237 for (int32 i = 0; PredicateNode *child = childAt(i); i++)
238 delete child;
244 for (int32 i = 0; PredicateNode *child = childAt(i); i++) {
245 error = child->push(query);
257 ListNode &addChild(PredicateNode *child) argument
259 if (child)
260 children.AddItem(child);
/haiku/src/kits/interface/
H A DWindow.cpp375 if (BView* child = dynamic_cast<BView*>(obj))
376 AddChild(child);
542 BWindow::AddChild(BView* child, BView* before) argument
546 fTopView->AddChild(child, before);
551 BWindow::AddChild(BLayoutItem* child) argument
555 fTopView->AddChild(child);
560 BWindow::RemoveChild(BView* child) argument
566 return fTopView->RemoveChild(child);
1255 // child->_DrawAfterChildren() actually works like intended.
3167 adapt the size of all its child view
3925 BView* child = view->fFirstChild; local
[all...]
H A DOutlineListView.cpp1163 BListItem* child = FullListItemAt(superIndex + 1); local
1164 if (child == NULL || child->OutlineLevel() <= super->OutlineLevel())
/haiku/src/apps/launchbox/
H A DPadView.cpp179 for (int32 i = 0; BView* child = ChildAt(i); i++) {
180 if (child->Frame().Contains(where)) {
/haiku/src/apps/cortex/ValControl/
H A DValControl.cpp513 // access child-view ValCtrlLayoutEntry
534 ValControl::_IndexOf(BView* child) const
537 if (fLayoutSet[n].pView == child)
599 // ref'd view must already be a child +++++
604 // view ptr must be 0, or a ValControlSegment that's already a child
/haiku/src/libs/alm/
H A DALMLayout.cpp758 BALMLayout::AddView(BView* child) argument
760 return AddView(-1, child);
765 BALMLayout::AddView(int32 index, BView* child) argument
767 return BAbstractLayout::AddView(index, child);
/haiku/src/preferences/mail/
H A DConfigWindow.cpp863 while (BView* child = fConfigView->ChildAt(0)) {
864 fConfigView->RemoveChild(child);
865 delete child;
/haiku/src/apps/mediaconverter/
H A DMediaConverterWindow.cpp122 OutputBox(border_style border, BView* child);
134 OutputBox::OutputBox(border_style border, BView* child) argument
136 BBox(border, child)
/haiku/src/add-ons/kernel/file_systems/reiserfs/
H A DIterators.cpp46 of a node and the index of a child node.
242 - \c FORWARD: Forward/to the right. Goes to the next child node of the
244 - \c BACKWARDS: Forward/to the right. Goes to the previous child node of
247 the current node. The current node is the child node, it is pointed
249 - \c DOWN: Down one level (in leaf direction). Goes to the child node of
251 the 0th child node of the new current node (unless it is a leaf node).
291 const DiskChild *child = internal->ChildAt(fIndex); local
292 if (child) {
294 error = fTree->GetNode(child->GetBlockNumber(), &node);
422 This means, the current node is Put() and its block number and child nod
[all...]
/haiku/src/kits/tracker/
H A DFilePanelPriv.cpp344 // if not a directory, set to the parent, and select the child
346 node_ref child; local
347 if (entry.GetNodeRef(&child) != B_OK)
360 const_cast<const node_ref*>(&child)),
1473 // Make sure the child gets selected in the new view
1531 TFilePanel::SelectChildInParent(const entry_ref*, const node_ref* child) argument
1539 BPose* pose = PoseView()->FindPose(child, &index);

Completed in 248 milliseconds

<<1112