HomeSort by: relevance | last modified time | path
    Searched defs:Info (Results 1 - 25 of 128) sorted by relevancy

1 2 3 4 5 6

  /src/sys/external/bsd/acpica/dist/common/
ahids.c 228 * RETURN: ID info struct. NULL if HardwareId is not found
238 const AH_DEVICE_ID *Info;
241 for (Info = AslDeviceIds; Info->Name; Info++)
243 if (!strcmp (HardwareId, Info->Name))
245 return (Info);
ahtable.c 73 const AH_TABLE *Info;
76 for (Info = AcpiGbl_SupportedTables; Info->Signature; Info++)
78 if (ACPI_COMPARE_NAMESEG (Signature, Info->Signature))
80 return (Info);
ahids.c 228 * RETURN: ID info struct. NULL if HardwareId is not found
238 const AH_DEVICE_ID *Info;
241 for (Info = AslDeviceIds; Info->Name; Info++)
243 if (!strcmp (HardwareId, Info->Name))
245 return (Info);
ahtable.c 73 const AH_TABLE *Info;
76 for (Info = AcpiGbl_SupportedTables; Info->Signature; Info++)
78 if (ACPI_COMPARE_NAMESEG (Signature, Info->Signature))
80 return (Info);
ahpredef.c 104 AH_PREDEF ("_CBR", "CXL Host Bridge Register Info", "Get the memory location of CXL Host Bridge Registers"),
229 AH_PREDEF ("_PMC", "Power Meter Capabilities", "Returns a list of Power Meter capabilities info"),
294 AH_PREDEF ("_SBA", "SM Bus Alert information", "Returns info on an SMBus alert"),
295 AH_PREDEF ("_SBI", "SM Bus General information", "Returns info on an SMBus segment"),
372 * RETURN: ID info struct. NULL if Nameseg not found
382 const AH_PREDEFINED_NAME *Info;
394 for (Info = AslPredefinedInfo; Info->Name; Info++)
396 if (ACPI_COMPARE_NAMESEG (Nameseg, Info->Name)
    [all...]
ahuuids.c 134 const AH_UUID *Info;
140 for (Info = Gbl_AcpiUuids; Info->Description; Info++)
144 if (!Info->String)
149 AcpiUtConvertStringToUuid (Info->String, UuidBuffer);
153 return (Info->Description);
ahpredef.c 104 AH_PREDEF ("_CBR", "CXL Host Bridge Register Info", "Get the memory location of CXL Host Bridge Registers"),
229 AH_PREDEF ("_PMC", "Power Meter Capabilities", "Returns a list of Power Meter capabilities info"),
294 AH_PREDEF ("_SBA", "SM Bus Alert information", "Returns info on an SMBus alert"),
295 AH_PREDEF ("_SBI", "SM Bus General information", "Returns info on an SMBus segment"),
372 * RETURN: ID info struct. NULL if Nameseg not found
382 const AH_PREDEFINED_NAME *Info;
394 for (Info = AslPredefinedInfo; Info->Name; Info++)
396 if (ACPI_COMPARE_NAMESEG (Nameseg, Info->Name)
    [all...]
ahuuids.c 134 const AH_UUID *Info;
140 for (Info = Gbl_AcpiUuids; Info->Description; Info++)
144 if (!Info->String)
149 AcpiUtConvertStringToUuid (Info->String, UuidBuffer);
153 return (Info->Description);
  /src/sys/external/bsd/acpica/dist/dispatcher/
dsinit.c 71 * Context - Points to a init info struct
92 ACPI_INIT_WALK_INFO *Info = (ACPI_INIT_WALK_INFO *) Context;
105 if (Node->OwnerId != Info->OwnerId)
110 Info->ObjectCount++;
126 Info->OpRegionCount++;
138 Info->MethodCount++;
149 Info->SerialMethodCount++;
162 Info->SerialMethodCount++;
163 Info->SerializedMethodCount++;
168 Info->NonSerialMethodCount++
    [all...]
dsinit.c 71 * Context - Points to a init info struct
92 ACPI_INIT_WALK_INFO *Info = (ACPI_INIT_WALK_INFO *) Context;
105 if (Node->OwnerId != Info->OwnerId)
110 Info->ObjectCount++;
126 Info->OpRegionCount++;
138 Info->MethodCount++;
149 Info->SerialMethodCount++;
162 Info->SerialMethodCount++;
163 Info->SerializedMethodCount++;
168 Info->NonSerialMethodCount++
    [all...]
  /src/sys/external/bsd/acpica/dist/namespace/
nsdumpdv.c 81 ACPI_DEVICE_INFO *Info;
95 Info = Buffer.Pointer;
103 Info->HardwareId.Value, ACPI_FORMAT_UINT64 (Info->Address)));
104 ACPI_FREE (Info);
nsdumpdv.c 81 ACPI_DEVICE_INFO *Info;
95 Info = Buffer.Pointer;
103 Info->HardwareId.Value, ACPI_FORMAT_UINT64 (Info->Address)));
104 ACPI_FREE (Info);
nsparse.c 88 ACPI_EVALUATE_INFO *Info = NULL;
129 Info = ACPI_ALLOCATE_ZEROED (sizeof (ACPI_EVALUATE_INFO));
130 if (!Info)
145 Info->PassNumber = ACPI_IMODE_EXECUTE;
146 Info->Node = StartNode;
147 Info->ObjDesc = MethodObj;
148 Info->NodeFlags = Info->Node->Flags;
149 Info->FullPathname = AcpiNsGetNormalizedPathname (Info->Node, TRUE)
    [all...]
  /src/sys/external/bsd/acpica/dist/compiler/
aslfileio.c 55 * PARAMETERS: FileId - Index into file info array
82 * PARAMETERS: FileId - Index into file info array
120 * PARAMETERS: FileId - Index into file info array
150 * PARAMETERS: FileId - Index into file info array
194 * PARAMETERS: FileId - Index into file info array
242 * PARAMETERS: FileId - Index into file info array
303 * PARAMETERS: FileId - Index into file info array
334 * PARAMETERS: FileId - Index into file info array
372 * PARAMETERS: FileId - Index into file info array
384 ASL_FILE_INFO *Info = &AslGbl_Files[FileId]
    [all...]
aslmapenter.c 80 * Creates new GPIO info blocks, one for each pin defined by the
93 ACPI_GPIO_INFO *Info;
104 /* Create an info block for each pin defined in the descriptor */
108 Info = MpCreateGpioInfo (PinList[i], DeviceName);
110 Info->Op = Op;
111 Info->DeviceName = DeviceName;
112 Info->PinCount = PinCount;
113 Info->PinIndex = i;
114 Info->PinNumber = PinList[i];
115 Info->Type = Resource->Gpio.ConnectionType
    [all...]
dtexpress.c 321 ACPI_DMTABLE_INFO *Info;
338 Info = DtGetGenericTableInfo (GenericField->Name);
339 if (Info)
344 TableOffset += DtGetFieldLength (GenericField, Info);
348 if (Info->Opcode == ACPI_DMT_LABEL)
aslfileio.c 55 * PARAMETERS: FileId - Index into file info array
82 * PARAMETERS: FileId - Index into file info array
120 * PARAMETERS: FileId - Index into file info array
150 * PARAMETERS: FileId - Index into file info array
194 * PARAMETERS: FileId - Index into file info array
242 * PARAMETERS: FileId - Index into file info array
303 * PARAMETERS: FileId - Index into file info array
334 * PARAMETERS: FileId - Index into file info array
372 * PARAMETERS: FileId - Index into file info array
384 ASL_FILE_INFO *Info = &AslGbl_Files[FileId]
    [all...]
aslmapenter.c 80 * Creates new GPIO info blocks, one for each pin defined by the
93 ACPI_GPIO_INFO *Info;
104 /* Create an info block for each pin defined in the descriptor */
108 Info = MpCreateGpioInfo (PinList[i], DeviceName);
110 Info->Op = Op;
111 Info->DeviceName = DeviceName;
112 Info->PinCount = PinCount;
113 Info->PinIndex = i;
114 Info->PinNumber = PinList[i];
115 Info->Type = Resource->Gpio.ConnectionType
    [all...]
dtexpress.c 321 ACPI_DMTABLE_INFO *Info;
338 Info = DtGetGenericTableInfo (GenericField->Name);
339 if (Info)
344 TableOffset += DtGetFieldLength (GenericField, Info);
348 if (Info->Opcode == ACPI_DMT_LABEL)
  /src/sys/external/bsd/acpica/dist/events/
evmisc.c 117 ACPI_GENERIC_STATE *Info;
166 /* Setup notify info and schedule the notify dispatcher */
168 Info = AcpiUtCreateGenericState ();
169 if (!Info)
174 Info->Common.DescriptorType = ACPI_DESC_TYPE_STATE_NOTIFY;
176 Info->Notify.Node = Node;
177 Info->Notify.Value = (UINT16) NotifyValue;
178 Info->Notify.HandlerListId = HandlerListId;
179 Info->Notify.HandlerListHead = HandlerListHead;
180 Info->Notify.Global = &AcpiGbl_GlobalNotify[HandlerListId]
    [all...]
evmisc.c 117 ACPI_GENERIC_STATE *Info;
166 /* Setup notify info and schedule the notify dispatcher */
168 Info = AcpiUtCreateGenericState ();
169 if (!Info)
174 Info->Common.DescriptorType = ACPI_DESC_TYPE_STATE_NOTIFY;
176 Info->Notify.Node = Node;
177 Info->Notify.Value = (UINT16) NotifyValue;
178 Info->Notify.HandlerListId = HandlerListId;
179 Info->Notify.HandlerListHead = HandlerListHead;
180 Info->Notify.Global = &AcpiGbl_GlobalNotify[HandlerListId]
    [all...]
  /src/sys/external/bsd/acpica/dist/hardware/
hwxface.c 226 /* Get the info structure corresponding to the requested ACPI Register */
295 /* Get the info structure corresponding to the requested ACPI Register */
417 ACPI_EVALUATE_INFO *Info;
434 Info = ACPI_ALLOCATE_ZEROED (sizeof (ACPI_EVALUATE_INFO));
435 if (!Info)
444 Info->RelativePathname = AcpiGbl_SleepStateNames[SleepState];
446 Status = AcpiNsEvaluate (Info);
461 if (!Info->ReturnObject)
464 Info->RelativePathname));
471 if (Info->ReturnObject->Common.Type != ACPI_TYPE_PACKAGE
    [all...]
hwxface.c 226 /* Get the info structure corresponding to the requested ACPI Register */
295 /* Get the info structure corresponding to the requested ACPI Register */
417 ACPI_EVALUATE_INFO *Info;
434 Info = ACPI_ALLOCATE_ZEROED (sizeof (ACPI_EVALUATE_INFO));
435 if (!Info)
444 Info->RelativePathname = AcpiGbl_SleepStateNames[SleepState];
446 Status = AcpiNsEvaluate (Info);
461 if (!Info->ReturnObject)
464 Info->RelativePathname));
471 if (Info->ReturnObject->Common.Type != ACPI_TYPE_PACKAGE
    [all...]
  /src/sys/external/bsd/acpica/dist/utilities/
uteval.c 79 ACPI_EVALUATE_INFO *Info;
89 Info = ACPI_ALLOCATE_ZEROED (sizeof (ACPI_EVALUATE_INFO));
90 if (!Info)
95 Info->PrefixNode = PrefixNode;
96 Info->RelativePathname = __UNCONST(Path);
100 Status = AcpiNsEvaluate (Info);
119 if (!Info->ReturnObject)
134 switch ((Info->ReturnObject)->Common.Type)
170 AcpiUtRemoveReference (Info->ReturnObject);
183 Path, AcpiUtGetObjectTypeName (Info->ReturnObject)
    [all...]
  /src/sys/external/bsd/compiler_rt/dist/lib/xray/
xray_utils.cc 89 zx_info_handle_basic_t Info;
90 Status = _zx_object_get_info(_zx_process_self(), ZX_INFO_HANDLE_BASIC, &Info,
91 sizeof(Info), NULL, NULL);
93 Report("XRay: cannot get basic info about current process handle: %s\n",
101 Info.koid);

Completed in 38 milliseconds

1 2 3 4 5 6