OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:cmdpath
(Results
1 - 2
of
2
) sorted by null
/external/llvm/tools/bugpoint/
ToolRunner.cpp
409
std::string &
CmdPath
, std::vector<std::string> Args) {
429
CmdPath
= sys::FindProgramByName(Command);
430
if (
CmdPath
.empty()) {
437
Message = "Found command in: " +
CmdPath
+ "\n";
446
std::string
CmdPath
;
448
lexCommand(Message, CompileCommandLine,
CmdPath
, Args);
449
if (
CmdPath
.empty())
452
return new CustomCompiler(
CmdPath
, Args);
462
std::string
CmdPath
;
464
lexCommand(Message, ExecCommandLine,
CmdPath
, Args)
[
all
...]
/frameworks/native/cmds/dumpstate/
utils.c
67
char
cmdpath
[255];
local
74
sprintf(
cmdpath
,"/proc/%d/cmdline", pid);
76
if ((fd = open(
cmdpath
, O_RDONLY)) < 0) {
Completed in 2792 milliseconds