Searched defs:pService (Results 1 - 13 of 13) sorted by relevance

/vbox/src/VBox/Devices/EFI/Firmware/AppPkg/Applications/Sockets/GetServByName/
H A DGetServByName.c46 struct servent * pService; local
59 pService = getservbyname ( Argv[1], NULL );
60 if ( NULL == pService ) {
64 PortNumber = htons ( pService->s_port );
66 pService->s_name,
68 pService->s_proto );
/vbox/src/VBox/Devices/EFI/Firmware/AppPkg/Applications/Sockets/GetServByPort/
H A DGetServByPort.c47 struct servent * pService; local
61 pService = getservbyport ( htons ( PortNumber ), NULL );
62 if ( NULL == pService ) {
67 pService->s_name,
69 pService->s_proto );
/vbox/src/VBox/Devices/EFI/Firmware/StdLib/EfiSocketLib/
H A DService.c48 ESL_SERVICE * pService; local
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
287 ESL_SERVICE * pService; local
[all...]
H A DSocket.c1123 ESL_SERVICE * pService; local
1203 pService = *ppServiceListHead;
1204 while ( NULL != pService ) {
1208 pServiceBinding = pService->pServiceBinding;
1216 pService->pSocketBinding->pName ));
1222 pService,
1232 pService->pSocketBinding->pName,
1239 pService = pService->pNext;
3357 @param [in] pService Addres
3376 EslSocketPortAllocate( IN ESL_SOCKET * pSocket, IN ESL_SERVICE * pService, IN EFI_HANDLE ChildHandle, IN CONST struct sockaddr * pSockAddr, IN BOOLEAN bBindTest, IN UINTN DebugFlags, OUT ESL_PORT ** ppPort ) argument
3636 ESL_SERVICE * pService; local
[all...]
H A DSocket.h322 ESL_SERVICE * pService; ///< Service for this port member in struct:_ESL_PORT
326 // Eliminate the pService references during port close
1220 @param [in] pService Address of an ::ESL_SERVICE structure.
1241 IN ESL_SERVICE * pService,
/vbox/src/VBox/Additions/x11/VBoxClient/
H A Dclipboard.cpp328 struct CLIPBOARDSERVICE *pService = local
329 (struct CLIPBOARDSERVICE *)RTMemAlloc(sizeof(*pService));
331 if (!pService)
333 pService->pInterface = &vbclClipboardInterface;
334 return &pService->pInterface;
H A Dhostversion.cpp222 struct HOSTVERSIONSERVICE *pService = local
223 (struct HOSTVERSIONSERVICE *)RTMemAlloc(sizeof(*pService));
225 if (!pService)
227 pService->pInterface = &vbclHostVersionInterface;
228 return &pService->pInterface;
H A Dseamless.cpp425 struct SEAMLESSSERVICE *pService = local
426 (struct SEAMLESSSERVICE *)RTMemAlloc(sizeof(*pService));
428 if (!pService)
430 pService->pInterface = &vbclSeamlessInterface;
431 pService->magic = SEAMLESSSERVICE_MAGIC;
432 new(&pService->mSeamless) SeamlessMain();
433 pService->mIsInitialised = false;
434 return &pService->pInterface;
H A Ddisplay.cpp418 struct DISPLAYSTATE *pService = (struct DISPLAYSTATE *)RTMemAlloc(sizeof(*pService)); local
420 if (!pService)
422 pService->pInterface = &vbclDisplayInterface;
423 pService->magic = DISPLAYSTATE_MAGIC;
424 pService->mfInit = false;
425 return &pService->pInterface;
H A Ddraganddrop.cpp2433 struct DRAGANDDROPSERVICE *pService = local
2434 (struct DRAGANDDROPSERVICE *)RTMemAlloc(sizeof(*pService));
2436 if (!pService)
2438 pService->pInterface = &vbclDragAndDropInterface;
2439 pService->magic = DRAGANDDROPSERVICE_MAGIC;
2440 new(&pService->mDragAndDrop) DragAndDropService();
2441 return &pService->pInterface;
/vbox/src/VBox/HostServices/GuestProperties/
H A Dservice.cpp1470 Service *pService = NULL; local
1474 pService = new Service(ptable->pHelpers);
1501 ptable->pvService = pService;
1504 Assert(!pService);
/vbox/src/VBox/Main/src-client/
H A DHGCM.cpp184 HGCMClient() : HGCMObject(HGCMOBJ_CLIENT), pService(NULL),
191 HGCMService *pService; member in class:HGCMClient
199 if (pService->SizeOfClient() > 0)
205 pService = pSvc;
207 if (pService->SizeOfClient() > 0)
209 pvData = RTMemAllocZ(pService->SizeOfClient());
221 #define HGCM_CLIENT_DATA(pService, pClient)(pClient->pvData)
778 HGCMService *pService = static_cast <HGCMService *> (pvInstance); local
780 if (pService)
782 pService
1759 HGCMService *pService; member in class:HGCMMsgMainSvcAcquire
1766 HGCMService *pService; member in class:HGCMMsgMainSvcRelease
1833 HGCMService *pService; local
1862 HGCMService *pService = pClient->pService; local
1888 HGCMService *pService; local
1907 HGCMService *pService; local
1993 HGCMService *pService; local
2020 HGCMService *pService; local
2503 HGCMService *pService = (HGCMService *)hSvc; local
[all...]
H A DConsoleImpl2.cpp5754 void *pService = (void*)Params[1].u.pointer.addr; local
5755 DBGFR3InfoRegisterExternal(pUVM, "guestprops", "Display the guest properties", pfnHandler, pService);

Completed in 95 milliseconds