Lines Matching refs:tmp
83 char* tmp = new (std::nothrow) char[msgSize]; in ReceiveProcTagStats() local
84 if (tmp == nullptr) { in ReceiveProcTagStats()
88 if (memset_s(tmp, msgSize, 0, msgSize) != 0) { in ReceiveProcTagStats()
89 delete []tmp; in ReceiveProcTagStats()
90 tmp = nullptr; in ReceiveProcTagStats()
93 if (GetRsp(tmp, msgSize) != RET_SUCCESS) { in ReceiveProcTagStats()
95 delete []tmp; in ReceiveProcTagStats()
96 tmp = nullptr; in ReceiveProcTagStats()
99 pStats.tStats = reinterpret_cast<TagStatsRsp*>(tmp); in ReceiveProcTagStats()
113 char* tmp = new (std::nothrow) char[msgSize]; in ReceiveProcLogTypeStats() local
114 if (tmp == nullptr) { in ReceiveProcLogTypeStats()
118 if (memset_s(tmp, msgSize, 0, msgSize) != 0) { in ReceiveProcLogTypeStats()
119 delete []tmp; in ReceiveProcLogTypeStats()
120 tmp = nullptr; in ReceiveProcLogTypeStats()
123 if (GetRsp(tmp, msgSize) != RET_SUCCESS) { in ReceiveProcLogTypeStats()
125 delete []tmp; in ReceiveProcLogTypeStats()
126 tmp = nullptr; in ReceiveProcLogTypeStats()
129 pStats.lStats = reinterpret_cast<LogTypeStatsRsp*>(tmp); in ReceiveProcLogTypeStats()
143 char* tmp = new (std::nothrow) char[msgSize]; in ReceiveProcStats() local
144 if (tmp == nullptr) { in ReceiveProcStats()
148 if (memset_s(tmp, msgSize, 0, msgSize) != 0) { in ReceiveProcStats()
149 delete []tmp; in ReceiveProcStats()
150 tmp = nullptr; in ReceiveProcStats()
153 if (GetRsp(tmp, msgSize) != RET_SUCCESS) { in ReceiveProcStats()
155 delete []tmp; in ReceiveProcStats()
156 tmp = nullptr; in ReceiveProcStats()
159 rsp.pStats = reinterpret_cast<ProcStatsRsp*>(tmp); in ReceiveProcStats()
176 char* tmp = new (std::nothrow) char[msgSize]; in ReceiveDomainTagStats() local
177 if (tmp == nullptr) { in ReceiveDomainTagStats()
181 if (memset_s(tmp, msgSize, 0, msgSize) != 0) { in ReceiveDomainTagStats()
182 delete []tmp; in ReceiveDomainTagStats()
183 tmp = nullptr; in ReceiveDomainTagStats()
186 if (GetRsp(tmp, msgSize) != RET_SUCCESS) { in ReceiveDomainTagStats()
188 delete []tmp; in ReceiveDomainTagStats()
189 tmp = nullptr; in ReceiveDomainTagStats()
192 dStats.tStats = reinterpret_cast<TagStatsRsp*>(tmp); in ReceiveDomainTagStats()
207 char* tmp = new (std::nothrow) char[msgSize]; in ReceiveDomainStats() local
208 if (tmp == nullptr) { in ReceiveDomainStats()
212 if (memset_s(tmp, msgSize, 0, msgSize) != 0) { in ReceiveDomainStats()
213 delete []tmp; in ReceiveDomainStats()
214 tmp = nullptr; in ReceiveDomainStats()
217 if (GetRsp(tmp, msgSize) != RET_SUCCESS) { in ReceiveDomainStats()
219 delete []tmp; in ReceiveDomainStats()
220 tmp = nullptr; in ReceiveDomainStats()
223 ldStats.dStats = reinterpret_cast<DomainStatsRsp*>(tmp); in ReceiveDomainStats()
237 char* tmp = new (std::nothrow) char[msgSize]; in ReceiveLogTypeDomainStats() local
238 if (tmp == nullptr) { in ReceiveLogTypeDomainStats()
242 if (memset_s(tmp, msgSize, 0, msgSize) != 0) { in ReceiveLogTypeDomainStats()
243 delete []tmp; in ReceiveLogTypeDomainStats()
244 tmp = nullptr; in ReceiveLogTypeDomainStats()
247 if (GetRsp(tmp, msgSize) != RET_SUCCESS) { in ReceiveLogTypeDomainStats()
249 delete []tmp; in ReceiveLogTypeDomainStats()
250 tmp = nullptr; in ReceiveLogTypeDomainStats()
253 rsp.ldStats = reinterpret_cast<LogTypeDomainStatsRsp*>(tmp); in ReceiveLogTypeDomainStats()