Home | History | Annotate | Download | only in MpServicesOnFrameworkMpServicesThunk

Lines Matching defs:Procedure

199   @param  Procedure             A pointer to the function to be run on enabled APs of the system.

216 @retval EFI_INVALID_PARAMETER Procedure is NULL.
223 IN EFI_AP_PROCEDURE Procedure,
251 // Check parameter Procedure
253 if (Procedure == NULL) {
290 // Go through all enabled APs to wakeup them for Procedure.
310 Procedure,
334 mMPSystemData.Procedure = Procedure;
368 @param Procedure A pointer to the function to be run on the designated AP.
386 @retval EFI_INVALID_PARAMETER Procedure is NULL.
393 IN EFI_AP_PROCEDURE Procedure,
434 // Check parameter Procedure
436 if (Procedure == NULL) {
464 // Wakeup specified AP for Procedure.
472 Procedure,
873 mMPSystemData.Procedure,
1135 EFI_AP_PROCEDURE Procedure;
1162 Procedure = CpuData->Procedure;
1166 if (Procedure != NULL) {
1168 Procedure (Parameter);
1179 CpuData->Procedure = NULL;
1189 Function to wake up a specified AP and assign procedure to it.
1192 @param Procedure Procedure to assign.
1193 @param ProcArguments Argument for Procedure.
1199 IN EFI_AP_PROCEDURE Procedure,
1214 CpuData->Procedure = Procedure;