Lines Matching +full:de +full:- +full:noise
1 // SPDX-License-Identifier: GPL-2.0
3 * Copyright (C) 2021 Red Hat Inc, Daniel Bristot de Oliveira <bristot@kernel.org>
15 * rtla_usage - print rtla usage
28 " osnoise - gives information about the operating system noise (osnoise)", in rtla_usage()
29 " hwnoise - gives information about hardware-related noise", in rtla_usage()
30 " timerlat - measures the timer irq and thread latency", in rtla_usage()
41 * run_command - try to run a rtla tool command
49 osnoise_main(argc-start_position, &argv[start_position]); in run_command()
52 hwnoise_main(argc-start_position, &argv[start_position]); in run_command()
55 timerlat_main(argc-start_position, &argv[start_position]); in run_command()
76 if (strcmp(argv[1], "-h") == 0) { in main()
78 } else if (strcmp(argv[1], "--help") == 0) { in main()