Lines Matching refs:command_line
63 CommandLine command_line(CommandLine::NO_PROGRAM); in LLVMFuzzerTestOneInput() local
69 command_line = CommandLine(GenerateFilePath(provider)); in LLVMFuzzerTestOneInput()
72 command_line = CommandLine(GenerateNativeStringVector(provider)); in LLVMFuzzerTestOneInput()
76 command_line.ParseFromString(GenerateNativeString(provider)); in LLVMFuzzerTestOneInput()
89 command_line.AppendSwitchNative(name, value); in LLVMFuzzerTestOneInput()
90 CHECK(command_line.HasSwitch(name)); in LLVMFuzzerTestOneInput()
91 CHECK(command_line.GetSwitchValueNative(name) == value); in LLVMFuzzerTestOneInput()
99 command_line.RemoveSwitch(name); in LLVMFuzzerTestOneInput()
100 CHECK(!command_line.HasSwitch(name)); in LLVMFuzzerTestOneInput()
101 CHECK(command_line.GetSwitchValueNative(name).empty()); in LLVMFuzzerTestOneInput()
109 command_line.AppendArgNative(arg); in LLVMFuzzerTestOneInput()
116 command_line.PrependWrapper(wrapper); in LLVMFuzzerTestOneInput()
123 std::ignore = command_line.HasSwitch(name); in LLVMFuzzerTestOneInput()
124 std::ignore = command_line.GetSwitchValueNative(name); in LLVMFuzzerTestOneInput()
131 std::ignore = command_line.GetCommandLineString(); in LLVMFuzzerTestOneInput()
132 std::ignore = command_line.GetArgumentsString(); in LLVMFuzzerTestOneInput()
134 std::ignore = command_line.GetCommandLineStringForShell(); in LLVMFuzzerTestOneInput()
135 std::ignore = command_line.GetCommandLineStringWithUnsafeInsertSequences(); in LLVMFuzzerTestOneInput()