Searched refs:Execute (Results 1 - 25 of 59) sorted by last modified time

123

/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/Unix/
H A DPath.inc566 case AccessMode::Execute:
579 if (Mode == AccessMode::Execute) {
592 return !access(Path, AccessMode::Execute);
H A DProgram.inc176 static bool Execute(ProcessInfo &PI, StringRef Program,
280 // Child process: Execute the program.
306 // Execute!
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-pdbutil/
H A DDumpOutputStyle.cpp1853 PUSH_FLAG(OMFSegDescFlags, Execute, Flags, "execute");
/freebsd-11-stable/contrib/llvm-project/llvm/lib/MCA/
H A DContext.cpp45 auto Execute = local
62 StagePipeline->appendStage(std::move(Execute));
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/
H A DDbiStreamBuilder.cpp339 Ret |= static_cast<uint16_t>(OMFSegDescFlags::Execute);
341 Ret |= static_cast<uint16_t>(OMFSegDescFlags::Execute);
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/
H A DFileSystem.h455 enum class AccessMode { Exist, Write, Execute };
/freebsd-11-stable/contrib/llvm-project/lldb/source/Utility/
H A DRegularExpression.cpp23 bool RegularExpression::Execute( function in class:RegularExpression
H A DFileSpec.cpp472 return g_source_file_regex.Execute(extension.GetStringRef());
/freebsd-11-stable/contrib/llvm-project/lldb/source/Target/
H A DThreadPlanStepInRange.cpp366 avoid_regexp_to_use->Execute(frame_function_name, &matches);
H A DStackFrameRecognizer.cpp111 if (!entry.module_regexp->Execute(module_name.GetStringRef())) continue;
117 if (!entry.symbol_regexp->Execute(function_name.GetStringRef()))
/freebsd-11-stable/contrib/llvm-project/lldb/source/Symbol/
H A DVariable.cpp91 if (regex.Execute(m_name.AsCString()))
392 if (!g_regex.Execute(variable_expr_path, &matches)) {
H A DSymtab.cpp686 if (regexp.Execute(name))
711 if (regexp.Execute(name))
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/PDB/
H A DSymbolFilePDB.cpp1160 if (!regex.Execute(var_name))
1497 if (!regex.Execute(type_name))
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
H A DHashedNameToDIE.cpp416 const bool match = regex.Execute(llvm::StringRef(strp_cstr));
H A DDebugNamesDWARFIndex.cpp105 if (!regex.Execute(nte.getString()))
248 if (!regex.Execute(nte.getString()))
H A DDWARFUnit.cpp614 if (llvm_gcc_regex.Execute(llvm::StringRef(producer_cstr))) {
620 if (g_clang_version_regex.Execute(llvm::StringRef(producer_cstr),
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/minidump/
H A DMinidumpParser.cpp456 bool(prot & (MemoryProtection::Execute | MemoryProtection::ExecuteRead |
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteCommunication.cpp352 if (response_regex.Execute(echo_response.GetStringRef())) {
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/Utility/
H A DDynamicRegisterInfo.cpp141 if (g_bitfield_regex.Execute(slice_str, &matches)) {
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/FreeBSD/
H A DProcessMonitor.cpp201 /// function Execute, thus encapsulating the code that needs to run in the
206 virtual void Execute(ProcessMonitor *monitor) = 0;
218 void Execute(ProcessMonitor *monitor);
228 void ReadOperation::Execute(ProcessMonitor *monitor) { function in class:ReadOperation
243 void Execute(ProcessMonitor *monitor);
253 void WriteOperation::Execute(ProcessMonitor *monitor) { function in class:WriteOperation
268 void Execute(ProcessMonitor *monitor);
278 void ReadRegOperation::Execute(ProcessMonitor *monitor) { function in class:ReadRegOperation
306 void Execute(ProcessMonitor *monitor);
315 void WriteRegOperation::Execute(ProcessMonito function in class:WriteRegOperation
349 void ReadDebugRegOperation::Execute(ProcessMonitor *monitor) { function in class:ReadDebugRegOperation
381 void WriteDebugRegOperation::Execute(ProcessMonitor *monitor) { function in class:WriteDebugRegOperation
411 void ReadGPROperation::Execute(ProcessMonitor *monitor) { function in class:ReadGPROperation
437 void ReadFPROperation::Execute(ProcessMonitor *monitor) { function in class:ReadFPROperation
459 void WriteGPROperation::Execute(ProcessMonitor *monitor) { function in class:WriteGPROperation
481 void WriteFPROperation::Execute(ProcessMonitor *monitor) { function in class:WriteFPROperation
502 void ResumeOperation::Execute(ProcessMonitor *monitor) { function in class:ResumeOperation
532 void SingleStepOperation::Execute(ProcessMonitor *monitor) { function in class:SingleStepOperation
561 void LwpInfoOperation::Execute(ProcessMonitor *monitor) { function in class:LwpInfoOperation
588 void ThreadSuspendOperation::Execute(ProcessMonitor *monitor) { function in class:ThreadSuspendOperation
607 void EventMessageOperation::Execute(ProcessMonitor *monitor) { function in class:EventMessageOperation
633 void KillOperation::Execute(ProcessMonitor *monitor) { function in class:KillOperation
654 void DetachOperation::Execute(ProcessMonitor *monitor) { function in class:DetachOperation
[all...]
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/
H A DRenderScriptRuntime.cpp448 .Execute(coord_s, &matches) &&
449 !RegularExpression("^([0-9]+),([0-9]+)$").Execute(coord_s, &matches) &&
450 !RegularExpression("^([0-9]+)$").Execute(coord_s, &matches))
4145 if (!match_type_list.Execute(option_val)) {
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/
H A DAppleObjCRuntimeV2.cpp613 !regex_up->Execute(llvm::StringRef(class_name)))
651 if (regex_up && !regex_up->Execute(llvm::StringRef()))
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Disassembler/llvm/
H A DDisassemblerLLVMC.cpp386 if (s_regex.Execute(out_string, &matches)) {
/freebsd-11-stable/contrib/llvm-project/lldb/source/Interpreter/
H A DOptionArgParser.cpp218 if (g_symbol_plus_offset_regex.Execute(sref, &matches)) {
H A DCommandObjectRegexCommand.cpp34 if (pos->regex.Execute(command, &matches)) {

Completed in 193 milliseconds

123