Searched refs:parent (Results 151 - 175 of 666) sorted by relevance

1234567891011>>

/haiku/src/tests/kits/shared/
H A DNaturalCompareTest.cpp70 NaturalCompareTest::AddTests(BTestSuite& parent) argument
77 parent.addTest("NaturalCompareTest", &suite);
/haiku/src/tests/system/network/posixnet/
H A DGetAddrInfo.cpp70 GetAddrInfoTest::AddTests(BTestSuite& parent) argument
79 parent.addTest("GetAddrInfoTest", &suite);
H A DSocketTests.cpp52 void SocketTests::AddTests(BTestSuite &parent) { argument
59 parent.addTest("SocketTests", &suite);
/haiku/src/tests/kits/interface/layout/widget_layout_test/tests/
H A DScrollBarTest.cpp114 // We need to get the parent of the actually selected button, since
119 View* parent = (selectedButton ? selectedButton->Parent() : NULL); local
121 parent);
/haiku/src/preferences/appearance/
H A DFakeScrollBar.cpp164 BView* parent = Parent();
167 if (parent != NULL) {
168 // If the parent is a BBox, the group parent is the parent of the BBox
169 BBox* box = dynamic_cast<BBox*>(parent);
172 parent = box->Parent();
174 if (parent != NULL) {
175 BBox* box = dynamic_cast<BBox*>(parent);
177 // If the parent i
[all...]
/haiku/src/tests/apps/haikudepot/
H A DTarArchiveServiceTest.cpp92 TarArchiveServiceTest::AddTests(BTestSuite& parent) argument
101 parent.addTest("TarArchiveServiceTest", &suite);
H A DJwtTokenHelperTest.cpp65 JwtTokenHelperTest::AddTests(BTestSuite& parent) argument
79 parent.addTest("JwtTokenHelperTest", &suite);
/haiku/src/tests/kits/net/service/
H A DGeolocationTest.cpp49 GeolocationTest::AddTests(BTestSuite& parent) argument
58 parent.addTest("GeolocationTest", &suite);
/haiku/src/tests/kits/locale/
H A DNumberFormatTest.cpp68 NumberFormatTest::AddTests(BTestSuite& parent) argument
82 parent.addTest("NumberFormatTest", &suite);
/haiku/src/apps/haikudepot/ui/
H A DSettingsWindow.cpp32 SettingsWindow::SettingsWindow(BWindow* parent, Model* model) argument
40 AddToSubset(parent);
/haiku/src/add-ons/kernel/file_systems/ramfs/
H A DEntry.cpp14 Entry::Entry(const char *name, Node *node, Directory *parent) argument
15 : fParent(parent),
/haiku/src/apps/cortex/ValControl/
H A DValControlDigitSegment.cpp180 NumericValControl* numericParent = dynamic_cast<NumericValControl*>(parent());
183 // adjust value for parent:
216 BBitmap* pBufferBitmap = parent()->backBuffer();
217 BView* pView = pBufferBitmap ? parent()->backBufferView() : this;
247 if(parent()->IsEnabled()) {
279 DrawBitmap(parent()->backBuffer(), b, b);
286 // must have parent at this point +++++
326 ASSERT(parent());
327 m_yOffset = parent()->baselineOffset();
333 m_digitPadding = parent()
[all...]
/haiku/src/add-ons/kernel/drivers/power/acpi_lid/
H A Dacpi_lid.cpp202 acpi_lid_support(device_node *parent) argument
208 // make sure parent is really the ACPI bus manager
209 if (sDeviceManager->get_attr_string(parent, B_DEVICE_BUS, &bus, false))
216 if (sDeviceManager->get_attr_uint32(parent, ACPI_DEVICE_TYPE_ITEM,
223 if (sDeviceManager->get_attr_string(parent, ACPI_DEVICE_HID_ITEM, &hid,
251 device_node *parent; local
260 parent = sDeviceManager->get_parent_node(node);
261 sDeviceManager->get_driver(parent, (driver_module_info **)&device->acpi,
263 sDeviceManager->put_node(parent);
/haiku/src/add-ons/kernel/drivers/power/acpi_ac/
H A Dacpi_ac.cpp156 acpi_ac_support(device_node *parent) argument
162 // make sure parent is really the ACPI bus manager
163 if (sDeviceManager->get_attr_string(parent, B_DEVICE_BUS, &bus, false))
170 if (sDeviceManager->get_attr_uint32(parent, ACPI_DEVICE_TYPE_ITEM,
177 if (sDeviceManager->get_attr_string(parent, ACPI_DEVICE_HID_ITEM, &hid,
205 device_node *parent; local
214 parent = sDeviceManager->get_parent_node(node);
215 sDeviceManager->get_driver(parent, (driver_module_info **)&device->acpi,
217 sDeviceManager->put_node(parent);
/haiku/src/apps/devices/
H A DDevicesView.h60 virtual void AddChildrenToOutlineByConnection(Device* parent);
61 virtual void AddDeviceAndChildren(device_node_cookie* node, Device* parent);
/haiku/src/add-ons/kernel/file_systems/userlandfs/server/fuse/
H A DFUSELowLevel.cpp84 fuse_ll_lookup(const fuse_lowlevel_ops* ops, fuse_ino_t parent, const char *name, argument
91 ops->lookup(&request, parent, name);
143 fuse_ll_mkdir(const fuse_lowlevel_ops* ops, fuse_ino_t parent, const char *name, argument
150 ops->mkdir(&request, parent, name, mode);
157 fuse_ll_unlink(const fuse_lowlevel_ops* ops, fuse_ino_t parent, const char *name) argument
163 ops->unlink(&request, parent, name);
170 fuse_ll_rmdir(const fuse_lowlevel_ops* ops, fuse_ino_t parent, const char *name) argument
176 ops->rmdir(&request, parent, name);
183 fuse_ll_symlink(const fuse_lowlevel_ops* ops, const char* link, fuse_ino_t parent, argument
190 ops->symlink(&request, link, parent, nam
197 fuse_ll_rename(const fuse_lowlevel_ops* ops, fuse_ino_t parent, const char *name, fuse_ino_t newparent, const char *newname) argument
416 fuse_ll_create(const fuse_lowlevel_ops* ops, fuse_ino_t parent, const char *name, mode_t mode, struct fuse_file_info *fi, fuse_ino_t& ino) argument
[all...]
/haiku/src/apps/debugger/user_interface/gui/teams_window/
H A DTeamsListView.cpp83 TeamsColumn::DrawField(BField* field, BRect rect, BView* parent) argument
116 parent->TruncateString(&truncatedString, fTruncateMode, width + 2);
123 parent->SetDrawingMode(B_OP_ALPHA);
124 parent->DrawBitmap(bitmap, BPoint(x, y));
125 parent->SetDrawingMode(B_OP_OVER);
129 DrawString(bitmapField->ClippedString(), parent, r);
138 parent->TruncateString(&truncatedString, fTruncateMode, width + 2);
143 DrawString(stringField->ClippedString(), parent, rect);
149 TeamsColumn::GetPreferredWidth(BField *_field, BView* parent) const
155 float parentWidth = Inherited::GetPreferredWidth(_field, parent);
184 InitTextMargin(BView* parent) argument
[all...]
/haiku/headers/os/drivers/
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,
105 status_t (*find_child_node)(device_node *parent,
119 float (*supports_device)(device_node *parent);
120 status_t (*register_device)(device_node *parent);
/haiku/src/apps/drivesetup/
H A DChangeParametersPanel.cpp113 BPartition* parent)
123 else if (parent != NULL)
124 fSupportsName = parent->SupportsChildName();
134 if (parent != NULL) {
135 while (parent->GetNextSupportedChildType(&cookie, &supportedType)
112 CreateChangeControls(BPartition* partition, BPartition* parent) argument
/haiku/src/add-ons/kernel/busses/ata/highpoint_ide_pci/
H A Dhighpoint_ide_pci.cpp225 device_node *parent = sDeviceManager->get_parent_node(node); local
226 sDeviceManager->get_driver(parent, (driver_module_info **)&pci, (void **)&pci_device);
318 probe_controller(device_node *parent) argument
321 result = sATAAdapter->probe_controller(parent,
338 supports_device(device_node *parent) argument
348 // make sure parent is an PCI IDE mass storage host adapter device node
349 if (sDeviceManager->get_attr_string(parent, B_DEVICE_BUS, &bus, false) != B_OK
350 || sDeviceManager->get_attr_uint16(parent, B_DEVICE_TYPE, &baseClass, false) != B_OK
351 || sDeviceManager->get_attr_uint16(parent, B_DEVICE_SUB_TYPE, &subClass, false) != B_OK
352 || sDeviceManager->get_attr_uint16(parent, B_DEVICE_VENDOR_I
[all...]
/haiku/src/tests/system/network/tcp_shell/
H A Dtcp_shell.cpp64 struct net_socket *parent; member in struct:net_socket_private
322 if (socket->parent != NULL)
323 panic("socket still has a parent!");
490 net_socket_private *parent = (net_socket_private *)_parent; local
492 MutexLocker locker(parent->lock);
497 if (parent->child_count > 3 * parent->max_backlog / 2)
501 status_t status = socket_create(parent->family, parent->type, parent
527 net_socket_private *parent = (net_socket_private *)_parent; local
546 net_socket_private *parent = (net_socket_private *)_parent; local
597 net_socket_private *parent = (net_socket_private *)socket_private->parent; local
[all...]
/haiku/src/add-ons/kernel/drivers/disk/mmc/
H A Dmmc_disk.cpp78 mmc_disk_supports_device(device_node* parent) argument
82 if (sDeviceManager->get_attr_string(parent, B_DEVICE_BUS, &bus,
93 if (sDeviceManager->get_attr_uint8(parent, kMmcTypeAttribute,
101 TRACE("SD card found, parent: %p\n", parent);
103 TRACE("SDHC card found, parent: %p\n", parent);
137 error = info->mmc->do_io(info->parent, info->parentCookie, info->rca,
155 status_t error = info->mmc->execute_command(info->parent,
183 info->mmc->execute_command(info->parent, inf
[all...]
/haiku/src/apps/packageinstaller/
H A DPackageItem.h68 BDirectory parent; member in struct:ItemState
76 PackageItem(BFile* parent, const BString& path,
83 virtual void SetTo(BFile* parent, const BString& path,
119 PackageDirectory(BFile* parent, const BString& path,
131 PackageScript(BFile* parent, const BString& path,
156 PackageFile(BFile* parent, const BString& path,
178 PackageLink(BFile* parent, const BString& path,
/haiku/src/kits/debugger/dwarf/
H A DDwarfUtils.cpp209 DebugInfoEntry* parent = entry->Parent(); local
210 while (parent != NULL) {
211 if (parent == requestingEntry)
213 if (parent->IsNamespace()) {
215 GetFullyQualifiedDIEName(parent, parentName);
223 parent = parent->Parent();
/haiku/src/add-ons/kernel/busses/ata/promise_tx2/
H A Dpromise_tx2.c176 publish_controller(device_node *parent, uint16 bus_master_base, uint8 intnum, argument
208 return sDeviceManager->register_node(parent,
217 device_node *parent, uint16 bus_master_base, int8 intnum,
233 return publish_controller(parent, bus_master_base, intnum, resources,
240 probe_controller(device_node *parent) argument
254 if (sDeviceManager->get_driver(parent, (driver_module_info **)&pci,
271 status = detect_controller(pci, device, parent, bus_master_base, intnum,
216 detect_controller(pci_device_module_info *pci, pci_device *pci_device, device_node *parent, uint16 bus_master_base, int8 intnum, device_node **node) argument

Completed in 397 milliseconds

1234567891011>>