Lines Matching refs:status
88 void HdcForwardBase::ListenCallback(uv_stream_t *server, const int status)
94 if (status == -1 || !ctxListen->ready) {
95 WRITE_LOG(LOG_FATAL, "ListenCallback status:%d id:%u ready:%d",
96 status, ctxListen->id, ctxListen->ready);
274 void HdcForwardBase::ConnectTarget(uv_connect_t *connection, int status)
279 if (status < 0) {
282 uv_err_name_r(status, buf, bufSize);
283 WRITE_LOG(LOG_WARN, "Forward connect result:%d error:%s", status, buf);
285 thisClass->SetupPointContinue(ctx, status);
317 bool HdcForwardBase::SetupPointContinue(HCtxForward ctx, int status)
321 uint8_t flag = status > 0;
326 if (status < 0) {
723 void HdcForwardBase::SendCallbackForwardBuf(uv_write_t *req, int status)
727 if (status < 0 && !ctx->finish) {
728 WRITE_LOG(LOG_DEBUG, "SendCallbackForwardBuf ctx->type:%d, status:%d finish", ctx->type, status);