• Home
  • Raw
  • Download

Lines Matching refs:msgSize

208     int msgSize = typeNum * sizeof(LogTypeDomainStatsRsp);  in SendLogTypeDomainStats()  local
209 if (msgSize == 0) { in SendLogTypeDomainStats()
212 char* tmp = new (std::nothrow) char[msgSize]; in SendLogTypeDomainStats()
216 if (memset_s(tmp, msgSize, 0, msgSize) != 0) { in SendLogTypeDomainStats()
233 m_communicationSocket->Write(tmp, msgSize); in SendLogTypeDomainStats()
245 int msgSize = dt.size() * sizeof(DomainStatsRsp); in SendDomainStats() local
246 char *tmp = new (std::nothrow) char[msgSize]; in SendDomainStats()
250 if (memset_s(tmp, msgSize, 0, msgSize) != 0) { in SendDomainStats()
270 m_communicationSocket->Write(tmp, msgSize); in SendDomainStats()
292 int msgSize = pTable.size() * sizeof(ProcStatsRsp); in SendProcStats() local
293 if (msgSize == 0) { in SendProcStats()
296 char* tmp = new (std::nothrow) char[msgSize]; in SendProcStats()
300 if (memset_s(tmp, msgSize, 0, msgSize) != 0) { in SendProcStats()
331 m_communicationSocket->Write(tmp, msgSize); in SendProcStats()
347 int msgSize = typeNum * sizeof(LogTypeStatsRsp); in SendProcLogTypeStats() local
348 if (msgSize == 0) { in SendProcLogTypeStats()
351 char* tmp = new (std::nothrow) char[msgSize]; in SendProcLogTypeStats()
355 if (memset_s(tmp, msgSize, 0, msgSize) != 0) { in SendProcLogTypeStats()
373 m_communicationSocket->Write(tmp, msgSize); in SendProcLogTypeStats()
389 int msgSize = tagTable.size() * sizeof(TagStatsRsp); in SendTagStats() local
390 if (msgSize == 0) { in SendTagStats()
393 char* tmp = new (std::nothrow) char[msgSize]; in SendTagStats()
397 if (memset_s(tmp, msgSize, 0, msgSize) != 0) { in SendTagStats()
412 m_communicationSocket->Write(tmp, msgSize); in SendTagStats()