Searched refs:parent (Results 476 - 500 of 666) sorted by relevance

<<11121314151617181920>>

/haiku/src/tests/kits/shared/
H A DJsonEndToEndTest.cpp250 JsonEndToEndTest::AddTests(BTestSuite& parent) argument
293 parent.addTest("JsonEndToEndTest", &suite);
/haiku/src/apps/haikudepot/ui/
H A DScreenshotWindow.cpp40 ScreenshotWindow::ScreenshotWindow(BWindow* parent, BRect frame, Model* model) argument
50 AddToSubset(parent);
/haiku/src/add-ons/kernel/busses/pci/designware/
H A DDWPCIController.h189 static float SupportsDevice(device_node* parent);
190 static status_t RegisterDevice(device_node* parent);
/haiku/src/kits/storage/mime/
H A DDatabaseLocation.cpp777 BDirectory parent(WritableDirectory());
778 status_t result = parent.InitCheck();
783 if (BEntry(&parent, superTypeName).Exists())
784 result = superTypeDirectory.SetTo(&parent, superTypeName);
786 result = parent.CreateDirectory(superTypeName, &superTypeDirectory);
/haiku/src/add-ons/kernel/file_systems/ntfs/utils/
H A Dutils.c522 * get parent
523 * if parent is 5 (/) stop
524 * get inode of parent
538 MFT_REF parent = FILE_root; local
572 parent = le64_to_cpu(attr->parent_directory);
592 //ntfs_log_debug("parent = %lld\n", MREF(parent));
600 if (MREF(parent) == FILE_root) { /* The root directory, stop. */
605 inode = ntfs_inode_open(vol, parent);
608 (unsigned long long)MREF(parent));
[all...]
/haiku/src/add-ons/kernel/network/stack/
H A Dstack.cpp90 struct family* parent; member in struct:chain
242 parent = ::family::Lookup(family);
243 if (parent == NULL)
244 parent = ::family::Add(family);
246 //parent->chains.Add(this);
261 //parent->chains.Remove(this);
281 parent->Acquire();
313 parent->Release();
350 if (chain->parent == NULL || chains->Insert(chain) != B_OK) {
/haiku/src/add-ons/kernel/drivers/disk/nvme/
H A Dnvme_disk.cpp162 device_node* parent = sDeviceManager->get_parent_node(info->node); local
163 sDeviceManager->get_driver(parent, (driver_module_info**)&pci,
166 sDeviceManager->put_node(parent);
1003 nvme_disk_supports_device(device_node *parent) argument
1010 if (sDeviceManager->get_attr_string(parent, B_DEVICE_BUS, &bus, false) != B_OK
1011 || sDeviceManager->get_attr_uint16(parent, B_DEVICE_TYPE, &baseClass, false) != B_OK
1012 || sDeviceManager->get_attr_uint16(parent, B_DEVICE_SUB_TYPE, &subClass, false) != B_OK)
1027 nvme_disk_register_device(device_node* parent) argument
1036 return sDeviceManager->register_node(parent, NVME_DISK_DRIVER_MODULE_NAME,
/haiku/headers/private/file_systems/
H A DQueryParser.h195 void SetParent(Term<QueryPolicy>* parent) argument
196 { fParent = parent; }
916 // read access... (we should check for every parent
933 Operator<QueryPolicy>* parent
935 if (parent == NULL)
938 if (parent->Op() == OP_AND) {
939 // choose the other child of the parent
940 Term<QueryPolicy>* other = parent->Right();
942 other = parent->Left();
946 "(parent
[all...]
/haiku/src/add-ons/screen_savers/slideshowsaver/
H A DSlideShowSaver.cpp404 BDirectory parent; local
409 if (curImage.GetParent(&parent) != B_OK)
412 while (parent.GetNextRef(&entry) == B_OK) {
/haiku/src/preferences/joysticks/
H A DJoyWin.cpp537 BDirectory parent; local
538 entry.GetParent(&parent);
539 symLink.MakeLinkedPath(&parent, &path);
/haiku/src/add-ons/kernel/file_systems/bfs/
H A DInode.h101 block_run& Parent() { return fNode.parent; }
102 const block_run& Parent() const { return fNode.parent; }
170 static status_t Create(Transaction& transaction, Inode* parent,
/haiku/src/add-ons/kernel/partitioning_systems/intel/
H A Dwrite_support.cpp167 // no child has to be over the new size of the parent partition
169 // If child->offset is relative to parent, then yes!
297 // child must completely lie within the parent partition
443 partition_data* parent = get_parent_partition(partition->id);
444 if (!parent)
451 return is_type_valid_pm(type, parent, child);
488 // child must completely lie within the parent partition
1200 // get parent partition, child and partition map structure
1270 // get parent partition, child and partition map structure
1565 if (partition_data* parent
2208 partition_data* parent = get_parent_partition(partitionID); local
2323 partition_data* parent = get_parent_partition(partitionID); local
[all...]
/haiku/src/apps/cortex/InfoView/
H A DInfoView.cpp85 InfoView *parent);
384 InfoView *parent)
388 m_parent(parent) {
/haiku/src/tests/kits/net/service/
H A DHttpTest.cpp566 HttpTest::AddTests(BTestSuite& parent) argument
581 parent.addTest("HttpTest", &suite);
595 parent.addTest("HttpsTest", &suite);
/haiku/headers/libs/libfdt/
H A Dlibfdt.h210 * get direct subnodes of a parent node.
218 * fdt_for_each_subnode - iterate over all subnodes of a parent
222 * @parent: parent node (int)
226 * fdt_for_each_subnode(node, fdt, parent) {
236 * iterator in the loop. The parent variable be constant or even a
239 #define fdt_for_each_subnode(node, fdt, parent) \
240 for (node = fdt_first_subnode(fdt, parent); \
895 * @nodeoffset: offset of the node whose parent to find
928 * @nodeoffset: offset of the node whose parent t
[all...]
/haiku/src/system/kernel/disk_device_manager/
H A DKPartitioningSystem.cpp489 KPartition* parent = child->Parent(); local
490 status_t result = parent->Open(O_RDWR, &fd);
494 result = fModule->delete_child(fd, parent->ID(), child->ID(), job);
/haiku/src/add-ons/kernel/bus_managers/scsi/
H A Ddevices.cpp285 device_node *parent = pnp->get_parent_node(node); local
286 pnp->get_driver(parent, NULL, (void **)&bus);
287 pnp->put_node(parent);
/haiku/src/add-ons/kernel/drivers/audio/null/
H A Dnull_multi.c149 create_group_control(multi_mix_control* multi, int32 idx, int32 parent, int32 string, argument
153 multi->parent = parent;
/haiku/src/add-ons/kernel/file_systems/ext2/
H A DHTree.h124 Inode* parent);
H A DVolume.h122 Inode* parent, int32 mode, ino_t& id);
/haiku/src/apps/debuganalyzer/gui/table/
H A DTableColumns.h30 BView* parent) const;
/haiku/src/tests/system/kernel/unit/
H A DTestContext.h93 TestContext(TestContext& parent, Test* test);
/haiku/headers/private/package/hpkg/
H A DPackageWriterImpl.h79 Entry* _RegisterEntry(Entry* parent,
/haiku/src/add-ons/translators/rtf/
H A DRTF.h52 void SetParent(Group *parent);
/haiku/src/kits/tracker/
H A DFilePanelPriv.h140 bool SelectChildInParent(const entry_ref* parent, const node_ref* child);

Completed in 381 milliseconds

<<11121314151617181920>>