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

  /external/webrtc/webrtc/test/channel_transport/
udp_socket2_win.cc 348 PerIoContext* pIoContext = _mgr->PopIoContext();
349 if(pIoContext == 0)
352 "UdpSocket2Windows(%d)::SendTo(), pIoContext==0",
356 // sizeof(pIoContext->buffer) is smaller than the highest number that
358 if(len >= sizeof(pIoContext->buffer))
367 len,sizeof(pIoContext->buffer));
368 len = sizeof(pIoContext->buffer);
371 memcpy(pIoContext->buffer,buf,len);
372 pIoContext->wsabuf.buf = pIoContext->buffer
    [all...]
udp_socket2_manager_win.h 78 virtual int32_t PushIoContext(PerIoContext* pIoContext);
134 int32_t PushIoContext(PerIoContext* pIoContext);
udp_socket2_manager_win.cc 405 int32_t UdpSocket2ManagerWindows::PushIoContext(PerIoContext* pIoContext)
407 return _ioContextPool.PushIoContext(pIoContext);
470 int32_t IoContextPool::PushIoContext(PerIoContext* pIoContext)
475 (LPOVERLAPPED)pIoContext);
477 IoContextPoolItem* item = ((IoContextPoolItemPayload*)pIoContext)->base;
574 PerIoContext* pIOContext = 0;
602 pIOContext = (PerIoContext*)pOverlapped;
603 pSocket->IOCompleted(pIOContext,ioSize,error);
udp_socket2_win.h 82 void IOCompleted(PerIoContext* pIOContext, uint32_t ioSize, uint32_t error);
85 // Use pIoContext to post a new WSARecvFrom(..).
86 int32_t PostRecv(PerIoContext* pIoContext);

Completed in 842 milliseconds