HomeSort by: relevance | last modified time | path
    Searched refs:Handler (Results 1 - 25 of 29) sorted by relevancy

1 2

  /src/sys/external/bsd/acpica/dist/events/
evxface.c 184 * HandlerType - The type of handler:
185 * ACPI_SYSTEM_NOTIFY: System Handler (00-7F)
186 * ACPI_DEVICE_NOTIFY: Device Handler (80-FF)
188 * Handler - Address of the handler
189 * Context - Value passed to the handler on each GPE
193 * DESCRIPTION: Install a handler for notifications on an ACPI Device,
196 * NOTES: The Root namespace object may have only one handler for each
198 * may have one device notify handler, and multiple system notify
207 ACPI_NOTIFY_HANDLER Handler,
    [all...]
evxfregn.c 170 * Handler - Address of the handler
172 * Context - Value passed to the handler on each access
177 * DESCRIPTION: Install a handler for all OpRegions of a given SpaceId.
193 ACPI_ADR_SPACE_HANDLER Handler,
227 /* Install the handler for all Regions for this Space ID */
230 Node, SpaceId, Handler, Setup, Context);
252 ACPI_ADR_SPACE_HANDLER Handler,
256 return AcpiInstallAddressSpaceHandlerInternal (Device, SpaceId, Handler, Setup, Context, TRUE);
265 ACPI_ADR_SPACE_HANDLER Handler,
    [all...]
evhandler.c 220 * We install the default PCI config space handler at the root so that
227 * NOTE: We ignore AE_ALREADY_EXISTS because this means that a handler
266 * RETURN: TRUE if default handler is installed, FALSE otherwise
268 * DESCRIPTION: Check if the default handler is installed for the requested
287 HandlerObj = ObjDesc->CommonNotify.Handler;
316 * DESCRIPTION: This routine installs an address handler into objects that are
319 * If the Object is a Device, and the device has a handler of
322 * This is because the existing handler is closer in proximity
386 /* Check if this Device already has a handler for this address space */
389 HandlerObj->AddressSpace.SpaceId, ObjDesc->CommonNotify.Handler);
    [all...]
evevent.c 255 /* Install the SCI handler */
261 "Unable to install System Control Interrupt handler"));
265 /* Install the handler for the Global Lock */
271 "Unable to initialize Global Lock handler"));
306 AcpiGbl_FixedEventHandlers[i].Handler = NULL;
380 * handler if present.
406 * handler that previously registered for the event.
407 * NOTE: If there is no handler for the event, the event is
427 * Make sure that a handler exists. If not, report an error
430 if (!AcpiGbl_FixedEventHandlers[Event].Handler)
    [all...]
evregion.c 189 * an installed default region handler.
215 * Make sure the installed handler is the DEFAULT handler. If not the
217 * handler was installed)
247 * a previously installed handler.
267 ACPI_ADR_SPACE_HANDLER Handler;
287 /* Ensure that there is a handler associated with this region */
289 HandlerDesc = RegionObj->Region.Handler;
293 "No handler for Region [%4.4s] (%p) [%s]",
372 * the handler for this particular regio
    [all...]
evmisc.c 214 * installed handler.
256 /* We have an attached object, Get the correct handler list */
262 * If there is no notify handler (Global or Local)
265 if (!AcpiGbl_GlobalNotify[HandlerListId].Handler && !HandlerListHead)
268 "No notify handler for Notify, ignoring (%4.4s, %X) node %p\n",
310 * PARAMETERS: Context - To be passed to the notify handler
315 * installed handler.
330 /* Invoke a global notify handler if installed */
332 if (Info->Notify.Global->Handler)
334 Info->Notify.Global->Handler (Info->Notify.Node
    [all...]
evgpeutil.c 344 /* Install new interrupt handler if not SCI_INT */
353 "Could not install GPE interrupt handler at level 0x%X",
373 * interrupt handler if not the SCI interrupt.
388 /* We never want to remove the SCI interrupt handler */
441 * DESCRIPTION: Delete all Handler objects found in the GPE data structs.
478 /* Delete an installed handler block */
480 ACPI_FREE (GpeEventInfo->Dispatch.Handler);
481 GpeEventInfo->Dispatch.Handler = NULL;
evgpe.c 641 * an interrupt handler.
665 * Dispatch a DEVICE_WAKE notify to the appropriate handler.
773 * of a GPE method or a synchronous or asynchronous GPE handler.
820 * (e.g. EC) or method (e.g. _Lxx/_Exx) handler.
825 * dependent on the raw handler itself.
901 /* Invoke global event handler if present */
916 /* Dispatch the event to a raw handler */
918 GpeHandlerInfo = GpeEventInfo->Dispatch.Handler;
922 * and the GPE handler to ensure a safe destruction
926 * 2. The GPE handler is expected to be flushed b
    [all...]
evrgnini.c 168 * HandlerContext - Address space handler context
221 /* Save the region length and address for use in the handler */
237 * HandlerContext - Address space handler context
275 * HandlerContext - Address space handler context
306 HandlerObj = RegionObj->Region.Handler;
310 * No installed handler. This shouldn't happen because the dispatch
314 "Attempting to init a region %p, with no handler\n", RegionObj));
331 * Get the _SEG and _BBN values from the device upon which the handler
335 * This is the device the handler has been registered to handle.
354 /* Install a handler for this PCI root bridge *
    [all...]
evxfevnt.c 519 if (AcpiGbl_FixedEventHandlers[Event].Handler)
  /src/sys/external/bsd/acpica/dist/namespace/
nsobject.c 477 * Handler - Handler to be associated with the data
489 ACPI_OBJECT_HANDLER Handler,
497 /* We only allow one attachment per handler */
504 (ObjDesc->Data.Handler == Handler))
521 DataDesc->Data.Handler = Handler;
544 * Handler - Handler associated with the dat
    [all...]
nsxfeval.c 1050 * Handler - Handler for this attachment
1055 * DESCRIPTION: Attach arbitrary data and handler to a namespace node.
1062 ACPI_OBJECT_HANDLER Handler,
1072 !Handler ||
1093 Status = AcpiNsAttachData (Node, Handler, Data);
1108 * Handler - Handler used in call to AcpiAttachData
1119 ACPI_OBJECT_HANDLER Handler)
1128 !Handler)
    [all...]
nsalloc.c 219 * data. If a handler is associated with attached data, it is
254 /* Invoke the attached data deletion handler if present */
256 if (ObjDesc->Data.Handler)
258 ObjDesc->Data.Handler (Node, ObjDesc->Data.Pointer);
  /src/sys/external/bsd/acpica/dist/include/
acpixf.h 737 ACPI_TABLE_HANDLER Handler,
743 ACPI_TABLE_HANDLER Handler))
786 ACPI_OBJECT_HANDLER Handler,
793 ACPI_OBJECT_HANDLER Handler))
799 ACPI_OBJECT_HANDLER Handler,
864 * Handler interfaces
869 ACPI_INIT_HANDLER Handler,
886 ACPI_GBL_EVENT_HANDLER Handler,
893 ACPI_EVENT_HANDLER Handler,
900 ACPI_EVENT_HANDLER Handler))
    [all...]
acobject.h 312 union acpi_operand_object *Handler; /* Handler for region access */
333 union acpi_operand_object *Handler;
363 union acpi_operand_object *Handler /* Handler for Address space */
510 ACPI_NOTIFY_HANDLER Handler; /* Handler address */
512 union acpi_operand_object *Next[2]; /* Device and System handler lists */
522 ACPI_ADR_SPACE_HANDLER Handler;
527 union acpi_operand_object *RegionList; /* Regions using this handler */
    [all...]
acnamesp.h 563 ACPI_OBJECT_HANDLER Handler,
569 ACPI_OBJECT_HANDLER Handler);
574 ACPI_OBJECT_HANDLER Handler,
acevents.h 378 ACPI_ADR_SPACE_HANDLER Handler,
  /src/sys/external/bsd/acpica/dist/tables/
tbxface.c 648 * PARAMETERS: Handler - Table event handler
649 * Context - Value passed to the handler on each event
653 * DESCRIPTION: Install a global table event handler.
659 ACPI_TABLE_HANDLER Handler,
668 if (!Handler)
679 /* Don't allow more than one handler */
687 /* Install the handler */
689 AcpiGbl_TableHandler = Handler;
704 * PARAMETERS: Handler - Table event handler that was installe
    [all...]
  /src/sys/external/bsd/acpica/dist/utilities/
utxface.c 363 * PARAMETERS: Handler - Callback procedure
368 * DESCRIPTION: Install an initialization handler
376 ACPI_INIT_HANDLER Handler,
380 if (!Handler)
390 AcpiGbl_InitHandler = Handler;
538 * PARAMETERS: Handler - The _OSI interface handler to install
539 * NULL means "remove existing handler"
543 * DESCRIPTION: Install a handler for the predefined _OSI ACPI method.
545 * _OSI. A NULL handler simply removes any existing handler
    [all...]
utinit.c 310 AcpiGbl_GlobalNotify[0].Handler = NULL;
311 AcpiGbl_GlobalNotify[1].Handler = NULL;
utdelete.c 274 /* Walk the address handler list for this object */
276 HandlerDesc = Object->CommonNotify.Handler;
357 * Free the RegionContext if and only if the handler is one of the
361 HandlerDesc = Object->Region.Handler;
368 /* Remove the region object from the handler list */
388 "Circular region list in address handler object %p",
449 "***** Address handler %p\n", Object));
  /src/sys/external/bsd/acpica/dist/debugger/
dbdisply.c 184 * System handler information.
213 /* Global handler information */
217 void *Handler;
224 {&AcpiGbl_GlobalNotify[0].Handler, __UNCONST("System Notifications")},
225 {&AcpiGbl_GlobalNotify[1].Handler, __UNCONST("Device Notifications")},
1053 /* This GPE is not used (no method or handler), ignore it */
1097 AcpiOsPrintf ("Handler");
1177 SpaceId, ObjDesc->CommonNotify.Handler);
1184 HandlerObj->AddressSpace.Handler);
1189 /* There is no handler for this SpaceId *
    [all...]
dbstats.c 343 AcpiDbEnumerateObject (ObjDesc->Device.Handler);
357 AcpiDbEnumerateObject (ObjDesc->Region.Handler);
370 AcpiDbEnumerateObject (ObjDesc->Processor.Handler);
377 AcpiDbEnumerateObject (ObjDesc->ThermalZone.Handler);
  /src/sys/external/bsd/compiler_rt/dist/lib/xray/
xray_trampoline_arm.S 26 @ Handler address is nullptr if handler is not set
32 @ Call the handler with 2 parameters in r0 and r1
53 @ Load the handler address
57 @ Handler address is nullptr if handler is not set
63 @ Call the handler with 2 parameters in r0 and r1
87 @ Handler address is nullptr if handler is not set
93 @ normal function exit happens, so we give the handler code
    [all...]
  /src/sys/external/bsd/acpica/dist/executer/
exdump.c 242 {ACPI_EXD_HDLR_LIST,ACPI_EXD_OFFSET (Device.Handler), "Handler"}
282 {ACPI_EXD_HDLR_LIST,ACPI_EXD_OFFSET (Region.Handler), "Handler"},
293 {ACPI_EXD_POINTER, ACPI_EXD_OFFSET (PowerResource.Handler), "Handler"}
304 {ACPI_EXD_POINTER, ACPI_EXD_OFFSET (Processor.Handler), "Handler"}
312 {ACPI_EXD_POINTER, ACPI_EXD_OFFSET (ThermalZone.Handler), "Handler"}
    [all...]

Completed in 28 milliseconds

1 2