Searched refs:OwnerId (Results 1 - 25 of 26) sorted by relevance

12

/haiku-fatelf/src/add-ons/kernel/bus_managers/acpi/acpica/components/dispatcher/
H A Ddsinit.c177 if (Node->OwnerId != Info->OwnerId)
250 ACPI_OWNER_ID OwnerId; local
256 Status = AcpiTbGetOwnerId (TableIndex, &OwnerId);
270 Info.OwnerId = OwnerId;
301 Table->Signature, OwnerId, Info.ObjectCount,
H A Ddsmethod.c370 * to begin concurrent execution. We only need one OwnerId, even if the
373 if (!ObjDesc->Method.OwnerId)
375 Status = AcpiUtAllocateOwnerId (&ObjDesc->Method.OwnerId);
461 NextWalkState = AcpiDsCreateWalkState (ObjDesc->Method.OwnerId,
718 AcpiNsDeleteNamespaceByOwner (MethodDesc->Method.OwnerId);
741 * Additional threads. Do not release the OwnerId in this case,
787 /* No more threads, we can free the OwnerId */
791 AcpiUtReleaseOwnerId (&MethodDesc->Method.OwnerId);
H A Ddswstate.c662 * PARAMETERS: OwnerId - ID for object creation
676 ACPI_OWNER_ID OwnerId,
695 WalkState->OwnerId = OwnerId;
675 AcpiDsCreateWalkState( ACPI_OWNER_ID OwnerId, ACPI_PARSE_OBJECT *Origin, ACPI_OPERAND_OBJECT *MethodDesc, ACPI_THREAD_STATE *Thread) argument
/haiku-fatelf/src/add-ons/kernel/bus_managers/acpi/acpica/components/namespace/
H A Dnsalloc.c320 ACPI_OWNER_ID OwnerId = 0; local
333 OwnerId = WalkState->OwnerId;
372 Node->OwnerId = OwnerId;
377 AcpiUtGetNodeName (Node), AcpiUtGetTypeName (Node->Type), Node, OwnerId,
542 * PARAMETERS: OwnerId - All nodes with this owner will be deleted
556 ACPI_OWNER_ID OwnerId)
565 ACPI_FUNCTION_TRACE_U32 (NsDeleteNamespaceByOwner, OwnerId);
568 if (OwnerId
555 AcpiNsDeleteNamespaceByOwner( ACPI_OWNER_ID OwnerId) argument
[all...]
H A Dnsparse.c155 ACPI_OWNER_ID OwnerId; local
161 Status = AcpiTbGetOwnerId (TableIndex, &OwnerId);
177 WalkState = AcpiDsCreateWalkState (OwnerId, NULL, NULL, NULL);
H A Dnsdump.c301 if ((Info->OwnerId != ACPI_OWNER_ID_MAX) &&
302 (Info->OwnerId != ThisNode->OwnerId))
326 AcpiUtGetTypeName (Type), ThisNode, ThisNode->OwnerId);
722 * OwnerId - Dump only objects owned by this ID. Use
738 ACPI_OWNER_ID OwnerId,
762 Info.OwnerId = OwnerId;
798 Info.OwnerId = ACPI_OWNER_ID_MAX;
734 AcpiNsDumpObjects( ACPI_OBJECT_TYPE Type, UINT8 DisplayType, UINT32 MaxDepth, ACPI_OWNER_ID OwnerId, ACPI_HANDLE StartHandle) argument
/haiku-fatelf/src/add-ons/kernel/bus_managers/acpi/acpica/components/utilities/
H A Dutmisc.c235 * PARAMETERS: OwnerId - Where the new owner ID is returned
247 ACPI_OWNER_ID *OwnerId)
260 if (*OwnerId)
262 ACPI_ERROR ((AE_INFO, "Owner ID [0x%2.2X] already exists", *OwnerId));
315 *OwnerId = (ACPI_OWNER_ID) ((k + 1) + ACPI_MUL_32 (j));
318 "Allocated OwnerId: %2.2X\n", (unsigned int) *OwnerId));
338 "Could not allocate new OwnerId (255 max), AE_OWNER_ID_LIMIT"));
364 ACPI_OWNER_ID OwnerId = *OwnerIdPtr; local
370 ACPI_FUNCTION_TRACE_U32 (UtReleaseOwnerId, OwnerId);
246 AcpiUtAllocateOwnerId( ACPI_OWNER_ID *OwnerId) argument
[all...]
/haiku-fatelf/src/add-ons/kernel/bus_managers/acpi/acpica/components/tables/
H A Dtbxfload.c383 ACPI_OWNER_ID OwnerId; local
398 * The node OwnerId is currently the same as the parent table ID.
401 OwnerId = Node->OwnerId;
402 if (!OwnerId)
404 /* OwnerId==0 means DSDT is the owner. DSDT cannot be unloaded */
421 if (OwnerId != AcpiGbl_RootTableList.Tables[i].OwnerId)
H A Dtbinstal.c551 NewTable->OwnerId = 0;
673 ACPI_OWNER_ID OwnerId; local
696 OwnerId = AcpiGbl_RootTableList.Tables[TableIndex].OwnerId;
709 AcpiNsDeleteNamespaceByOwner (OwnerId);
730 * DESCRIPTION: Allocates OwnerId in TableDesc
748 (&(AcpiGbl_RootTableList.Tables[TableIndex].OwnerId));
764 * DESCRIPTION: Releases OwnerId in TableDesc
782 &(AcpiGbl_RootTableList.Tables[TableIndex].OwnerId));
796 * OwnerId
805 AcpiTbGetOwnerId( UINT32 TableIndex, ACPI_OWNER_ID *OwnerId) argument
[all...]
/haiku-fatelf/src/add-ons/kernel/bus_managers/acpi/acpica/include/
H A Dacapps.h215 ACPI_OWNER_ID *OwnerId,
236 ACPI_OWNER_ID OwnerId);
250 ACPI_OWNER_ID OwnerId);
H A Dacstruct.h159 ACPI_OWNER_ID OwnerId; /* Owner of objects created during the walk */ member in struct:acpi_walk_state
223 ACPI_OWNER_ID OwnerId; member in struct:acpi_init_walk_info
312 ACPI_OWNER_ID OwnerId; member in struct:acpi_walk_info
H A Dactables.h200 ACPI_OWNER_ID *OwnerId);
H A Dacnamesp.h262 ACPI_OWNER_ID OwnerId);
315 ACPI_OWNER_ID OwnerId,
H A Dacparser.h326 ACPI_OWNER_ID OwnerId,
H A Dactbl.h467 ACPI_OWNER_ID OwnerId; member in struct:acpi_table_desc
H A Dacutils.h802 ACPI_OWNER_ID *OwnerId);
806 ACPI_OWNER_ID *OwnerId);
H A Dacdispat.h484 ACPI_OWNER_ID OwnerId,
H A Dacobject.h297 ACPI_OWNER_ID OwnerId; member in struct:acpi_object_method
/haiku-fatelf/src/add-ons/kernel/bus_managers/acpi/acpica/components/events/
H A Devgpeinit.c338 WalkInfo.OwnerId = TableOwnerId;
392 * per-OwnerId evaluation if ExecuteByOwnerId is TRUE in the
424 /* Check if requested OwnerId matches this OwnerId */
427 (MethodNode->OwnerId != WalkInfo->OwnerId))
/haiku-fatelf/src/add-ons/kernel/bus_managers/acpi/acpica/common/
H A Dadisasm.c359 ACPI_OWNER_ID OwnerId; local
399 Status = AdParseTable (ExternalTable, &OwnerId, TRUE, TRUE);
412 AcpiGbl_RootNode, OwnerId);
503 Status = AdParseTable (Table, &OwnerId, TRUE, FALSE);
523 AcpiGbl_RootNode, OwnerId);
530 AcpiGbl_RootNode, OwnerId);
1151 * OwnerId - Returned OwnerId of the table
1164 ACPI_OWNER_ID *OwnerId,
1239 if (OwnerId)
1162 AdParseTable( ACPI_TABLE_HEADER *Table, ACPI_OWNER_ID *OwnerId, BOOLEAN LoadTable, BOOLEAN External) argument
[all...]
H A Dadwalk.c254 * OwnerId - OwnerId of the table to be disassembled
267 ACPI_OWNER_ID OwnerId)
281 WalkState = AcpiDsCreateWalkState (OwnerId, ParseTreeRoot, NULL, NULL);
308 * OwnerId - OwnerId of the table to be disassembled
320 ACPI_OWNER_ID OwnerId)
334 WalkState = AcpiDsCreateWalkState (OwnerId, ParseTreeRoot, NULL, NULL);
749 Node->OwnerId = WalkState->OwnerId;
264 AcpiDmFinishNamespaceLoad( ACPI_PARSE_OBJECT *ParseTreeRoot, ACPI_NAMESPACE_NODE *NamespaceRoot, ACPI_OWNER_ID OwnerId) argument
317 AcpiDmCrossReferenceNamespace( ACPI_PARSE_OBJECT *ParseTreeRoot, ACPI_NAMESPACE_NODE *NamespaceRoot, ACPI_OWNER_ID OwnerId) argument
[all...]
/haiku-fatelf/src/add-ons/kernel/bus_managers/acpi/acpica/components/executer/
H A Dexconfig.c169 ACPI_OWNER_ID OwnerId; local
214 Status = AcpiTbGetOwnerId (TableIndex, &OwnerId);
217 AcpiEvUpdateGpes (OwnerId);
H A Dexdump.c223 {ACPI_EXD_UINT8, ACPI_EXD_OFFSET (Method.OwnerId), "Owner Id"},
370 {ACPI_EXD_UINT8, ACPI_EXD_NSOFFSET (OwnerId), "Owner Id"},
/haiku-fatelf/src/add-ons/kernel/bus_managers/acpi/acpica/components/parser/
H A Dpsxface.c385 Info->ObjDesc->Method.OwnerId, NULL, NULL, NULL);
H A Dpsloop.c179 ACPI_OWNER_ID OwnerId);
626 WalkState->OwnerId);
738 * OwnerId - OwnerId of module level code
753 ACPI_OWNER_ID OwnerId)
796 MethodObj->Method.OwnerId = OwnerId;
749 AcpiPsLinkModuleCode( ACPI_PARSE_OBJECT *ParentOp, UINT8 *AmlStart, UINT32 AmlLength, ACPI_OWNER_ID OwnerId) argument

Completed in 147 milliseconds

12