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