Lines Matching refs:msgSize
221 int msgSize = typeNum * sizeof(LogTypeDomainStatsRsp); in SendLogTypeDomainStats() local
222 if (msgSize == 0) { in SendLogTypeDomainStats()
225 char* tmp = new (std::nothrow) char[msgSize]; in SendLogTypeDomainStats()
229 if (memset_s(tmp, msgSize, 0, msgSize) != 0) { in SendLogTypeDomainStats()
246 m_communicationSocket->Write(tmp, msgSize); in SendLogTypeDomainStats()
258 int msgSize = dt.size() * sizeof(DomainStatsRsp); in SendDomainStats() local
259 char *tmp = new (std::nothrow) char[msgSize]; in SendDomainStats()
263 if (memset_s(tmp, msgSize, 0, msgSize) != 0) { in SendDomainStats()
283 m_communicationSocket->Write(tmp, msgSize); in SendDomainStats()
305 int msgSize = pTable.size() * sizeof(ProcStatsRsp); in SendProcStats() local
306 if (msgSize == 0) { in SendProcStats()
309 char* tmp = new (std::nothrow) char[msgSize]; in SendProcStats()
313 if (memset_s(tmp, msgSize, 0, msgSize) != 0) { in SendProcStats()
344 m_communicationSocket->Write(tmp, msgSize); in SendProcStats()
360 int msgSize = typeNum * sizeof(LogTypeStatsRsp); in SendProcLogTypeStats() local
361 if (msgSize == 0) { in SendProcLogTypeStats()
364 char* tmp = new (std::nothrow) char[msgSize]; in SendProcLogTypeStats()
368 if (memset_s(tmp, msgSize, 0, msgSize) != 0) { in SendProcLogTypeStats()
386 m_communicationSocket->Write(tmp, msgSize); in SendProcLogTypeStats()
402 int msgSize = tagTable.size() * sizeof(TagStatsRsp); in SendTagStats() local
403 if (msgSize == 0) { in SendTagStats()
406 char* tmp = new (std::nothrow) char[msgSize]; in SendTagStats()
410 if (memset_s(tmp, msgSize, 0, msgSize) != 0) { in SendTagStats()
425 m_communicationSocket->Write(tmp, msgSize); in SendTagStats()