Home
last modified time | relevance | path

Searched refs:m_connectionPipe (Results 1 – 2 of 2) sorted by relevance

/external/webkit/Source/WebKit2/Platform/CoreIPC/win/
DConnectionWin.cpp91 m_connectionPipe = identifier; in platformInitialize()
96 if (m_connectionPipe == INVALID_HANDLE_VALUE) in platformInvalidate()
107 ::CloseHandle(m_connectionPipe); in platformInvalidate()
108 m_connectionPipe = INVALID_HANDLE_VALUE; in platformInvalidate()
113 if (m_connectionPipe == INVALID_HANDLE_VALUE) in readEventHandler()
119 if (!::GetOverlappedResult(m_connectionPipe, &m_readState, &numberOfBytesRead, FALSE)) { in readEventHandler()
130 if (!::PeekNamedPipe(m_connectionPipe, 0, 0, 0, 0, &bytesToRead)) { in readEventHandler()
147 …if (!::ReadFile(m_connectionPipe, m_readBuffer.data() + numberOfBytesRead, bytesToRead, 0, &m_read… in readEventHandler()
185 if (!::PeekNamedPipe(m_connectionPipe, 0, 0, 0, 0, &bytesToRead)) { in readEventHandler()
206 …BOOL result = ::ReadFile(m_connectionPipe, m_readBuffer.data(), m_readBuffer.size(), 0, &m_readSta… in readEventHandler()
[all …]
/external/webkit/Source/WebKit2/Platform/CoreIPC/
DConnection.h320 HANDLE m_connectionPipe; variable