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

1234567891011>>

/haiku/src/add-ons/kernel/drivers/wmi/
H A DWMIAsus.cpp68 device_node *parent; local
69 parent = gDeviceManager->get_parent_node(node);
70 gDeviceManager->get_driver(parent, (driver_module_info **)&wmi,
73 gDeviceManager->put_node(parent);
236 wmi_asus_support(device_node *parent) argument
238 // make sure parent is really a wmi device
240 if (gDeviceManager->get_attr_string(parent, B_DEVICE_BUS, &bus, false))
248 if (gDeviceManager->get_attr_string(parent, WMI_GUID_STRING_ITEM, &guid,
/haiku/src/add-ons/kernel/drivers/power/acpi_thermal/
H A Dacpi_thermal.c228 acpi_thermal_support(device_node *parent) argument
233 // make sure parent is really the ACPI bus manager
234 if (sDeviceManager->get_attr_string(parent, B_DEVICE_BUS, &bus, false))
241 if (sDeviceManager->get_attr_uint32(parent, ACPI_DEVICE_TYPE_ITEM,
304 device_node* parent; local
312 parent = sDeviceManager->get_parent_node(node);
313 sDeviceManager->get_driver(parent, (driver_module_info**)&device->acpi,
315 sDeviceManager->put_node(parent);
/haiku/headers/private/interface/
H A DColumnListView.h121 // a parent of a row, using the AddRow() function in BColumnListView().
184 virtual void MouseMoved(BColumnListView* parent, BRow* row,
187 virtual void MouseDown(BColumnListView* parent, BRow* row,
190 virtual void MouseUp(BColumnListView* parent, BRow* row,
195 BView* parent) const;
314 const BRow* RowAt(int32 index, BRow *parent = 0) const;
315 BRow* RowAt(int32 index, BRow *parent = 0);
322 int32 CountRows(BRow* parent = 0) const;
323 void AddRow(BRow* row, BRow* parent = NULL);
325 BRow* parent
[all...]
/haiku/src/add-ons/screen_savers/gravity/
H A DConfigView.cpp31 ConfigView::ConfigView(BRect frame, Gravity* parent) argument
34 fParent(parent),
62 fCountSlider->SetValue(parent->Config.ParticleCount);
/haiku/headers/private/debugger/value/value_nodes/
H A DArrayValueNode.h86 AbstractArrayValueNode* parent,
106 AbstractArrayValueNode* parent,
124 AbstractArrayValueNode* parent,
/haiku/src/add-ons/kernel/file_systems/nfs4/
H A DFileInfo.h40 InodeName(InodeNames* parent, const char* name);
51 status_t AddName(InodeNames* parent, const char* name);
52 bool RemoveName(InodeNames* parent,
65 // since OPEN requires both parent FileHandle and file name (just like LOOKUP).
/haiku/src/system/libroot/posix/unistd/
H A Dfork.c107 __register_atfork(void (*prepare)(void), void (*parent)(void), void (*child)(void)) argument
122 if (status == B_OK && parent)
123 status = add_fork_hook(&sParentHooks, &sLastParentHook, parent);
171 // we are the parent
/haiku/src/add-ons/kernel/bus_managers/i2c/
H A DI2CDevice.cpp65 device_node *parent = gDeviceManager->get_parent_node(node); local
66 gDeviceManager->get_driver(parent, NULL, (void **)&bus);
67 gDeviceManager->put_node(parent);
/haiku/src/bin/package/
H A Dcommand_create.cpp126 BPath parent; local
127 while (outputPath.GetParent(&parent) == B_OK) {
133 outputPath = parent;
/haiku/src/apps/haikudepot/ui/
H A DPackageListView.cpp145 BView* parent);
148 BView* parent) const;
152 static void InitTextMargin(BView* parent);
381 PackageColumn::DrawField(BField* field, BRect rect, BView* parent) argument
415 parent->TruncateString(&truncatedString, fTruncateMode, width + 2);
432 parent->SetDrawingMode(B_OP_ALPHA);
434 parent->DrawBitmap(bitmap, bitmap->Bounds(), viewRect);
435 parent->SetDrawingMode(B_OP_OVER);
441 DrawString(packageIconAndTitleField->ClippedString(), parent, r);
450 parent
597 InitTextMargin(BView* parent) argument
[all...]
/haiku/src/apps/debuganalyzer/gui/
H A DSubWindowManager.h19 SubWindowManager(BLooper* parent);
/haiku/src/apps/debuganalyzer/gui/main_window/
H A DSchedulingPage.h22 SchedulingPage(MainWindow* parent);
/haiku/src/apps/debuganalyzer/gui/table/
H A DTableColumn.h41 BView* parent) const;
/haiku/src/apps/diskusage/
H A DSnapshot.h38 FileInfo* parent; member in struct:FileInfo
/haiku/src/apps/icon-o-matic/generic/property/view/
H A DPropertyEditorView.h40 void SetItemView(PropertyItemView* parent);
H A DPropertyItemView.h49 void SetListView(PropertyListView* parent);
/haiku/src/apps/packageinstaller/
H A DPackageStatus.h34 const char *trailing = NULL, BHandler *parent = NULL);
/haiku/src/libs/glut/
H A DglutGet.cpp40 if (gState.currentWindow->parent)
47 if (gState.currentWindow->parent)
62 if(gState.currentWindow->parent)
63 return gState.currentWindow->parent->num + 1;
/haiku/src/preferences/printers/
H A DAddPrinterDialog.h23 AddPrinterDialog(BWindow *parent);
/haiku/src/tests/kits/interface/bshelf/
H A DShelfTest.cpp135 BView *parent = new BBox(b, "parent", B_FOLLOW_ALL, B_WILL_DRAW | B_FRAME_EVENTS, B_PLAIN_BORDER); local
136 parent->SetViewColor(216, 216, 216, 0);
137 AddChild(parent);
145 parent->AddChild(fMainView);
/haiku/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/headers/private/debugger/files/
H A DLocatableEntry.h41 LocatableDirectory* parent);
/haiku/src/libs/compat/freebsd_network/
H A Dfbsd_mii.c292 device_t parent; local
294 parent = device_get_parent(dev);
295 return (MIIBUS_READREG(parent, phy, reg));
301 device_t parent; local
303 parent = device_get_parent(dev);
304 return (MIIBUS_WRITEREG(parent, phy, reg, data));
310 device_t parent; local
313 parent = device_get_parent(dev);
314 MIIBUS_STATCHG(parent);
324 device_t parent; local
652 mii_dev_mac_match(device_t parent, const char *name) argument
667 mii_dev_mac_softc(device_t parent) argument
[all...]
/haiku/src/tests/kits/interface/layout/widget_layout_test/tests/
H A DBoxTest.cpp92 // BBox sets its background color to that of its parent in
208 // We need to get the parent of the actually selected button, since
213 View* parent = (selectedButton ? selectedButton->Parent() : NULL); local
215 parent);
227 // We need to get the parent of the actually selected button, since
231 View* parent = (selectedButton ? selectedButton->Parent() : NULL); local
232 LabelRadioButton* button = dynamic_cast<LabelRadioButton*>(parent);

Completed in 151 milliseconds

1234567891011>>