Searched refs:parent (Results 176 - 200 of 667) sorted by relevance

1234567891011>>

/haiku-fatelf/src/tests/system/kernel/device_manager/playground/
H A Dbus.cpp40 supports_device(device_node* parent) argument
43 if (gDeviceManager->get_attr_string(parent, B_DEVICE_BUS, &bus, false)
55 register_device(device_node* parent) argument
63 return gDeviceManager->register_node(parent, BUS_MODULE_NAME, attrs, NULL,
H A Ddevice_manager.h69 status_t (*register_node)(device_node *parent, const char *moduleName,
78 status_t (*get_next_child_node)(device_node *parent,
120 float (*supports_device)(device_node *parent);
121 status_t (*register_device)(device_node *parent);
/haiku-fatelf/src/tools/docbook/libxml2/include/libxml/
H A Dc14n.h87 xmlNodePtr parent);
/haiku-fatelf/src/tools/stubgen/
H A Dtable.h74 struct syntaxelem *parent; /* parent class */ member in struct:syntaxelem
/haiku-fatelf/src/libs/compat/freebsd_network/
H A Dshared.h18 struct device *parent; member in struct:device
H A Dfbsd_busdma_x86.c65 bus_dma_tag_t parent; member in struct:bus_dma_tag
169 dmat = dmat->parent;
218 bus_dma_tag_create(bus_dma_tag_t parent, bus_size_t alignment, argument
243 newtag->parent = parent;
266 /* Take into account any restrictions imposed by our parent tag */
267 if (parent != NULL) {
268 newtag->lowaddr = MIN(parent->lowaddr, newtag->lowaddr);
269 newtag->highaddr = MAX(parent->highaddr, newtag->highaddr);
271 newtag->boundary = parent
344 bus_dma_tag_t parent; local
[all...]
/haiku-fatelf/headers/private/userlandfs/fuse/
H A Dfuse_lowlevel.h178 * @param parent inode number of the parent directory
181 void (*lookup) (fuse_req_t req, fuse_ino_t parent, const char *name);
275 * @param parent inode number of the parent directory
280 void (*mknod) (fuse_req_t req, fuse_ino_t parent, const char *name,
291 * @param parent inode number of the parent directory
295 void (*mkdir) (fuse_req_t req, fuse_ino_t parent, const char *name,
305 * @param parent inod
[all...]
/haiku-fatelf/src/add-ons/kernel/file_systems/packagefs/
H A DDirectory.cpp34 Directory::Init(Directory* parent, const char* name, uint32 flags) argument
36 status_t error = Node::Init(parent, name, flags);
/haiku-fatelf/src/apps/debuganalyzer/gui/main_window/
H A DTeamsPage.cpp69 MainWindow::TeamsPage::TeamsPage(MainWindow* parent) argument
72 fParent(parent),
/haiku-fatelf/src/apps/debuganalyzer/gui/table/
H A DAbstractTable.h84 virtual void MouseDown(BColumnListView* parent, BRow* row,
87 virtual void MouseUp(BColumnListView* parent, BRow* row,
/haiku-fatelf/src/apps/diskusage/
H A DSnapshot.cpp33 parent(NULL),
80 if (parent == NULL) {
/haiku-fatelf/src/apps/packageinstaller/
H A DPackageStatus.cpp50 const char *trailing, BHandler *parent)
55 fParent(parent)
85 // If we have a parent defined, forward this message
49 PackageStatus(const char *title, const char *label, const char *trailing, BHandler *parent) argument
/haiku-fatelf/src/bin/
H A Ddiff_zip.cpp26 static Node* create_node(Directory* parent, const string& name,
58 Node(Directory* parent, const string& name, const struct stat& st) argument
59 : fParent(parent),
135 Directory(Directory* parent, const string& name, const struct stat& st) argument
136 : Node(parent, name, st),
287 create_node(Directory* parent, const string& name, const struct stat& st) argument
290 return new Directory(parent, name, st);
291 return new Node(parent, name, st);
/haiku-fatelf/src/preferences/appearance/
H A DFakeScrollBar.cpp185 BView* parent = Parent();
188 if (parent != NULL) {
189 // If the parent is a BBox, the group parent is the parent of the BBox
190 BBox* box = dynamic_cast<BBox*>(parent);
193 parent = box->Parent();
195 if (parent != NULL) {
196 BBox* box = dynamic_cast<BBox*>(parent);
198 // If the parent i
[all...]
/haiku-fatelf/src/tests/system/libroot/posix/posixtestsuite/conformance/interfaces/pthread_atfork/
H A D1-2.c23 * pthread_atfork registers the 'parent' handler to be called after fork()
24 * processing in the context of the fork() calling thread in the parent process.
105 void parent( void ) function
169 FAILED( "parent handler was not called in the thread s context" );
212 ret = pthread_atfork( prepare, parent, child );
H A D3-2.c92 void parent( void ) function
156 FAILED( "parent handler skipped some rounds" );
203 ret = pthread_atfork( prepare, parent, child );
/haiku-fatelf/src/apps/debugger/dwarf/
H A DDwarfUtils.cpp188 DebugInfoEntry* parent = entry->Parent(); local
189 while (parent != NULL) {
190 if (parent->IsNamespace()) {
192 GetFullyQualifiedDIEName(parent, parentName);
200 parent = parent->Parent();
/haiku-fatelf/src/apps/debugger/value/value_nodes/
H A DArrayValueNode.cpp169 AbstractArrayValueNode* parent, const BString& name, int64 elementIndex)
171 fParent(parent),
200 ArrayValueNodeChild::ArrayValueNodeChild(AbstractArrayValueNode* parent, argument
203 AbstractArrayValueNodeChild(parent, name, elementIndex),
227 // get the parent (== array) location
271 AbstractArrayValueNode* parent, const BString& name, int64 elementIndex,
274 AbstractArrayValueNodeChild(parent, name, elementIndex),
319 // the parent's location.
168 AbstractArrayValueNodeChild( AbstractArrayValueNode* parent, const BString& name, int64 elementIndex) argument
270 InternalArrayValueNodeChild( AbstractArrayValueNode* parent, const BString& name, int64 elementIndex, ArrayType* type) argument
/haiku-fatelf/src/apps/cortex/TipManager/
H A DTipManagerImpl.cpp87 // walk up the view's parent tree, building a child-
157 // walk up the view's parent tree, building a child-
245 _ViewEntry* parent = viewEntry->m_parent; local
247 parent->m_childViews.erase(it);
310 // get frame rect (in parent view's coordinates)
392 BView* parent = view;
393 while(parent && parent->Parent())
394 parent = parent
[all...]
/haiku-fatelf/src/apps/deskbar/
H A DTeamMenuItem.cpp546 TExpandoMenuBar* parent = static_cast<TExpandoMenuBar*>(Menu()); local
547 int myindex = parent->IndexOf(this) + 1;
556 parent->AddItem(windowItem, myindex + childIndex);
562 parent->SizeWindow(-1);
570 TExpandoMenuBar* parent = static_cast<TExpandoMenuBar*>(Menu()); local
573 int childIndex = parent->IndexOf(this) + 1;
574 while (!parent->SubmenuAt(childIndex) && childIndex
575 < parent->CountItems()) {
577 (parent->RemoveItem(childIndex));
584 parent
598 TExpandoMenuBar* parent = static_cast<TExpandoMenuBar*>(Menu()); local
[all...]
H A DInlineScrollView.cpp148 TInlineScrollView* parent = dynamic_cast<TInlineScrollView*>(Parent());
149 if (parent == NULL)
154 parent->GetSteps(&smallStep, &largeStep);
161 parent->ScrollBy(-largeStep);
163 parent->ScrollBy(-smallStep);
277 TInlineScrollView* parent = dynamic_cast<TInlineScrollView*>(Parent());
278 if (parent == NULL)
283 parent->GetSteps(&smallStep, &largeStep);
290 parent->ScrollBy(-largeStep);
292 parent
[all...]
/haiku-fatelf/src/tools/docbook/libxslt/libxslt/
H A Dtemplates.c184 * @parent: the content parent
186 * Evaluate a template string value, i.e. the parent list is interpreter
195 xmlNodePtr parent) {
199 if ((ctxt == NULL) || (node == NULL) || (parent == NULL))
202 if (parent->children == NULL)
220 /* OPTIMIZE TODO: if parent->children consists only of text-nodes. */
221 xsltApplyOneTemplate(ctxt, node, parent->children, NULL, NULL);
455 xsltTransformError(ctxt, NULL, cur->parent,
491 ns = xsltGetPlainNamespace(ctxt, cur->parent, cu
194 xsltEvalTemplateString(xsltTransformContextPtr ctxt, xmlNodePtr node, xmlNodePtr parent) argument
[all...]
/haiku-fatelf/src/add-ons/kernel/drivers/audio/emuxki/
H A Dmulti.c198 emuxki_create_group_control(multi_dev *multi, int32 *index, int32 parent, argument
203 multi->controls[i].mix_control.parent = parent;
214 emuxki_create_gpr_control(multi_dev *multi, int32 *index, int32 parent, int32 string, argument
220 control.mix_control.parent = parent;
259 uint32 i = 0, index = 0, count, id, parent, parent2, parent3; local
263 parent = emuxki_create_group_control(multi, &index, 0, 0, "Playback");
270 parent2 = emuxki_create_group_control(multi, &index, parent, 0, gpr->name);
277 parent
[all...]
/haiku-fatelf/src/add-ons/kernel/busses/ata/legacy_sata/
H A Dlegacy_sata.c62 controller_supports(device_node *parent) argument
70 if (sDeviceManager->get_attr_string(parent, B_DEVICE_BUS, &bus, false) != B_OK)
77 if ((res = sDeviceManager->get_attr_uint16(parent, B_DEVICE_VENDOR_ID, &vendor_id, false)) != B_OK
78 || (res = sDeviceManager->get_attr_uint16(parent, B_DEVICE_ID, &device_id, false)) != B_OK) {
123 controller_probe(device_node *parent) argument
141 sDeviceManager->get_driver(parent, (driver_module_info **)&pci, (void **)&device);
193 res = sATAAdapter->detect_controller(pci, device, parent, bus_master_base,
/haiku-fatelf/src/add-ons/kernel/busses/ide/legacy_sata/
H A Dlegacy_sata.c64 controller_supports(device_node *parent) argument
72 if (dm->get_attr_string(parent, B_DEVICE_BUS, &bus, false) != B_OK)
79 if ((res=dm->get_attr_uint16(parent, B_DEVICE_VENDOR_ID, &vendor_id, false)) != B_OK
80 || (res=dm->get_attr_uint16(parent, B_DEVICE_ID, &device_id, false)) != B_OK) {
125 controller_probe(device_node *parent) argument
143 dm->get_driver(parent, (driver_module_info **)&pci, (void **)&device);
195 res = ide_adapter->detect_controller(pci, device, parent, bus_master_base,

Completed in 160 milliseconds

1234567891011>>