Lines Matching defs:hwpipe
67 void* hwpipe;
124 if (pipe->hwpipe != NULL) {
125 goldfish_pipe_close(pipe->hwpipe);
126 pipe->hwpipe = NULL;
177 goldfish_pipe_wake(pipe->hwpipe, wakeFlags);
187 netPipe_initFromAddress( void* hwpipe, const SockAddress* address, Looper* looper )
193 pipe->hwpipe = hwpipe;
242 else if (pipe->hwpipe == NULL)
387 netPipe_initTcp( void* hwpipe, void* _looper, const char* args )
413 ret = netPipe_initFromAddress(hwpipe, &address, _looper);
421 netPipe_initUnix( void* hwpipe, void* _looper, const char* args )
438 ret = netPipe_initFromAddress(hwpipe, &address, _looper);
483 openglesPipe_init( void* hwpipe, void* _looper, const char* args )
499 pipe = (NetPipe *)netPipe_initUnix(hwpipe, _looper, server_addr);
506 pipe = (NetPipe *)netPipe_initTcp(hwpipe, _looper, server_addr);