• Home
  • Raw
  • Download

Lines Matching refs:msgSize

209     int msgSize = typeNum * sizeof(LogTypeDomainStatsRsp);  in SendLogTypeDomainStats()  local
210 if (msgSize == 0) { in SendLogTypeDomainStats()
213 char* tmp = new (std::nothrow) char[msgSize]; in SendLogTypeDomainStats()
217 if (memset_s(tmp, msgSize, 0, msgSize) != 0) { in SendLogTypeDomainStats()
234 m_communicationSocket->Write(tmp, msgSize); in SendLogTypeDomainStats()
246 int msgSize = dt.size() * sizeof(DomainStatsRsp); in SendDomainStats() local
247 char *tmp = new (std::nothrow) char[msgSize]; in SendDomainStats()
251 if (memset_s(tmp, msgSize, 0, msgSize) != 0) { in SendDomainStats()
271 m_communicationSocket->Write(tmp, msgSize); in SendDomainStats()
293 int msgSize = pTable.size() * sizeof(ProcStatsRsp); in SendProcStats() local
294 if (msgSize == 0) { in SendProcStats()
297 char* tmp = new (std::nothrow) char[msgSize]; in SendProcStats()
301 if (memset_s(tmp, msgSize, 0, msgSize) != 0) { in SendProcStats()
332 m_communicationSocket->Write(tmp, msgSize); in SendProcStats()
348 int msgSize = typeNum * sizeof(LogTypeStatsRsp); in SendProcLogTypeStats() local
349 if (msgSize == 0) { in SendProcLogTypeStats()
352 char* tmp = new (std::nothrow) char[msgSize]; in SendProcLogTypeStats()
356 if (memset_s(tmp, msgSize, 0, msgSize) != 0) { in SendProcLogTypeStats()
374 m_communicationSocket->Write(tmp, msgSize); in SendProcLogTypeStats()
390 int msgSize = tagTable.size() * sizeof(TagStatsRsp); in SendTagStats() local
391 if (msgSize == 0) { in SendTagStats()
394 char* tmp = new (std::nothrow) char[msgSize]; in SendTagStats()
398 if (memset_s(tmp, msgSize, 0, msgSize) != 0) { in SendTagStats()
413 m_communicationSocket->Write(tmp, msgSize); in SendTagStats()