Lines Matching refs:HioPacketChannel
24 const s32 HioPacketChannel::PACKET_HEADER_ID = 0x06F7D144;
25 const size_t HioPacketChannel::BUFFER_SIZE = 1024;
26 void* HioPacketChannel::s_HioWorkMemory = NULL;
27 nw::os::IAllocator* HioPacketChannel::s_DeviceAllocatorForHioWorkMemory = NULL;
30 HioPacketChannel*
31 HioPacketChannel::Builder::Create( in Create()
39 void* memory = allocator->Alloc(sizeof(HioPacketChannel)); in Create()
42 HioPacketChannel* hioPacketChannel = in Create()
43 new(memory) HioPacketChannel(allocator, deviceAllocator, m_Description); in Create()
50 HioPacketChannel::Destroy() in Destroy()
54 this->~HioPacketChannel(); in Destroy()
61 HioPacketChannel::Initialize(os::IAllocator* deviceAllocator) in Initialize()
71 HioPacketChannel::Finalize() in Finalize()
79 HioPacketChannel::Listen(s32 timeOut) in Listen()
98 HioPacketChannel::Connect() in Connect()
105 HioPacketChannel::Disconnect() in Disconnect()
112 HioPacketChannel::SendPacket( in SendPacket()
184 HioPacketChannel::ReceivePacket( in ReceivePacket()
305 HioPacketChannel::HioPacketChannel( in HioPacketChannel() function in nw::demo::HioPacketChannel
321 HioPacketChannel::~HioPacketChannel() in ~HioPacketChannel()