HomeSort by relevance Sort by last modified time
    Searched refs:ErrMsg (Results 1 - 25 of 49) sorted by null

1 2

  /external/llvm/utils/not/
not.cpp 32 std::string ErrMsg;
34 &ErrMsg);
44 errs() << "Error: " << ErrMsg << "\n";
  /frameworks/compile/libbcc/bcinfo/BitReader_2_7/
BitReader_2_7.h 38 std::string *ErrMsg);
42 std::string *ErrMsg);
46 std::string *ErrMsg);
  /frameworks/compile/libbcc/bcinfo/BitReader_3_0/
BitReader_3_0.h 37 std::string *ErrMsg);
41 std::string *ErrMsg);
45 std::string *ErrMsg);
  /external/llvm/lib/Support/
Program.cpp 27 unsigned memoryLimit, std::string *ErrMsg);
31 unsigned memoryLimit, std::string *ErrMsg,
34 if (Execute(PI, Program, args, envp, redirects, memoryLimit, ErrMsg)) {
38 PI, secondsToWait, /*WaitUntilTerminates=*/secondsToWait == 0, ErrMsg);
50 unsigned memoryLimit, std::string *ErrMsg,
55 if (!Execute(PI, Program, args, envp, redirects, memoryLimit, ErrMsg))
GraphWriter.cpp 84 std::string &ErrMsg) {
88 &ErrMsg)) {
89 errs() << "Error: " << ErrMsg << "\n";
95 sys::ExecuteNoWait(ExecPath, args.data(), nullptr, nullptr, 0, &ErrMsg);
137 std::string ErrMsg;
149 return ExecGraphViewer(ViewerPath, args, Filename, wait, ErrMsg);
164 return ExecGraphViewer(ViewerPath, args, Filename, wait, ErrMsg);
197 if (ExecGraphViewer(GeneratorPath, args, Filename, wait, ErrMsg))
220 ErrMsg.clear();
221 return ExecGraphViewer(ViewerPath, args, PSFilename, wait, ErrMsg);
    [all...]
  /external/llvm/lib/Support/Unix/
Unix.h 62 /// This function builds an error message into \p ErrMsg using the \p prefix
70 std::string* ErrMsg, const std::string& prefix, int errnum = -1) {
71 if (!ErrMsg)
75 *ErrMsg = prefix + ": " + llvm::sys::StrError(errnum);
  /external/llvm/include/llvm/Support/
DynamicLibrary.h 62 /// instance on failure (see isValid()). \p *errMsg will only be modified
68 std::string *errMsg = nullptr);
76 std::string *ErrMsg = nullptr) {
77 return !getPermanentLibrary(Filename, ErrMsg).isValid();
Memory.h 98 /// \p ErrMsg [out] returns a string describing any error that occurred.
118 /// a null memory block and fills in *ErrMsg.
123 std::string *ErrMsg = nullptr);
130 /// in *ErrMsg.
132 static bool ReleaseRWX(MemoryBlock &block, std::string *ErrMsg = nullptr);
143 static bool setExecutable(MemoryBlock &M, std::string *ErrMsg = nullptr);
148 static bool setWritable(MemoryBlock &M, std::string *ErrMsg = nullptr);
Signals.h 31 bool RemoveFileOnSignal(StringRef Filename, std::string* ErrMsg = nullptr);
Program.h 109 std::string *ErrMsg = nullptr, ///< If non-zero, provides a pointer to a
123 std::string *ErrMsg = nullptr, bool *ExecutionFailed = nullptr);
144 std::string *ErrMsg = nullptr ///< If non-zero, provides a pointer to a
  /external/llvm/tools/bugpoint/
FindBugs.cpp 34 std::string &ErrMsg) {
84 return debugCodeGeneratorCrash(ErrMsg);
102 debugCodeGeneratorCrash(ErrMsg);
BugDriver.cpp 153 bool BugDriver::run(std::string &ErrMsg) {
157 return runManyPasses(PassesToRun, ErrMsg);
182 return debugCodeGeneratorCrash(ErrMsg);
194 return debugCodeGeneratorCrash(ErrMsg);
211 return debugCodeGeneratorCrash(ErrMsg);
218 return debugCodeGeneratorCrash(ErrMsg);
228 return debugCodeGeneratorCrash(ErrMsg);
OptimizerDriver.cpp 217 std::string ErrMsg;
220 Timeout, MemoryLimit, &ErrMsg);
237 outs() << "Execute failed: " << ErrMsg << "\n";
239 outs() << "Crashed: " << ErrMsg << "\n";
  /external/clang/lib/Driver/
Job.cpp 121 int Command::Execute(const StringRef **Redirects, std::string *ErrMsg,
131 /*memoryLimit*/ 0, ErrMsg, ExecutionFailed);
155 int FallbackCommand::Execute(const StringRef **Redirects, std::string *ErrMsg,
157 int PrimaryStatus = Command::Execute(Redirects, ErrMsg, ExecutionFailed);
161 // Clear ExecutionFailed and ErrMsg before falling back.
162 if (ErrMsg)
163 ErrMsg->clear();
170 int SecondaryStatus = Fallback->Execute(Redirects, ErrMsg, ExecutionFailed);
  /frameworks/compile/slang/BitWriter_2_9/
ReaderWriter_2_9.h 33 /// in *ErrMsg with an error description if ErrMsg is non-null.
36 std::string *ErrMsg = 0);
41 /// of 'buffer'. On error, this returns "", and fills in *ErrMsg
42 /// if ErrMsg is non-null.
45 std::string *ErrMsg = 0);
48 /// If an error occurs, this returns null and fills in *ErrMsg if it is
51 std::string *ErrMsg = 0);
  /frameworks/compile/slang/BitWriter_2_9_func/
ReaderWriter_2_9_func.h 33 /// in *ErrMsg with an error description if ErrMsg is non-null.
36 std::string *ErrMsg = 0);
41 /// of 'buffer'. On error, this returns "", and fills in *ErrMsg
42 /// if ErrMsg is non-null.
45 std::string *ErrMsg = 0);
48 /// If an error occurs, this returns null and fills in *ErrMsg if it is
51 std::string *ErrMsg = 0);
  /frameworks/compile/slang/BitWriter_3_2/
ReaderWriter_3_2.h 33 /// in *ErrMsg with an error description if ErrMsg is non-null.
36 std::string *ErrMsg = 0);
41 /// of 'buffer'. On error, this returns "", and fills in *ErrMsg
42 /// if ErrMsg is non-null.
45 std::string *ErrMsg = 0);
48 /// If an error occurs, this returns null and fills in *ErrMsg if it is
51 std::string *ErrMsg = 0);
  /external/llvm/lib/Support/Windows/
WindowsSupport.h 42 inline bool MakeErrMsg(std::string* ErrMsg, const std::string& prefix) {
43 if (!ErrMsg)
50 *ErrMsg = prefix + buffer;
52 *ErrMsg = prefix + "Unknown error";
  /external/llvm/lib/ExecutionEngine/MCJIT/
SectionMemoryManager.cpp 105 bool SectionMemoryManager::finalizeMemory(std::string *ErrMsg)
117 if (ErrMsg) {
118 *ErrMsg = ec.message();
130 if (ErrMsg) {
131 *ErrMsg = ec.message();
  /external/llvm/include/llvm/ExecutionEngine/
RTDyldMemoryManager.h 117 virtual bool finalizeMemory(std::string *ErrMsg = nullptr) = 0;
SectionMemoryManager.h 74 bool finalizeMemory(std::string *ErrMsg = nullptr) override;
  /external/clang/include/clang/Driver/
Job.h 82 virtual int Execute(const StringRef **Redirects, std::string *ErrMsg,
112 int Execute(const StringRef **Redirects, std::string *ErrMsg,
  /external/llvm/include/llvm/Bitcode/
ReaderWriter.h 37 /// On error, this returns null, and fills in *ErrMsg with an error
38 /// description if ErrMsg is non-null.
42 std::string *ErrMsg = nullptr);
  /external/llvm/tools/lli/
RemoteMemoryManager.h 85 bool finalizeMemory(std::string *ErrMsg) override;
  /external/llvm/lib/ExecutionEngine/
ExecutionEngineBindings.cpp 365 bool finalizeMemory(std::string *ErrMsg) override;
405 bool SimpleBindingMemoryManager::finalizeMemory(std::string *ErrMsg) {
411 if (ErrMsg)
412 *ErrMsg = errMsgCString;

Completed in 274 milliseconds

1 2