Home
last modified time | relevance | path

Searched refs:LOG (Results 1 – 14 of 14) sorted by relevance

/CTR-SDK-1.0.0/CTR_SDK/sources/libraries/rdt/CTR/
Drdt_HostBase.cpp117 LOG("m_transceiver: %d (%d)\n", offsetof(HostBase, m_transceiver), sizeof(Transceiver)); in PrintProperty()
118 LOG("m_packetLossRatio: %d (%d)\n", offsetof(HostBase, m_packetLossRatio), sizeof(int)); in PrintProperty()
119 LOG("m_resultCode: %d (%d)\n", offsetof(HostBase, m_resultCode), sizeof(Result)); in PrintProperty()
121 LOG("sizeof(HostBase)=%ld\n", (long) sizeof(HostBase)); in PrintProperty()
140 LOG("Sent segment is:\n"); in putSegment()
146 LOG("Packet loss happened! Lost segment is:\n"); in putSegment()
194 LOG("Failure result code will be set...\n"); in errorHandling()
Drdt_SenderImpl.cpp199 LOG("SenderはCLOSED状態ですが、セグメントが届いてしまったので、RSTで返答します。\n"); in updateCore()
200 LOG("受信セグメントの内容は、\n"); in updateCore()
202 LOG("です。\n"); in updateCore()
206 LOG("Sender is in CLOSED state, but received segment. Ignored.\n"); in updateCore()
264 LOG("SYN rejected. CLOSED... ack of segment = %u\n", seg.GetAckNumber()); in updateCore()
271 LOG("Ignored RST segment.\n"); in updateCore()
283 LOG("ack : %u\n", seg.GetAckNumber()); in updateCore()
284 LOG("una : %u\n", pSender->getUnacknowledgeNumber()); in updateCore()
285 LOG("nxt : %u\n", pSender->getNextSequenceNumber()); in updateCore()
286 LOG("It seems that it isn't ACK for SYN. Ignored\n"); in updateCore()
[all …]
Drdt_Header.cpp66 LOG("Control bit: %s\n", buf); in PrintDebugInfo()
67LOG("SEQ: %u, ACK: %u, dataOffset: %u, dataLength: %u\n", seqNum, ackNum, dataOffset, dataLength); in PrintDebugInfo()
68 LOG("WindowSize: %u, checksum: %u\n", windowSize, checkSum); in PrintDebugInfo()
Drdt_ReceiveBuffer.cpp56 LOG("ReceiveBuffer object is already initialized.\n"); in Initialize()
158 LOG("Initialized.\n"); in PrintDebugInfo()
159 LOG("Initial sequecne number: %u\n", m_initSeqNum); in PrintDebugInfo()
160 LOG("Latest octet sequence nubmer: %u\n", m_latestSeqNum); in PrintDebugInfo()
164 LOG("Not initialized.\n"); in PrintDebugInfo()
Drdt_Segment.cpp107 LOG("--Header contents--\n"); in PrintDebugInfo()
111 LOG("--No data--\n"); in PrintDebugInfo()
118 LOG("--Data(%d bytes)--\n", GetDataLength()); in PrintDebugInfo()
Drdt_Transceiver.cpp96 LOG("リモートのコネクションが消失したので、データを取得できません。\n"); in RecvRawData()
99 LOG("ホスト側でコネクションが中断(アボート)されました。\n"); in RecvRawData()
102 LOG("::recv()が未知のエラーを返しました。(%d)\n", err); in RecvRawData()
140 LOG("SendTo() Failed.\n");
180 LOG("ReceiveFrom() failed.\n");
210 LOG("受信したセグメントの内容は、\n"); in serverSide()
213 LOG("サーバー側のソケットの後始末をします。\n"); in serverSide()
231 LOG("クライアント側のソケットの後始末をします。\n"); in clientSide()
404 LOG("It seems that size of segment is wrong(%d byte)\n", n); in Pull()
Drdt_Sender.cpp155 LOG("Sender is not initialized. Ignored %s.\n", __FUNCTION__); in Cancel()
178 LOG("Sender is not initialized. Ignored %s.\n", __FUNCTION__); in SetPacketLossRatio()
190 LOG("Sender is not initialized. Ignored %s.\n", __FUNCTION__); in PrintDebugInfo()
Drdt_Receiver.cpp158 LOG("Receiver is not initialized. Ignored %s.\n", __FUNCTION__); in Cancel()
181 LOG("Receiver is not initialized. Ignored %s.\n", __FUNCTION__); in SetPacketLossRatio()
193 LOG("Receiver is not initialized. Ignored %s.\n", __FUNCTION__); in PrintDebugInfo()
Drdt_Utility.cpp319 LOG("Success.\n");
323 LOG("Failure...\n");
339 LOG("addr: 0x%08x\n", &dmy); in stackChecker()
340 LOG("%d bytes used.\n", 0x0fffffff - reinterpret_cast<u32>(&dmy)); in stackChecker()
Drdt_ReceiverImpl.cpp210LOG("Received data segment, but could not return ACK because receive buffer did not have enough sp… in update()
305 LOG("Segment with unexpected sequence number. Ignored.\n"); in update()
374 LOG("Receiver is in CLOSED state, but received segment. RST will be sent.\n"); in update()
660 LOG("-- Receiver debug information --\n"); in PrintDebugInfo()
661 LOG("Current state: %d\n", GetStatus()); in PrintDebugInfo()
663 LOG("\n"); in PrintDebugInfo()
Drdt_Queue.h179 LOG("Queue is empty.\n"); in PrintDebugInfo()
185 LOG("[%d] : %d\n", i, m_array[(m_front + i) % N]); in PrintDebugInfo()
Drdt_SendBuffer.cpp53 LOG("ReceiveWindow object is already initialized. Do nothing.\n"); in Initialize()
152 LOG("[SendBuffer] %u bytes read by Pull().\n", m_readByte); in PrintDebugInfo()
Drdt_Utility.h84 #define LOG(...) if(nn::rdt::CTR::GetLogLevel()==nn::rdt::CTR::LOG_LEVEL_ALL)(void) (PRINTF(__VA_AR… macro
106 LOG("offset: %d\n", offsetof(S, t)); in Align()
Drdt_ResendQueue.cpp205LOG("Number of ResendQueue elements: %d, total data size is %d bytes.\n", m_queue.Size(), GetTotal… in PrintDebugInfo()