Searched refs:Table (Results 1 - 25 of 42) sorted by path

12

/haiku/docs/develop/kits/storage/resources/
H A DResourcesFormat.tex417 \subsection{Resource Info Table}
/haiku/src/apps/debuganalyzer/gui/main_window/
H A DTeamsPage.cpp79 fTeamsTable = new Table("teams list", 0);
125 MainWindow::TeamsPage::TableRowInvoked(Table* table, int32 rowIndex)
H A DTeamsPage.h10 #include "table/Table.h"
27 virtual void TableRowInvoked(Table* table, int32 rowIndex);
31 Table* fTeamsTable;
H A DThreadsPage.cpp121 fThreadsTable = new Table("threads list", 0);
191 MainWindow::ThreadsPage::TableRowInvoked(Table* table, int32 rowIndex)
H A DThreadsPage.h10 #include "table/Table.h"
27 virtual void TableRowInvoked(Table* table, int32 rowIndex);
31 Table* fThreadsTable;
/haiku/src/apps/debuganalyzer/gui/table/
H A DTable.cpp6 #include "table/Table.h"
140 TableSelectionModel::TableSelectionModel(Table* table)
231 TableListener::TableSelectionChanged(Table* table)
237 TableListener::TableRowInvoked(Table* table, int32 rowIndex)
243 TableListener::TableCellMouseDown(Table* table, int32 rowIndex,
250 TableListener::TableCellMouseUp(Table* table, int32 rowIndex, int32 columnIndex,
259 class Table::Column : public AbstractColumn {
282 Table::Column::Column(TableModel* model, TableColumn* tableColumn)
290 Table::Column::~Column()
296 Table
378 Table::Table(const char* name, uint32 flags, border_style borderStyle, function in class:Table
390 Table::Table(TableModel* model, const char* name, uint32 flags, function in class:Table
[all...]
H A DTable.h18 class Table;
64 TableSelectionModel(Table* table);
71 friend class Table;
78 Table* fTable;
98 virtual void TableSelectionChanged(Table* table);
99 virtual void TableRowInvoked(Table* table, int32 rowIndex);
101 virtual void TableCellMouseDown(Table* table, int32 rowIndex,
104 virtual void TableCellMouseUp(Table* table, int32 rowIndex,
110 class Table : public AbstractTable, private TableModelListener { class in inherits:AbstractTable,TableModelListener
112 Table(cons
[all...]
/haiku/src/apps/debugger/user_interface/gui/team_settings_window/
H A DSignalsConfigView.cpp348 SignalsConfigView::TableSelectionChanged(Table* table)
367 .Add(fDispositionExceptions = new Table("customDispositions",
H A DSignalsConfigView.h11 #include "table/Table.h"
52 virtual void TableSelectionChanged(Table* table);
63 Table* fDispositionExceptions;
/haiku/src/apps/debugger/user_interface/gui/team_window/
H A DBreakpointListView.h12 #include "table/Table.h"
74 virtual void TableSelectionChanged(Table* table);
80 Table* fBreakpointsTable;
H A DImageListView.h10 #include "table/Table.h"
44 virtual void TableSelectionChanged(Table* table);
51 Table* fImagesTable;
H A DRegistersView.h11 #include "table/Table.h"
40 virtual void TableRowInvoked(Table* table, int32 rowIndex);
42 virtual void TableCellMouseDown(Table* table, int32 rowIndex,
52 Table* fRegisterTable;
H A DStackTraceView.h10 #include "table/Table.h"
43 virtual void TableSelectionChanged(Table* table);
49 Table* fFramesTable;
H A DThreadListView.h11 #include "table/Table.h"
50 virtual void TableSelectionChanged(Table* table);
57 Table* fThreadsTable;
/haiku/headers/private/shared/
H A DAutoDeleter.h233 template<typename Type, typename Table, Table **table,
234 void (*Table::*Deleter)(Type*)>
243 template<typename Type, typename Table, Table **table,
244 typename DestructorResult, DestructorResult (*Table::*Deleter)(Type*)>
246 : AutoDeleter<Type, MethodObjectDelete<Type, Table, table, Deleter> >
249 MethodObjectDelete<Type, Table, table, Deleter> > Base;
/haiku/src/add-ons/kernel/bus_managers/acpi/acpica/components/dispatcher/
H A Ddsinit.c318 ACPI_TABLE_HEADER *Table; local
354 Status = AcpiGetTableByIndex (TableIndex, &Table);
362 if (ACPI_COMPARE_NAMESEG (Table->Signature, ACPI_SIG_DSDT))
371 "Table [%4.4s: %-8.8s] (id %.2X) - %4u Objects with %3u Devices, "
373 Table->Signature, Table->OemTableId, OwnerId, Info.ObjectCount,
H A Ddsopcode.c636 ACPI_TABLE_HEADER *Table; local
645 * and OemTableId string of the Data Table Region declaration
687 "ACPI Table [%4.4s] OEM:(%s, %s) not found in RSDT/XSDT",
695 Status = AcpiGetTableByIndex (TableIndex, &Table);
708 ObjDesc->Region.Address = ACPI_PTR_TO_PHYSADDR (Table);
709 ObjDesc->Region.Length = Table->Length;
710 ObjDesc->Region.Pointer = Table;
/haiku/src/add-ons/kernel/bus_managers/acpi/acpica/components/executer/
H A Dexconfig.c184 * PARAMETERS: Table - Pointer to raw table
280 /* Table not found, return an Integer=0 and AE_OK */
334 ACPI_INFO (("Dynamic OEM Table Load:"));
459 ACPI_TABLE_HEADER *Table; local
552 Table = ACPI_ALLOCATE (Length);
553 if (!Table)
561 ACPI_CAST_PTR (UINT8, Table));
564 ACPI_FREE (Table);
587 /* Table cannot extend beyond the buffer */
602 Table
[all...]
/haiku/src/add-ons/kernel/bus_managers/acpi/acpica/components/namespace/
H A Dnsparse.c194 ACPI_TABLE_HEADER *Table; local
205 Status = AcpiGetTableByIndex (TableIndex, &Table);
211 /* Table must consist of at least a complete header */
213 if (Table->Length < sizeof (ACPI_TABLE_HEADER))
218 AmlStart = (UINT8 *) Table + sizeof (ACPI_TABLE_HEADER);
219 AmlLength = Table->Length - sizeof (ACPI_TABLE_HEADER);
246 ACPI_GET_FUNCTION_NAME, Table->Signature, Table, MethodObj));
312 ACPI_TABLE_HEADER *Table; local
319 Status = AcpiGetTableByIndex (TableIndex, &Table);
[all...]
H A Dnsxfname.c672 ACPI_TABLE_HEADER *Table = ACPI_CAST_PTR (ACPI_TABLE_HEADER, Buffer); local
692 /* Table must be a DSDT or SSDT */
694 if (!ACPI_COMPARE_NAMESEG (Table->Signature, ACPI_SIG_DSDT) &&
695 !ACPI_COMPARE_NAMESEG (Table->Signature, ACPI_SIG_SSDT))
/haiku/src/add-ons/kernel/bus_managers/acpi/acpica/components/tables/
H A Dtbdata.c3 * Module Name: tbdata - Table manager data structure functions
178 * PARAMETERS: TableDesc - Table 1 descriptor to be compared
195 ACPI_TABLE_HEADER *Table; local
201 &Table, &TableLength, &TableFlags);
212 memcmp (TableDesc->Pointer, Table, TableLength)) ?
217 AcpiTbReleaseTable (Table, TableLength, TableFlags);
226 * PARAMETERS: TableDesc - Table descriptor
229 * Table - Pointer to the table
242 ACPI_TABLE_HEADER *Table)
251 TableDesc->Length = Table
238 AcpiTbInitTableDescriptor( ACPI_TABLE_DESC *TableDesc, ACPI_PHYSICAL_ADDRESS Address, UINT8 Flags, ACPI_TABLE_HEADER *Table) argument
294 ACPI_TABLE_HEADER *Table = NULL; local
346 AcpiTbReleaseTable( ACPI_TABLE_HEADER *Table, UINT32 TableLength, UINT8 TableFlags) argument
388 AcpiTbAcquireTempTable( ACPI_TABLE_DESC *TableDesc, ACPI_PHYSICAL_ADDRESS Address, UINT8 Flags, ACPI_TABLE_HEADER *Table) argument
1209 ACPI_TABLE_HEADER *Table; local
1270 AcpiTbInstallAndLoadTable( ACPI_PHYSICAL_ADDRESS Address, UINT8 Flags, ACPI_TABLE_HEADER *Table, BOOLEAN Override, UINT32 *TableIndex) argument
1318 ACPI_TABLE_HEADER *Table; local
1367 AcpiTbNotifyTable( UINT32 Event, void *Table) argument
[all...]
H A Dtbfadt.c185 /* Table for conversion of FADT to common internal format and FADT validation */
266 /* Table used to split Event Blocks into separate status/enable registers */
451 ACPI_TABLE_HEADER *Table; local
464 Status = AcpiTbGetTable (FadtDesc, &Table);
475 (void) AcpiUtVerifyChecksum (Table, Length);
479 AcpiTbCreateLocalFadt (Table, Length);
518 * PARAMETERS: Table - Pointer to BIOS FADT
532 ACPI_TABLE_HEADER *Table,
546 Table->Revision, ACPI_FADT_CONFORMANCE, Length,
556 memcpy (&AcpiGbl_FADT, Table,
531 AcpiTbCreateLocalFadt( ACPI_TABLE_HEADER *Table, UINT32 Length) argument
[all...]
H A Dtbinstal.c194 * ACPI Table Override:
230 * Table - Pointer to the table (required for virtual
250 ACPI_TABLE_HEADER *Table,
265 Status = AcpiTbAcquireTempTable (&NewTableDesc, Address, Flags, Table);
300 * Table was unloaded, allow it to be reloaded.
363 ACPI_TABLE_HEADER *Table; local
371 Status = AcpiOsTableOverride (OldTableDesc->Pointer, &Table);
372 if (ACPI_SUCCESS (Status) && Table)
374 AcpiTbAcquireTempTable (&NewTableDesc, ACPI_PTR_TO_PHYSADDR (Table),
375 ACPI_TABLE_ORIGIN_EXTERNAL_VIRTUAL, Table);
247 AcpiTbInstallStandardTable( ACPI_PHYSICAL_ADDRESS Address, UINT8 Flags, ACPI_TABLE_HEADER *Table, BOOLEAN Reload, BOOLEAN Override, UINT32 *TableIndex) argument
[all...]
H A Dtbutils.c3 * Module Name: tbutils - ACPI Table utilities
377 * Table (RSDT or XSDT)
393 ACPI_TABLE_HEADER *Table; local
445 Table = AcpiOsMapMemory (Address, sizeof (ACPI_TABLE_HEADER));
446 if (!Table)
451 AcpiTbPrintTableHeader (Address, Table);
457 Length = Table->Length;
458 AcpiOsUnmapMemory (Table, sizeof (ACPI_TABLE_HEADER));
467 Table = AcpiOsMapMemory (Address, Length);
468 if (!Table)
[all...]
H A Dtbxface.c197 * AllowResize - Flag to tell Table Manager if resize of
228 * Setup the Root Table Array and allocate the table array
241 /* Root Table Array has been statically allocated by the host */
265 * Root Table Array. This array contains the information of the RSDT/XSDT
283 * DESCRIPTION: Reallocate Root Table List into dynamic memory. Copies the
328 "Table [%4.4s] is not invalidated during early boot stage",
463 * DESCRIPTION: Finds and verifies an ACPI table. Table must be in the
532 * PARAMETERS: Table - The pointer to the table
546 ACPI_TABLE_HEADER *Table)
555 if (!Table)
[all...]

Completed in 264 milliseconds

12