Lines Matching refs:pService
48 ESL_SERVICE * pService;
95 LengthInBytes = sizeof ( *pService );
99 (VOID **) &pService
103 "0x%08x: Allocate pService, %d bytes\r\n",
104 pService,
110 ZeroMem ( pService, LengthInBytes );
111 pService->Signature = SERVICE_SIGNATURE;
112 pService->pSocketBinding = pSocketBinding;
113 pService->Controller = Controller;
114 pService->pServiceBinding = pServiceBinding;
145 pService,
165 pService->pNext = *ppServiceListHead;
166 *ppServiceListHead = pService;
189 pService,
232 gBS->FreePool ( pService );
234 "0x%08x: Free pService, %d bytes\r\n",
235 pService,
236 sizeof ( *pService )));
237 pService = NULL;
287 ESL_SERVICE * pService;
312 (VOID **)&pService,
327 pPort = pService->pPortList;
332 pPort->pService = NULL;
333 pService->pPortList = pPort->pLinkService;
345 pPort = pService->pPortList;
352 pBuffer = &pBuffer[ pService->pSocketBinding->ServiceListOffset ];
355 if ( pService == pPreviousService ) {
359 *ppServiceListHead = pService->pNext;
366 if ( pService == pPreviousService->pNext ) {
367 pPreviousService->pNext = pService->pNext;
385 pService,
404 Status = gBS->FreePool ( pService );
407 "0x%08x: Free pService, %d bytes\r\n",
408 pService,
409 sizeof ( *pService )));
413 "ERROR - Failed to free pService 0x%08x, Status: %r\r\n",
414 pService,
417 pService = NULL;