Lines Matching refs:client
194 static void client_cli_parser(at_client_t client) in client_cli_parser() argument
208 if (client) in client_cli_parser()
212 client_odev_status = client->status; in client_cli_parser()
213 client->status = AT_STATUS_CLI; in client_cli_parser()
222 client_odev_rx_ind = client->device->rx_indicate; in client_cli_parser()
223 rt_device_set_rx_indicate(client->device, client_getchar_rx_ind); in client_cli_parser()
231 …i will forward your command to server port(%s). Press 'ESC' to exit.\n", client->device->parent.na… in client_cli_parser()
251 at_obj_exec_cmd(client, RT_NULL, "%.*s", cur_line_len, cur_line); in client_cli_parser()
267 client->status = client_odev_status; in client_cli_parser()
272 rt_device_set_rx_indicate(client->device, client_odev_rx_ind); in client_cli_parser()
314 at_client_t client = RT_NULL; in at() local
322 client = at_client_get(argv[2]); in at()
323 if (client == RT_NULL) in at()
329 client_cli_parser(client); in at()
343 MSH_CMD_EXPORT(at, RT-Thread AT component cli: at <server|client [dev_name]>);