Searched refs:Execute (Results 1 - 25 of 44) sorted by relevance

12

/freebsd-10.1-release/contrib/llvm/lib/Support/
H A DProgram.cpp25 static bool Execute(ProcessInfo &PI, StringRef Program, const char **args,
34 if (Execute(PI, Program, args, envp, redirects, memoryLimit, ErrMsg)) {
54 if (!Execute(PI, Program, args, envp, redirects, memoryLimit, ErrMsg))
/freebsd-10.1-release/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/
H A DProcessMonitor.cpp212 /// ProcessMonitor must perform via the single virtual function Execute, thus
218 virtual void Execute(ProcessMonitor *monitor) = 0;
233 void Execute(ProcessMonitor *monitor);
244 ReadOperation::Execute(ProcessMonitor *monitor) function in class:ReadOperation
263 void Execute(ProcessMonitor *monitor);
274 WriteOperation::Execute(ProcessMonitor *monitor) function in class:WriteOperation
293 void Execute(ProcessMonitor *monitor);
304 ReadRegOperation::Execute(ProcessMonitor *monitor) function in class:ReadRegOperation
332 void Execute(ProcessMonitor *monitor);
342 WriteRegOperation::Execute(ProcessMonito function in class:WriteRegOperation
380 ReadDebugRegOperation::Execute(ProcessMonitor *monitor) function in class:ReadDebugRegOperation
418 WriteDebugRegOperation::Execute(ProcessMonitor *monitor) function in class:WriteDebugRegOperation
452 ReadGPROperation::Execute(ProcessMonitor *monitor) function in class:ReadGPROperation
483 ReadFPROperation::Execute(ProcessMonitor *monitor) function in class:ReadFPROperation
510 WriteGPROperation::Execute(ProcessMonitor *monitor) function in class:WriteGPROperation
537 WriteFPROperation::Execute(ProcessMonitor *monitor) function in class:WriteFPROperation
562 ResumeOperation::Execute(ProcessMonitor *monitor) function in class:ResumeOperation
599 SingleStepOperation::Execute(ProcessMonitor *monitor) function in class:SingleStepOperation
632 LwpInfoOperation::Execute(ProcessMonitor *monitor) function in class:LwpInfoOperation
663 ThreadSuspendOperation::Execute(ProcessMonitor *monitor) function in class:ThreadSuspendOperation
688 EventMessageOperation::Execute(ProcessMonitor *monitor) function in class:EventMessageOperation
718 KillOperation::Execute(ProcessMonitor *monitor) function in class:KillOperation
743 DetachOperation::Execute(ProcessMonitor *monitor) function in class:DetachOperation
[all...]
/freebsd-10.1-release/contrib/llvm/tools/clang/lib/Driver/
H A DJob.cpp1 //===--- Job.cpp - Command to Execute -------------------------------------===//
116 int Command::Execute(const StringRef **Redirects, std::string *ErrMsg, function in class:Command
150 int FallbackCommand::Execute(const StringRef **Redirects, std::string *ErrMsg, function in class:FallbackCommand
152 int PrimaryStatus = Command::Execute(Redirects, ErrMsg, ExecutionFailed);
162 int SecondaryStatus = Fallback->Execute(Redirects, ErrMsg, ExecutionFailed);
H A DCompilation.cpp161 int Res = C.Execute(Redirects, &Error, &ExecutionFailed);
/freebsd-10.1-release/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/
H A DVirtualCallChecker.cpp87 void Execute() { function in class:__anon3602::WalkAST
226 walker.Execute();
234 walker.Execute();
/freebsd-10.1-release/contrib/llvm/tools/clang/include/clang/Driver/
H A DJob.h1 //===--- Job.h - Commands to Execute ----------------------------*- C++ -*-===//
82 virtual int Execute(const StringRef **Redirects, std::string *ErrMsg,
110 virtual int Execute(const StringRef **Redirects, std::string *ErrMsg,
/freebsd-10.1-release/contrib/llvm/tools/lldb/include/lldb/Interpreter/
H A DCommandObjectMultiword.h79 Execute (const char *args_string,
174 Execute (const char *args_string,
H A DCommandObject.h483 Execute (const char *args_string, CommandReturnObject &result) = 0;
568 Execute (const char *args_string, CommandReturnObject &result);
594 Execute (const char *args_string, CommandReturnObject &result);
/freebsd-10.1-release/contrib/llvm/tools/lli/Unix/
H A DRemoteTargetExternal.inc60 // Execute the child process.
/freebsd-10.1-release/contrib/llvm/tools/lldb/source/Commands/
H A DCommandObjectMultiword.cpp112 CommandObjectMultiword::Execute(const char *args_string, CommandReturnObject &result) function in class:CommandObjectMultiword
136 // Now call CommandObject::Execute to process and options in 'rest_of_line'. From there
137 // the command-specific version of Execute will be called, with the processed arguments.
141 sub_cmd_obj->Execute (args_string, result);
510 CommandObjectProxy::Execute (const char *args_string, function in class:CommandObjectProxy
515 return proxy_command->Execute (args_string, result);
/freebsd-10.1-release/contrib/llvm/tools/lldb/include/lldb/Core/
H A DRegularExpression.h159 /// expression matches. Execute() can be called after the regular
183 /// Execute a regular expression match using the compiled regular
206 Execute (const char* string, Match *match = NULL, int execute_flags = 0) const;
H A DUniqueCStringMap.h248 if (regex.Execute(pos->cstring))
/freebsd-10.1-release/contrib/llvm/tools/lldb/include/lldb/Expression/
H A DClangUserExpression.h120 /// Execute the parsed expression
134 /// needed because Execute can push a thread plan that will hold onto
147 Execute (Stream &error_stream,
/freebsd-10.1-release/contrib/llvm/tools/lldb/source/Interpreter/
H A DCommandObjectRegexCommand.cpp65 if (pos->regex.Execute (command, &regex_match))
/freebsd-10.1-release/contrib/llvm/tools/clang/include/clang/Frontend/
H A DFrontendAction.h202 /// be aborted and neither Execute() nor EndSourceFile() should be called.
206 bool Execute();
/freebsd-10.1-release/contrib/llvm/tools/lldb/source/Core/
H A DRegularExpression.cpp86 // expression matches. Execute() can be called after the regular
121 // Execute a regular expression match using the compiled regular
129 RegularExpression::Execute(const char* s, Match *match, int execute_flags) const function in class:RegularExpression
/freebsd-10.1-release/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFDebugPubnamesSet.cpp162 if ( regex.Execute(pos->name.c_str()) )
H A DDWARFCompileUnit.cpp943 if (llvm_gcc_regex.Execute (producer_cstr))
951 if (g_clang_version_regex.Execute (producer_cstr, &regex_match))
/freebsd-10.1-release/contrib/llvm/lib/Support/Unix/
H A DProgram.inc183 static bool Execute(ProcessInfo &PI, StringRef Program, const char **args,
268 // Child process: Execute the program.
295 // Execute!
H A DSignals.inc178 raise(Sig); // Execute the default handler.
/freebsd-10.1-release/contrib/llvm/tools/clang/lib/Rewrite/Frontend/
H A DFrontendActions.cpp125 FixAction->Execute();
/freebsd-10.1-release/contrib/llvm/tools/lldb/source/
H A Dlldb.cpp405 return regex.Execute (name);
/freebsd-10.1-release/contrib/llvm/tools/lldb/source/Expression/
H A DClangUserExpression.cpp756 ClangUserExpression::Execute (Stream &error_stream, function in class:ClangUserExpression
853 log->Printf("-- [ClangUserExpression::Execute] Execution of expression begins --");
867 log->Printf("-- [ClangUserExpression::Execute] Execution of expression completed --");
990 execution_results = user_expression_sp->Execute (error_stream,
/freebsd-10.1-release/contrib/llvm/tools/lldb/source/Symbol/
H A DVariable.cpp80 if (regex.Execute (m_name.AsCString()))
401 if (g_regex.Execute(variable_expr_path, &regex_match))
/freebsd-10.1-release/contrib/llvm/tools/lldb/source/Target/
H A DThreadPlanStepInRange.cpp326 bool return_value = avoid_regexp_to_use->Execute(frame_function_name, &regex_match);

Completed in 249 milliseconds

12