OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:Cmd
(Results
1 - 25
of
47
) sorted by relevancy
1
2
/src/sys/external/bsd/compiler_rt/dist/lib/fuzzer/
FuzzerUtilLinux.cpp
20
int ExecuteCommand(const Command &
Cmd
) {
21
std::string CmdLine =
Cmd
.toString();
FuzzerDriver.cpp
216
Command
Cmd
(BaseCmd);
217
Cmd
.setOutputFile(Log);
218
Cmd
.combineOutAndErr();
220
std::string CommandLine =
Cmd
.toString();
223
int ExitCode = ExecuteCommand(
Cmd
);
235
std::string
Cmd
;
239
Cmd
+= S + " ";
241
return
Cmd
;
248
Command
Cmd
(Args);
249
Cmd
.removeFlag("jobs")
[
all
...]
FuzzerUtilFuchsia.cpp
366
int ExecuteCommand(const Command &
Cmd
) {
370
auto Args =
Cmd
.getArguments();
383
if (
Cmd
.hasOutputFile()) {
385
if (
Cmd
.hasFlag("artifact_prefix"))
386
Path =
Cmd
.getFlagValue("artifact_prefix") + "/" +
Cmd
.getOutputFile();
388
Path =
Cmd
.getOutputFile();
403
if (
Cmd
.isOutAndErrCombined())
FuzzerUtilDarwin.cpp
41
int ExecuteCommand(const Command &
Cmd
) {
42
std::string CmdLine =
Cmd
.toString();
FuzzerUtilWindows.cpp
155
int ExecuteCommand(const Command &
Cmd
) {
156
std::string CmdLine =
Cmd
.toString();
FuzzerUtil.h
58
int ExecuteCommand(const Command &
Cmd
);
/src/external/apache2/llvm/dist/clang/lib/Tooling/
GuessTargetAndModeCompilationDatabase.cpp
40
for (auto &
Cmd
: Cmds) {
41
if (
Cmd
.CommandLine.empty())
43
addTargetAndModeForProgramName(
Cmd
.CommandLine,
Cmd
.CommandLine.front());
ExpandResponseFilesCompilationDatabase.cpp
51
for (auto &
Cmd
: Cmds) {
54
Argv.reserve(
Cmd
.CommandLine.size());
55
for (auto &Arg :
Cmd
.CommandLine) {
64
llvm::StringRef(
Cmd
.Directory), *FS);
67
Cmd
.CommandLine = std::move(ExpandedArgv);
InterpolatingCompilationDatabase.cpp
128
CompileCommand
Cmd
;
137
:
Cmd
(std::move(C)), Type(guessType(
Cmd
.Filename)),
138
ClangCLMode(checkIsCLMode(
Cmd
.CommandLine)) {
139
std::vector<std::string> OldArgs = std::move(
Cmd
.CommandLine);
140
Cmd
.CommandLine.clear();
157
Cmd
.CommandLine.emplace_back(OldArgs.front());
197
Cmd
.CommandLine.insert(
Cmd
.CommandLine.end(),
211
// (This consumes the TransferableCommand just to avoid copying
Cmd
)
[
all
...]
CompilationDatabase.cpp
290
for (const auto &
Cmd
: Jobs) {
294
if (
Cmd
.getSource().getKind() == driver::Action::AssembleJobClass ||
295
Cmd
.getSource().getKind() == driver::Action::BackendJobClass ||
296
Cmd
.getSource().getKind() == driver::Action::CompileJobClass) {
297
CompileAnalyzer.run(&
Cmd
.getSource());
/src/external/apache2/llvm/dist/llvm/tools/llvm-symbolizer/
llvm-symbolizer.cpp
103
StringRef InputString, Command &
Cmd
,
108
Cmd
= Command::Code;
110
Cmd
= Command::Data;
112
Cmd
= Command::Frame;
114
// If no
cmd
, assume it's CODE.
115
Cmd
= Command::Code;
152
Command
Cmd
;
156
StringRef(InputString),
Cmd
, ModuleName, Offset)) {
162
if (
Cmd
== Command::Data) {
166
} else if (
Cmd
== Command::Frame)
[
all
...]
/src/external/apache2/llvm/dist/clang/tools/libclang/
CXCompilationDatabase.cpp
41
AllocatedCXCompileCommands(std::vector<CompileCommand>
Cmd
)
42
: CCmd(std::move(
Cmd
)) {}
108
CompileCommand *
cmd
= static_cast<CompileCommand *>(CCmd);
109
return cxstring::createRef(
cmd
->Directory.c_str());
118
CompileCommand *
cmd
= static_cast<CompileCommand *>(CCmd);
119
return cxstring::createRef(
cmd
->Filename.c_str());
137
CompileCommand *
Cmd
= static_cast<CompileCommand *>(CCmd);
139
if (Arg >=
Cmd
->CommandLine.size())
142
return cxstring::createRef(
Cmd
->CommandLine[Arg].c_str());
/src/sys/external/bsd/acpica/dist/os_specific/service_layers/
osgendbg.c
84
char *
Cmd
= Ptr;
109
AcpiUtSafeStrncpy (AcpiGbl_DbLineBuf,
Cmd
, ACPI_DB_LINE_BUFFER_SIZE);
111
Cmd
= Ptr;
/src/external/apache2/llvm/dist/clang/lib/Frontend/
CreateInvocationFromCommandLine.cpp
86
const driver::Command &
Cmd
= cast<driver::Command>(*Jobs.begin());
87
if (StringRef(
Cmd
.getCreator().getName()) != "clang") {
92
const ArgStringList &CCArgs =
Cmd
.getArguments();
/src/sbin/wsconsctl/
map_scan.l
74
Cmd
{
/src/external/apache2/llvm/dist/llvm/tools/dsymutil/
MachOUtils.cpp
123
Seg64.
cmd
= Seg.
cmd
;
143
if (LCI.C.
cmd
== MachO::LC_SEGMENT)
145
else if (LCI.C.
cmd
== MachO::LC_SEGMENT_64)
402
switch (LCI.C.
cmd
) {
404
if (UUIDCmd.
cmd
)
411
MachO::build_version_command
Cmd
;
412
memset(&
Cmd
, 0, sizeof(
Cmd
));
413
Cmd
= InputBinary.getBuildVersionLoadCommand(LCI)
[
all
...]
/src/sys/external/bsd/compiler_rt/dist/lib/fuzzer/tests/
FuzzerUnittest.cpp
873
Command
Cmd
;
876
Cmd
.addArguments(ArgsToAdd);
877
CmdLine =
Cmd
.toString();
880
Cmd
.addArgument("waldo");
881
EXPECT_TRUE(
Cmd
.hasArgument("waldo"));
883
CmdLine =
Cmd
.toString();
886
Cmd
.removeArgument("waldo");
887
EXPECT_FALSE(
Cmd
.hasArgument("waldo"));
889
CmdLine =
Cmd
.toString();
896
Command
Cmd
(ArgsToAdd)
[
all
...]
/src/sys/dev/usb/
if_atureg.h
237
uByte
Cmd
;
261
uByte
Cmd
;
285
uByte
Cmd
;
305
uByte
Cmd
;
320
uByte
Cmd
;
/src/external/bsd/ntp/dist/ntpd/
refclock_oncore.c
3019
u_char
Cmd
[20];
3053
oncore_set_posn(instance); /* this should print posn indirectly thru the As
cmd
*/
3060
memcpy(
Cmd
, oncore_cmd_Az, (size_t) sizeof(oncore_cmd_Az));
3061
w32_buf(&
Cmd
[-2+4], (int)instance->delay);
3062
oncore_sendmsg(instance,
Cmd
, sizeof(oncore_cmd_Az)); /* 6,8,12 */
3065
memcpy(
Cmd
, oncore_cmd_Ay, (size_t) sizeof(oncore_cmd_Ay)); /* some have it, some don't */
3066
w32_buf(&
Cmd
[-2+4], instance->offset); /* will check for hw response */
3067
oncore_sendmsg(instance,
Cmd
, sizeof(oncore_cmd_Ay));
3072
memcpy(
Cmd
, oncore_cmd_Ag, (size_t) sizeof(oncore_cmd_Ag));
3073
Cmd
[-2+4] = instance->Ag
[
all
...]
/src/external/apache2/llvm/dist/clang/tools/scan-build/bin/
scan-build
258
my $
Cmd
= $$Args[0];
260
if ($
Cmd
=~ /configure/ || $
Cmd
=~ /autogen/) {
1121
my $
Cmd
= $Args->[0];
1126
if ($
Cmd
=~ /\bxcodebuild$/) {
1133
if ($
Cmd
=~ /(.*\/?gcc[^\/]*$)/ or
1134
$
Cmd
=~ /(.*\/?cc[^\/]*$)/ or
1135
$
Cmd
=~ /(.*\/?llvm-gcc[^\/]*$)/ or
1136
$
Cmd
=~ /(.*\/?clang[^\/]*$)/ or
1137
$
Cmd
=~ /(.*\/?ccc-analyzer[^\/]*$)/)
[
all
...]
/src/external/apache2/llvm/dist/clang/tools/scan-build/libexec/
ccc-analyzer
200
my $
cmd
= shift @items;
201
die "cannot find 'clang' in 'clang' command\n" if (!($
cmd
=~ /clang/));
210
my $
Cmd
;
216
$
Cmd
= 'cp';
224
$
Cmd
= $Clang;
259
push @PrintArgs,"'$
Cmd
'";
280
my $OutputStream = silent_system($HtmlDir, $
Cmd
, @CmdArgs);
290
if ($Result & 127 and $
Cmd
eq $Clang and defined $HtmlDir) {
/src/external/apache2/llvm/dist/clang/lib/Tooling/DumpTool/
ClangSrcLocDump.cpp
135
const auto &
Cmd
= cast<driver::Command>(*Jobs.begin());
136
const llvm::opt::ArgStringList &CC1Args =
Cmd
.getArguments();
/src/external/apache2/llvm/dist/clang/examples/clang-interpreter/
main.cpp
174
const driver::Command &
Cmd
= cast<driver::Command>(*Jobs.begin());
175
if (llvm::StringRef(
Cmd
.getCreator().getName()) != "clang") {
181
const llvm::opt::ArgStringList &CCArgs =
Cmd
.getArguments();
/src/external/apache2/llvm/dist/clang/lib/Interpreter/
Interpreter.cpp
55
const driver::Command *
Cmd
= cast<driver::Command>(&(*Jobs.begin()));
56
if (llvm::StringRef(
Cmd
->getCreator().getName()) != "clang")
60
return &
Cmd
->getArguments();
/src/crypto/external/apache2/openssl/dist/util/perl/OpenSSL/
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')) {
Completed in 60 milliseconds
1
2
Indexes created Thu Apr 23 00:23:13 UTC 2026