Lines Matching refs:ServerPipe
65 #define ServerPipe ServerPipeW macro
69 #define ServerPipe ServerPipeA macro
133 class ServerPipe : public Pipe class
140 …ServerPipe( LPCTSTR lpName, HANDLE hMapping, HANDLE hSynchronize, HANDLE hReadPipe, HANDLE hWriteP…
142 virtual ~ServerPipe();
144 static ServerPipe *Create( LPCTSTR lpName );
524 ServerPipe::ServerPipe( LPCTSTR lpName, HANDLE hMapping, HANDLE hSynchronize, HANDLE hReadPipe, HAN… in ServerPipe() function in ServerPipe
556 ServerPipe::~ServerPipe() in ~ServerPipe()
568 Pipe *ServerPipe::AcceptConnection() in AcceptConnection()
631 ServerPipe *ServerPipe::Create( LPCTSTR lpName ) in Create()
633 ServerPipe *pPipe = NULL; in Create()
675 pPipe = new ServerPipe( lpName, hMapping, hSynchronize, hServerReadPipe, hServerWritePipe ); in Create()
712 return (HANDLE)ServerPipe::Create( lpName ); in CreateSimplePipe()