Lines Matching refs:args
26 struct args { struct
43 parse_args(struct args *args) in parse_args() argument
45 args->verbose = 0; in parse_args()
46 args->voucher = 0; in parse_args()
47 args->server_port_name = "TEST_KQWORKLOOP_LIMITS"; in parse_args()
48 args->server_port = MACH_PORT_NULL; in parse_args()
49 args->reply_port = MACH_PORT_NULL; in parse_args()
50 args->num_msgs = 1; in parse_args()
51 args->request_msg_size = sizeof(ipc_complex_message) - sizeof(mach_msg_trailer_t); in parse_args()
52 args->reply_msg_size = sizeof(ipc_complex_message) - sizeof(mach_msg_trailer_t); in parse_args()
53 args->request_msg = &icm_request; in parse_args()
54 args->reply_msg = NULL; in parse_args()
55 args->client_pid = getpid(); in parse_args()
61 struct args client_args = {}; in connect_to_server()