| /freebsd/contrib/llvm-project/compiler-rt/lib/fuzzer/ |
| H A D | FuzzerFork.cpp | 66 Command Cmd; member 121 Command Cmd(Args); in CreateNewJob() local 122 Cmd.removeFlag("fork"); in CreateNewJob() 123 Cmd.removeFlag("runs"); in CreateNewJob() 124 Cmd.removeFlag("collect_data_flow"); in CreateNewJob() 126 Cmd.removeArgument(C); in CreateNewJob() 127 Cmd.addFlag("reload", "0"); // working in an isolated dir, no reload. in CreateNewJob() 128 Cmd.addFlag("print_final_stats", "1"); in CreateNewJob() 129 Cmd.addFlag("print_funcs", "0"); // no need to spend time symbolizing. in CreateNewJob() 130 Cmd.addFlag("max_total_time", std::to_string(std::min((size_t)300, JobId))); in CreateNewJob() [all …]
|
| H A D | FuzzerDataFlowTrace.cpp | 268 Command Cmd; in CollectDataFlow() local 269 Cmd.addArgument(DFTBinary); in CollectDataFlow() 270 Cmd.addArgument(F.File); in CollectDataFlow() 271 Cmd.addArgument(OutPath); in CollectDataFlow() 272 Printf("CMD: %s\n", Cmd.toString().c_str()); in CollectDataFlow() 273 ExecuteCommand(Cmd); in CollectDataFlow() 278 Command Cmd; in CollectDataFlow() local 279 Cmd.addArgument(DFTBinary); in CollectDataFlow() 280 Cmd.setOutputFile(FunctionsTxtPath); in CollectDataFlow() 281 ExecuteCommand(Cmd); in CollectDataFlow()
|
| H A D | FuzzerDriver.cpp | 238 Command Cmd(BaseCmd); in WorkerThread() local 239 Cmd.setOutputFile(Log); in WorkerThread() 240 Cmd.combineOutAndErr(); in WorkerThread() 242 std::string CommandLine = Cmd.toString(); in WorkerThread() 245 int ExitCode = ExecuteCommand(Cmd); in WorkerThread() 279 std::string Cmd; in CloneArgsWithoutX() local 283 Cmd += S + " "; in CloneArgsWithoutX() 285 return Cmd; in CloneArgsWithoutX() 292 Command Cmd(Args); in RunInMultipleProcesses() local 293 Cmd.removeFlag("jobs"); in RunInMultipleProcesses() [all …]
|
| H A D | FuzzerUtilFuchsia.cpp | 481 int ExecuteCommand(const Command &Cmd) { in ExecuteCommand() argument 485 auto Args = Cmd.getArguments(); in ExecuteCommand() 502 if (Cmd.hasOutputFile()) { in ExecuteCommand() 503 std::string Path = Cmd.getOutputFile(); in ExecuteCommand() 510 if (!IsAbsolutePath && Cmd.hasFlag("artifact_prefix")) in ExecuteCommand() 511 Path = Cmd.getFlagValue("artifact_prefix") + "/" + Path; in ExecuteCommand() 528 if (Cmd.isOutAndErrCombined()) { in ExecuteCommand() 579 Command Cmd(BaseCmd); in ExecuteCommand() local 580 Cmd.setOutputFile(LogFilePath); in ExecuteCommand() 581 int Ret = ExecuteCommand(Cmd); in ExecuteCommand()
|
| H A D | FuzzerUtilWindows.cpp | 172 int ExecuteCommand(const Command &Cmd) { in ExecuteCommand() argument 173 std::string CmdLine = Cmd.toString(); in ExecuteCommand() 177 bool ExecuteCommand(const Command &Cmd, std::string *CmdOutput) { in ExecuteCommand() argument 178 FILE *Pipe = _popen(Cmd.toString().c_str(), "r"); in ExecuteCommand()
|
| H A D | FuzzerUtilLinux.cpp | 25 int ExecuteCommand(const Command &Cmd) { in ExecuteCommand() argument 26 std::string CmdLine = Cmd.toString(); in ExecuteCommand()
|
| H A D | FuzzerMerge.cpp | 501 Command Cmd(BaseCmd); in CrashResistantMerge() local 502 Cmd.addFlag("merge_control_file", CFPath); in CrashResistantMerge() 505 Cmd.addFlag("merge_inner", IsSetCoverMerge ? "2" : "1"); in CrashResistantMerge() 507 Cmd.setOutputFile(getDevNull()); in CrashResistantMerge() 508 Cmd.combineOutAndErr(); in CrashResistantMerge() 510 auto ExitCode = ExecuteCommand(Cmd); in CrashResistantMerge()
|
| H A D | FuzzerUtilDarwin.cpp | 41 int ExecuteCommand(const Command &Cmd) { in ExecuteCommand() argument 42 std::string CmdLine = Cmd.toString(); in ExecuteCommand()
|
| H A D | FuzzerUtil.h | 59 int ExecuteCommand(const Command &Cmd); 60 bool ExecuteCommand(const Command &Cmd, std::string *CmdOutput);
|
| H A D | FuzzerUtilPosix.cpp | 93 bool ExecuteCommand(const Command &Cmd, std::string *CmdOutput) { in ExecuteCommand() argument 94 FILE *Pipe = popen(Cmd.toString().c_str(), "r"); in ExecuteCommand()
|
| /freebsd/contrib/llvm-project/clang/lib/Tooling/ |
| H A D | GuessTargetAndModeCompilationDatabase.cpp | 40 for (auto &Cmd : Cmds) { in addTargetAndMode() local 41 if (Cmd.CommandLine.empty()) in addTargetAndMode() 43 addTargetAndModeForProgramName(Cmd.CommandLine, Cmd.CommandLine.front()); in addTargetAndMode()
|
| H A D | LocateToolCompilationDatabase.cpp | 42 for (auto &Cmd : Cmds) { in addLocation() local 43 if (Cmd.CommandLine.empty()) in addLocation() 45 std::string &Driver = Cmd.CommandLine.front(); in addLocation()
|
| H A D | ExpandResponseFilesCompilationDatabase.cpp | 48 for (auto &Cmd : Cmds) in expand() local 49 tooling::addExpandedResponseFiles(Cmd.CommandLine, Cmd.Directory, in expand()
|
| H A D | CompilationDatabase.cpp | 285 for (const auto &Cmd : Jobs) { in stripPositionalArgs() local 289 if (Cmd.getSource().getKind() == driver::Action::AssembleJobClass || in stripPositionalArgs() 290 Cmd.getSource().getKind() == driver::Action::BackendJobClass || in stripPositionalArgs() 291 Cmd.getSource().getKind() == driver::Action::CompileJobClass || in stripPositionalArgs() 292 Cmd.getSource().getKind() == driver::Action::PrecompileJobClass) { in stripPositionalArgs() 293 CompileAnalyzer.run(&Cmd.getSource()); in stripPositionalArgs()
|
| /freebsd/contrib/llvm-project/clang/lib/Frontend/ |
| H A D | CreateInvocationFromCommandLine.cpp | 100 auto Cmd = llvm::find_if(Jobs, [](const driver::Command &Cmd) { in createInvocation() argument 101 return StringRef(Cmd.getCreator().getName()) == "clang"; in createInvocation() 103 if (Cmd == Jobs.end()) { in createInvocation() 108 const ArgStringList &CCArgs = Cmd->getArguments(); in createInvocation()
|
| /freebsd/contrib/ntp/ntpd/ |
| H A D | refclock_oncore.c | 3016 u_char Cmd[20]; in oncore_get_timestamp() local 3057 memcpy(Cmd, oncore_cmd_Az, (size_t) sizeof(oncore_cmd_Az)); in oncore_get_timestamp() 3058 w32_buf(&Cmd[-2+4], (int)instance->delay); in oncore_get_timestamp() 3059 oncore_sendmsg(instance, Cmd, sizeof(oncore_cmd_Az)); /* 6,8,12 */ in oncore_get_timestamp() 3062 memcpy(Cmd, oncore_cmd_Ay, (size_t) sizeof(oncore_cmd_Ay)); /* some have it, some don't */ in oncore_get_timestamp() 3063 w32_buf(&Cmd[-2+4], instance->offset); /* will check for hw response */ in oncore_get_timestamp() 3064 oncore_sendmsg(instance, Cmd, sizeof(oncore_cmd_Ay)); in oncore_get_timestamp() 3069 memcpy(Cmd, oncore_cmd_Ag, (size_t) sizeof(oncore_cmd_Ag)); in oncore_get_timestamp() 3070 Cmd[-2+4] = instance->Ag; in oncore_get_timestamp() 3071 oncore_sendmsg(instance, Cmd, sizeo in oncore_get_timestamp() 3528 u_char *cp, Cmd[20]; oncore_load_almanac() local 3792 u_char Cmd[20]; oncore_set_posn() local [all...] |
| /freebsd/contrib/llvm-project/llvm/tools/llvm-symbolizer/ |
| H A D | llvm-symbolizer.cpp | 161 StringRef InputString, Command &Cmd, in parseCommand() argument 166 Cmd = Command::Code; in parseCommand() 168 Cmd = Command::Data; in parseCommand() 170 Cmd = Command::Frame; in parseCommand() 173 Cmd = Command::Code; in parseCommand() 282 void executeCommand(StringRef ModuleName, const T &ModuleSpec, Command Cmd, in executeCommand() argument 292 if (Cmd == Command::Data) { in executeCommand() 295 } else if (Cmd == Command::Frame) { in executeCommand() 340 Command Cmd; in symbolizeInput() local 354 StringRef(InputString), Cmd, ModuleName, BuildID, in symbolizeInput() [all …]
|
| /freebsd/crypto/openssl/util/perl/OpenSSL/ |
| H A D | config.pm | 19 use IPC::Cmd; 55 return undef unless IPC::Cmd::can_run("$CROSS_COMPILE$CC"); 61 return undef unless IPC::Cmd::can_run("$CROSS_COMPILE$CC"); 209 return undef unless IPC::Cmd::can_run('uname'); 309 next unless IPC::Cmd::can_run("$CROSS_COMPILE$_"); 382 if (IPC::Cmd::can_run('cc')) { 410 if (IPC::Cmd::can_run('cl')) {
|
| /freebsd/sys/contrib/dev/acpica/os_specific/service_layers/ |
| H A D | osgendbg.c | 192 char *Cmd = Ptr; in AcpiDbRunRemoteDebugger() local 217 AcpiUtSafeStrncpy (AcpiGbl_DbLineBuf, Cmd, ACPI_DB_LINE_BUFFER_SIZE); in AcpiDbRunRemoteDebugger() 219 Cmd = Ptr; in AcpiDbRunRemoteDebugger()
|
| /freebsd/contrib/llvm-project/llvm/lib/Object/ |
| H A D | MachOObjectFile.cpp | 76 T Cmd; in getStruct() local 77 memcpy(&Cmd, P, sizeof(T)); in getStruct() 79 MachO::swapStruct(Cmd); in getStruct() 80 return Cmd; in getStruct() 89 T Cmd; in getStructOrErr() local 90 memcpy(&Cmd, P, sizeof(T)); in getStructOrErr() 92 MachO::swapStruct(Cmd); in getStructOrErr() 93 return Cmd; in getStructOrErr() 4840 MachO::symtab_command Cmd; in getSymtabLoadCommand() local 4841 Cmd.cmd = MachO::LC_SYMTAB; in getSymtabLoadCommand() [all …]
|
| /freebsd/crypto/openssl/test/recipes/ |
| H A D | 01-test_symbol_presence.t | 12 use IPC::Cmd; 30 unless IPC::Cmd::can_run('nm');
|
| /freebsd/contrib/llvm-project/clang/lib/Tooling/DependencyScanning/ |
| H A D | DependencyScanningWorker.cpp | 673 llvm::function_ref<bool(const driver::Command &Cmd)> Callback) { in forEachDriverJob() 766 CommandLine, *Diags, *FileMgr, [&](const driver::Command &Cmd) { in scanDependencies() argument 767 if (StringRef(Cmd.getCreator().getName()) != "clang") { in scanDependencies() 771 {Cmd.getExecutable(), in scanDependencies() 772 {Cmd.getArguments().begin(), Cmd.getArguments().end()}}); in scanDependencies() 778 Argv.push_back(Cmd.getExecutable()); in scanDependencies() 779 llvm::append_range(Argv, Cmd.getArguments()); in scanDependencies()
|
| /freebsd/sys/contrib/device-tree/Bindings/display/msm/ |
| H A D | mdp4.txt | 34 Port 1 -> DSI1 Cmd/Video 35 Port 2 -> DSI2 Cmd/Video
|
| /freebsd/contrib/llvm-project/llvm/tools/llvm-readobj/ |
| H A D | MachODumper.cpp | 837 StringRef Cmd; in printMachOVersionMin() 840 Cmd = "LC_VERSION_MIN_MACOSX"; in printMachOVersionMin() 843 Cmd = "LC_VERSION_MIN_IPHONEOS"; in printMachOVersionMin() 846 Cmd = "LC_VERSION_MIN_TVOS"; in printMachOVersionMin() 849 Cmd = "LC_VERSION_MIN_WATCHOS"; in printMachOVersionMin() 852 Cmd = "LC_BUILD_VERSION"; in printMachOVersionMin() 862 W.printString("Cmd", Cmd); in printMachOVersionMin() 875 W.printString("Cmd", Cmd); in printMachOVersionMin() 835 StringRef Cmd; printMachOVersionMin() local [all...] |
| /freebsd/contrib/llvm-project/clang/include/clang/Tooling/DependencyScanning/ |
| H A D | DependencyScanningTool.h | 173 void handleBuildCommand(Command Cmd) override { in handleBuildCommand() argument 174 Commands.push_back(std::move(Cmd)); in handleBuildCommand()
|