Lines Matching refs:ServerPipe
60 #define ServerPipe ServerPipeW macro
64 #define ServerPipe ServerPipeA macro
128 class ServerPipe : public Pipe class
135 …ServerPipe( LPCTSTR lpName, HANDLE hMapping, HANDLE hSynchronize, HANDLE hReadPipe, HANDLE hWriteP…
137 virtual ~ServerPipe();
139 static ServerPipe *Create( LPCTSTR lpName );
519 ServerPipe::ServerPipe( LPCTSTR lpName, HANDLE hMapping, HANDLE hSynchronize, HANDLE hReadPipe, HAN… in ServerPipe() function in ServerPipe
551 ServerPipe::~ServerPipe() in ~ServerPipe()
563 Pipe *ServerPipe::AcceptConnection() in AcceptConnection()
626 ServerPipe *ServerPipe::Create( LPCTSTR lpName ) in Create()
628 ServerPipe *pPipe = NULL; in Create()
670 pPipe = new ServerPipe( lpName, hMapping, hSynchronize, hServerReadPipe, hServerWritePipe ); in Create()
707 return (HANDLE)ServerPipe::Create( lpName ); in CreateSimplePipe()