Lines Matching refs:HioPacketChannel
26 const s32 HioPacketChannel::PACKET_HEADER_ID = 0x06F7D144;
27 const size_t HioPacketChannel::BUFFER_SIZE = 1024;
28 void* HioPacketChannel::s_HioWorkMemory = NULL;
29 nw::os::IAllocator* HioPacketChannel::s_DeviceAllocatorForHioWorkMemory = NULL;
32 HioPacketChannel*
33 HioPacketChannel::Builder::Create( in Create()
41 void* memory = allocator->Alloc(sizeof(HioPacketChannel)); in Create()
44 HioPacketChannel* hioPacketChannel = in Create()
45 new(memory) HioPacketChannel(allocator, deviceAllocator, m_Description); in Create()
52 HioPacketChannel::Destroy() in Destroy()
56 this->~HioPacketChannel(); in Destroy()
63 HioPacketChannel::Initialize(os::IAllocator* deviceAllocator) in Initialize()
73 HioPacketChannel::Finalize() in Finalize()
81 HioPacketChannel::Listen(s32 timeOut) in Listen()
100 HioPacketChannel::Connect() in Connect()
107 HioPacketChannel::Disconnect() in Disconnect()
114 HioPacketChannel::SendPacket( in SendPacket()
186 HioPacketChannel::ReceivePacket( in ReceivePacket()
307 HioPacketChannel::HioPacketChannel( in HioPacketChannel() function in nw::demo::HioPacketChannel
323 HioPacketChannel::~HioPacketChannel() in ~HioPacketChannel()