| /src/sys/external/bsd/acpica/dist/utilities/ |
| utownerid.c | 57 * PARAMETERS: OwnerId - Where the new owner ID is returned 69 ACPI_OWNER_ID *OwnerId) 82 if (*OwnerId) 85 "Owner ID [0x%3.3X] already exists", *OwnerId)); 144 *OwnerId = (ACPI_OWNER_ID) ((k + 1) + ACPI_MUL_32 (j)); 147 "Allocated OwnerId: 0x%3.3X\n", (unsigned int) *OwnerId)); 167 "Could not allocate new OwnerId (4095 max), AE_OWNER_ID_LIMIT")); 179 * PARAMETERS: OwnerIdPtr - Pointer to a previously allocated OwnerID 193 ACPI_OWNER_ID OwnerId = *OwnerIdPtr [all...] |
| /src/sys/external/bsd/acpica/dist/dispatcher/ |
| dsinit.c | 105 if (Node->OwnerId != Info->OwnerId) 211 ACPI_OWNER_ID OwnerId; 217 Status = AcpiTbGetOwnerId (TableIndex, &OwnerId); 230 Info.OwnerId = OwnerId; 265 Table->Signature, Table->OemTableId, OwnerId, Info.ObjectCount,
|
| dsmethod.c | 123 WalkState = AcpiDsCreateWalkState (Node->OwnerId, NULL, NULL, NULL); 484 * to begin concurrent execution. We only need one OwnerId, even if the 487 if (!ObjDesc->Method.OwnerId) 489 Status = AcpiUtAllocateOwnerId (&ObjDesc->Method.OwnerId); 592 ObjDesc->Method.OwnerId, NULL, ObjDesc, Thread); 840 AcpiNsDeleteNamespaceByOwner (MethodDesc->Method.OwnerId); 885 * Additional threads. Do not release the OwnerId in this case, 935 /* No more threads, we can free the OwnerId */ 939 AcpiUtReleaseOwnerId (&MethodDesc->Method.OwnerId);
|
| dswstate.c | 587 * PARAMETERS: OwnerId - ID for object creation 601 ACPI_OWNER_ID OwnerId, 620 WalkState->OwnerId = OwnerId;
|
| /src/sys/external/bsd/acpica/dist/namespace/ |
| nsalloc.c | 261 ACPI_OWNER_ID OwnerId = 0; 274 OwnerId = WalkState->OwnerId; 314 Node->OwnerId = OwnerId; 319 AcpiUtGetNodeName (Node), AcpiUtGetTypeName (Node->Type), Node, OwnerId, 484 * PARAMETERS: OwnerId - All nodes with this owner will be deleted 498 ACPI_OWNER_ID OwnerId) 507 ACPI_FUNCTION_TRACE_U32 (NsDeleteNamespaceByOwner, OwnerId); 510 if (OwnerId == 0 [all...] |
| nsparse.c | 87 ACPI_OWNER_ID OwnerId; 113 Status = AcpiTbGetOwnerId (TableIndex, &OwnerId); 142 MethodObj->Method.OwnerId = OwnerId; 205 ACPI_OWNER_ID OwnerId; 227 Status = AcpiTbGetOwnerId (TableIndex, &OwnerId); 243 WalkState = AcpiDsCreateWalkState (OwnerId, NULL, NULL, NULL);
|
| nsdump.c | 250 if ((Info->OwnerId != ACPI_OWNER_ID_MAX) && 251 (Info->OwnerId != ThisNode->OwnerId)) 276 AcpiUtGetTypeName (Type), ThisNode, ThisNode->OwnerId); 670 * OwnerId - Dump only objects owned by this ID. Use 686 ACPI_OWNER_ID OwnerId, 711 Info.OwnerId = OwnerId; 811 * OwnerId - Dump only objects owned by this ID. Use 827 ACPI_OWNER_ID OwnerId, [all...] |
| nssearch.c | 355 (*ReturnNode)->Type, WalkState->OwnerId)); 362 (*ReturnNode)->OwnerId = WalkState->OwnerId;
|
| nsload.c | 135 AcpiGbl_RootTableList.Tables[TableIndex].OwnerId);
|
| /src/sys/external/bsd/acpica/dist/common/ |
| adisasm.c | 74 ACPI_OWNER_ID OwnerId); 339 ACPI_OWNER_ID OwnerId; 396 Status = AdParseTable (Table, &OwnerId, TRUE, FALSE); 426 AcpiGbl_RootNode, OwnerId); 433 AcpiGbl_RootNode, OwnerId); 451 Status = AdReparseOneTable (Table, File, OwnerId); 505 * OwnerId - ID for this table 519 ACPI_OWNER_ID OwnerId) 578 AcpiGbl_RootNode, OwnerId); 581 AcpiGbl_RootNode, OwnerId); [all...] |
| adwalk.c | 188 * OwnerId - OwnerId of the table to be disassembled 201 ACPI_OWNER_ID OwnerId) 215 WalkState = AcpiDsCreateWalkState (OwnerId, ParseTreeRoot, NULL, NULL); 244 * OwnerId - OwnerId of the table to be disassembled 256 ACPI_OWNER_ID OwnerId) 270 WalkState = AcpiDsCreateWalkState (OwnerId, ParseTreeRoot, NULL, NULL); 740 Node->OwnerId = WalkState->OwnerId; [all...] |
| dmtables.c | 372 * OwnerId - Returned OwnerId of the table 385 ACPI_OWNER_ID *OwnerId, 470 if (OwnerId) 472 Status = AcpiTbGetOwnerId (TableIndex, OwnerId);
|
| /src/sys/external/bsd/acpica/dist/tables/ |
| tbdata.c | 865 ACPI_OWNER_ID OwnerId; 888 OwnerId = AcpiGbl_RootTableList.Tables[TableIndex].OwnerId; 904 AcpiNsDeleteNamespaceByOwner (OwnerId); 918 * DESCRIPTION: Allocates OwnerId in TableDesc 936 &(AcpiGbl_RootTableList.Tables[TableIndex].OwnerId)); 952 * DESCRIPTION: Releases OwnerId in TableDesc 970 &(AcpiGbl_RootTableList.Tables[TableIndex].OwnerId)); 984 * OwnerId - Where the table OwnerId is returne [all...] |
| tbxfload.c | 448 ACPI_OWNER_ID OwnerId; 463 * The node OwnerId is currently the same as the parent table ID. 466 OwnerId = Node->OwnerId; 467 if (!OwnerId) 469 /* OwnerId==0 means DSDT is the owner. DSDT cannot be unloaded */ 486 if (OwnerId != AcpiGbl_RootTableList.Tables[i].OwnerId)
|
| /src/sys/external/bsd/acpica/dist/include/ |
| acstruct.h | 82 ACPI_OWNER_ID OwnerId; /* Owner of objects created during the walk */ 153 ACPI_OWNER_ID OwnerId; 258 ACPI_OWNER_ID OwnerId; 271 ACPI_OWNER_ID OwnerId;
|
| acapps.h | 186 ACPI_OWNER_ID OwnerId); 200 ACPI_OWNER_ID OwnerId);
|
| acnamesp.h | 205 ACPI_OWNER_ID OwnerId); 295 ACPI_OWNER_ID OwnerId, 303 ACPI_OWNER_ID OwnerId,
|
| actables.h | 225 ACPI_OWNER_ID *OwnerId);
|
| acparser.h | 294 ACPI_OWNER_ID OwnerId,
|
| acdispat.h | 430 ACPI_OWNER_ID OwnerId,
|
| acobject.h | 229 ACPI_OWNER_ID OwnerId;
|
| /src/sys/external/bsd/acpica/dist/events/ |
| evgpeinit.c | 258 WalkInfo.OwnerId = TableOwnerId; 312 * per-OwnerId evaluation if ExecuteByOwnerId is TRUE in the 346 /* Check if requested OwnerId matches this OwnerId */ 349 (MethodNode->OwnerId != WalkInfo->OwnerId))
|
| /src/sys/external/bsd/acpica/dist/debugger/ |
| dbmethod.c | 391 Status = AcpiUtAllocateOwnerId (&ObjDesc->Method.OwnerId); 397 WalkState->OwnerId = ObjDesc->Method.OwnerId; 432 AcpiNsDeleteNamespaceByOwner (ObjDesc->Method.OwnerId); 433 AcpiUtReleaseOwnerId (&ObjDesc->Method.OwnerId);
|
| dbnames.c | 329 * DESCRIPTION: Dump elements of the namespace that are owned by the OwnerId. 340 ACPI_OWNER_ID OwnerId; 343 OwnerId = (ACPI_OWNER_ID) strtoul (OwnerArg, NULL, 0); 353 AcpiOsPrintf ("ACPI Namespace by owner %X:\n", OwnerId); 359 OwnerId, SubtreeEntry); 419 Info.OwnerId = ACPI_OWNER_ID_MAX; 827 Info.OwnerId = ACPI_OWNER_ID_MAX; 866 Info.OwnerId = ACPI_OWNER_ID_MAX;
|
| /src/sys/external/bsd/acpica/dist/parser/ |
| psxface.c | 186 Info->ObjDesc->Method.OwnerId, NULL, NULL, NULL); 320 Info->ObjDesc->Method.OwnerId, NULL, NULL, NULL);
|