HomeSort by relevance Sort by last modified time
    Searched defs:pService (Results 1 - 10 of 10) sorted by null

  /device/linaro/bootloader/edk2/AppPkg/Applications/Sockets/GetServByName/
GetServByName.c 42 struct servent * pService;
50 pService = getservbyname ( Argv[1], NULL );
51 if ( NULL == pService ) {
55 PortNumber = htons ( pService->s_port );
57 pService->s_name,
59 pService->s_proto );
  /device/linaro/bootloader/edk2/AppPkg/Applications/Sockets/GetServByPort/
GetServByPort.c 43 struct servent * pService;
52 pService = getservbyport ( htons ( PortNumber ), NULL );
53 if ( NULL == pService ) {
58 pService->s_name,
60 pService->s_proto );
  /device/linaro/bootloader/edk2/StdLib/EfiSocketLib/
Service.c 50 ESL_SERVICE * pService;
97 LengthInBytes = sizeof ( *pService );
101 (VOID **) &pService
105 "0x%08x: Allocate pService, %d bytes\r\n",
106 pService,
112 ZeroMem ( pService, LengthInBytes );
113 pService->Signature = SERVICE_SIGNATURE;
114 pService->pSocketBinding = pSocketBinding;
115 pService->Controller = Controller;
116 pService->pServiceBinding = pServiceBinding;
    [all...]
Udp4.c 1054 ESL_SERVICE * pService;
1089 pService = pPort->pService;
1091 pService->Controller,
    [all...]
Udp6.c     [all...]
Ip4.c     [all...]
Tcp4.c 897 pPort->pService,
    [all...]
Tcp6.c 930 pPort->pService,
    [all...]
Socket.c     [all...]
Socket.h 419 ESL_SERVICE * pService; ///< Service for this port
423 // Eliminate the pService references during port close
    [all...]

Completed in 1151 milliseconds