Lines Matching refs:msg_log
1010 struct msg msg_log; in dispatch_thread() local
1012 if (recv_message(sock_fd, &msg_log) < 0) in dispatch_thread()
1014 if (msg_log.type != MSG_TEST_LOG) in dispatch_thread()
1017 fprintf(log_fd, "%s", msg_log.test_log.log_buf); in dispatch_thread()
1018 if (msg_log.test_log.is_last) in dispatch_thread()
1280 struct msg msg_log; in worker_main() local
1284 memset(&msg_log, 0, sizeof(msg_log)); in worker_main()
1285 msg_log.type = MSG_TEST_LOG; in worker_main()
1286 dest = msg_log.test_log.log_buf; in worker_main()
1293 msg_log.test_log.is_last = true; in worker_main()
1295 assert(send_message(sock, &msg_log) >= 0); in worker_main()