HomeSort by relevance Sort by last modified time
    Searched refs:m_connectionPipe (Results 1 - 2 of 2) sorted by null

  /external/webkit/Source/WebKit2/Platform/CoreIPC/win/
ConnectionWin.cpp 91 m_connectionPipe = identifier;
96 if (m_connectionPipe == INVALID_HANDLE_VALUE)
107 ::CloseHandle(m_connectionPipe);
108 m_connectionPipe = INVALID_HANDLE_VALUE;
113 if (m_connectionPipe == INVALID_HANDLE_VALUE)
119 if (!::GetOverlappedResult(m_connectionPipe, &m_readState, &numberOfBytesRead, FALSE)) {
130 if (!::PeekNamedPipe(m_connectionPipe, 0, 0, 0, 0, &bytesToRead)) {
147 if (!::ReadFile(m_connectionPipe, m_readBuffer.data() + numberOfBytesRead, bytesToRead, 0, &m_readState)) {
185 if (!::PeekNamedPipe(m_connectionPipe, 0, 0, 0, 0, &bytesToRead)) {
206 BOOL result = ::ReadFile(m_connectionPipe, m_readBuffer.data(), m_readBuffer.size(), 0, &m_readState)
    [all...]
  /external/webkit/Source/WebKit2/Platform/CoreIPC/
Connection.h 320 HANDLE m_connectionPipe;

Completed in 189 milliseconds