Home
last modified time | relevance | path

Searched refs:interpreter (Results 1 – 25 of 215) sorted by relevance

123456789

/freebsd/contrib/llvm-project/lldb/include/lldb/Interpreter/
H A DCommandCompletions.h28 CommandInterpreter &interpreter, uint32_t completion_mask,
32 static void DiskFiles(CommandInterpreter &interpreter,
38 static void DiskDirectories(CommandInterpreter &interpreter,
46 static void RemoteDiskFiles(CommandInterpreter &interpreter,
50 static void RemoteDiskDirectories(CommandInterpreter &interpreter,
54 static void SourceFiles(CommandInterpreter &interpreter,
57 static void Modules(CommandInterpreter &interpreter,
60 static void ModuleUUIDs(CommandInterpreter &interpreter,
63 static void Symbols(CommandInterpreter &interpreter,
66 static void SettingsNames(CommandInterpreter &interpreter,
[all...]
/freebsd/contrib/llvm-project/lldb/source/Commands/
H A DCommandCompletions.cpp43 typedef void (*CompletionCallback)(CommandInterpreter &interpreter,
54 CommandInterpreter &interpreter, uint32_t completion_mask, in InvokeCommonCompletionCallbacks() argument
101 common_completions[i].callback(interpreter, request, searcher); in InvokeCommonCompletionCallbacks()
112 Completer(CommandInterpreter &interpreter, CompletionRequest &request) in Completer() argument
113 : m_interpreter(interpreter), m_request(request) {} in Completer()
138 SourceFileCompleter(CommandInterpreter &interpreter, in SourceFileCompleter() argument
140 : Completer(interpreter, request) { in SourceFileCompleter()
200 SymbolCompleter(CommandInterpreter &interpreter, CompletionRequest &request) in SymbolCompleter() argument
201 : Completer(interpreter, request) { in SymbolCompleter()
265 ModuleCompleter(CommandInterpreter &interpreter, CompletionRequest &request) in ModuleCompleter() argument
[all …]
H A DCommandObjectType.cpp124 CommandOptions(CommandInterpreter &interpreter) {} in CommandOptions() argument
158 CommandObjectTypeSummaryAdd(CommandInterpreter &interpreter);
182 ScriptInterpreter *interpreter = GetDebugger().GetScriptInterpreter(); in IOHandlerInputComplete() local
183 if (interpreter) { in IOHandlerInputComplete()
194 ScriptInterpreter *interpreter = GetDebugger().GetScriptInterpreter(); in IOHandlerInputComplete() local
195 if (interpreter) { in IOHandlerInputComplete()
197 if (interpreter->GenerateTypeScriptFunction(lines, in IOHandlerInputComplete()
419 ScriptInterpreter *interpreter = GetDebugger().GetScriptInterpreter(); in IOHandlerInputComplete() local
420 if (interpreter) { in IOHandlerInputComplete()
431 ScriptInterpreter *interpreter = GetDebugger().GetScriptInterpreter(); in IOHandlerInputComplete() local
[all …]
H A DCommandObjectLog.cpp51 CommandObjectLogEnable(CommandInterpreter &interpreter) in CommandObjectLogEnable() argument
52 : CommandObjectParsed(interpreter, "log enable", in CommandObjectLogEnable()
223 CommandObjectLogDisable(CommandInterpreter &interpreter) in CommandObjectLogDisable() argument
224 : CommandObjectParsed(interpreter, "log disable", in CommandObjectLogDisable()
286 CommandObjectLogList(CommandInterpreter &interpreter) in CommandObjectLogList() argument
287 : CommandObjectParsed(interpreter, "log list", in CommandObjectLogList()
323 CommandObjectLogDump(CommandInterpreter &interpreter) in CommandObjectLogDump() argument
324 : CommandObjectParsed(interpreter, "log dump", in CommandObjectLogDump()
419 CommandObjectLogTimerEnable(CommandInterpreter &interpreter) in CommandObjectLogTimerEnable() argument
420 : CommandObjectParsed(interpreter, "log timers enable", in CommandObjectLogTimerEnable()
[all …]
H A DCommandObjectPlatform.cpp148 CommandObjectPlatformSelect(CommandInterpreter &interpreter) in CommandObjectPlatformSelect() argument
149 : CommandObjectParsed(interpreter, "platform select", in CommandObjectPlatformSelect()
205 CommandObjectPlatformList(CommandInterpreter &interpreter) in CommandObjectPlatformList() argument
206 : CommandObjectParsed(interpreter, "platform list", in CommandObjectPlatformList()
242 CommandObjectPlatformStatus(CommandInterpreter &interpreter) in CommandObjectPlatformStatus() argument
243 : CommandObjectParsed(interpreter, "platform status", in CommandObjectPlatformStatus()
273 CommandObjectPlatformConnect(CommandInterpreter &interpreter) in CommandObjectPlatformConnect() argument
275 interpreter, "platform connect", in CommandObjectPlatformConnect()
323 CommandObjectPlatformDisconnect(CommandInterpreter &interpreter) in CommandObjectPlatformDisconnect() argument
324 : CommandObjectParsed(interpreter, "platform disconnect", in CommandObjectPlatformDisconnect()
[all …]
H A DCommandObjectStats.cpp22 CommandObjectStatsEnable(CommandInterpreter &interpreter) in CommandObjectStatsEnable() argument
23 : CommandObjectParsed(interpreter, "enable", in CommandObjectStatsEnable()
43 CommandObjectStatsDisable(CommandInterpreter &interpreter) in CommandObjectStatsDisable() argument
44 : CommandObjectParsed(interpreter, "disable", in CommandObjectStatsDisable()
128 CommandObjectStatsDump(CommandInterpreter &interpreter) in CommandObjectStatsDump() argument
130 interpreter, "statistics dump", "Dump metrics in JSON format", in CommandObjectStatsDump()
152 CommandObjectStats::CommandObjectStats(CommandInterpreter &interpreter) in CommandObjectStats() argument
153 : CommandObjectMultiword(interpreter, "statistics", in CommandObjectStats()
157 CommandObjectSP(new CommandObjectStatsEnable(interpreter))); in CommandObjectStats()
159 CommandObjectSP(new CommandObjectStatsDisable(interpreter))); in CommandObjectStats()
[all …]
H A DCommandObjectSettings.cpp29 CommandObjectSettingsSet(CommandInterpreter &interpreter) in CommandObjectSettingsSet() argument
30 : CommandObjectRaw(interpreter, "settings set", in CommandObjectSettingsSet()
243 CommandObjectSettingsShow(CommandInterpreter &interpreter) in CommandObjectSettingsShow() argument
244 : CommandObjectParsed(interpreter, "settings show", in CommandObjectSettingsShow()
281 CommandObjectSettingsWrite(CommandInterpreter &interpreter) in CommandObjectSettingsWrite() argument
283 interpreter, "settings export", in CommandObjectSettingsWrite()
381 CommandObjectSettingsRead(CommandInterpreter &interpreter) in CommandObjectSettingsRead() argument
383 interpreter, "settings read", in CommandObjectSettingsRead()
446 CommandObjectSettingsList(CommandInterpreter &interpreter) in CommandObjectSettingsList() argument
447 : CommandObjectParsed(interpreter, "settings list", in CommandObjectSettingsList()
[all …]
H A DCommandObjectThread.cpp114 CommandObjectThreadBacktrace(CommandInterpreter &interpreter) in CommandObjectThreadBacktrace() argument
116 interpreter, "thread backtrace", in CommandObjectThreadBacktrace()
374 CommandObjectThreadStepWithTypeAndScope(CommandInterpreter &interpreter, in CommandObjectThreadStepWithTypeAndScope() argument
379 : CommandObjectParsed(interpreter, name, help, syntax, in CommandObjectThreadStepWithTypeAndScope()
634 CommandObjectThreadContinue(CommandInterpreter &interpreter) in CommandObjectThreadContinue() argument
636 interpreter, "thread continue", in CommandObjectThreadContinue()
862 CommandObjectThreadUntil(CommandInterpreter &interpreter) in CommandObjectThreadUntil() argument
864 interpreter, "thread until", in CommandObjectThreadUntil()
1135 CommandObjectThreadSelect(CommandInterpreter &interpreter) in CommandObjectThreadSelect() argument
1136 : CommandObjectParsed(interpreter, "thread select", in CommandObjectThreadSelect()
[all …]
H A DCommandObjectFrame.cpp108 CommandObjectFrameDiagnose(CommandInterpreter &interpreter) in CommandObjectFrameDiagnose() argument
109 : CommandObjectParsed(interpreter, "frame diagnose", in CommandObjectFrameDiagnose()
186 CommandObjectFrameInfo(CommandInterpreter &interpreter) in CommandObjectFrameInfo() argument
187 : CommandObjectParsed(interpreter, "frame info", in CommandObjectFrameInfo()
252 CommandObjectFrameSelect(CommandInterpreter &interpreter) in CommandObjectFrameSelect() argument
253 : CommandObjectParsed(interpreter, "frame select", in CommandObjectFrameSelect()
364 CommandObjectFrameVariable(CommandInterpreter &interpreter) in CommandObjectFrameVariable() argument
366 interpreter, "frame variable", in CommandObjectFrameVariable()
779 CommandObjectFrameRecognizerAdd(CommandInterpreter &interpreter) in CommandObjectFrameRecognizerAdd() argument
780 : CommandObjectParsed(interpreter, "frame recognizer add", in CommandObjectFrameRecognizerAdd()
[all …]
H A DCommandObjectProcess.cpp48 CommandObjectProcessLaunchOrAttach(CommandInterpreter &interpreter, in CommandObjectProcessLaunchOrAttach() argument
52 : CommandObjectParsed(interpreter, name, help, syntax, flags), in CommandObjectProcessLaunchOrAttach()
117 CommandObjectProcessLaunch(CommandInterpreter &interpreter) in CommandObjectProcessLaunch() argument
119 interpreter, "process launch", in CommandObjectProcessLaunch()
288 CommandObjectProcessAttach(CommandInterpreter &interpreter) in CommandObjectProcessAttach() argument
290 interpreter, "process attach", "Attach to a process.", in CommandObjectProcessAttach()
429 CommandObjectProcessContinue(CommandInterpreter &interpreter) in CommandObjectProcessContinue() argument
431 interpreter, "process continue", in CommandObjectProcessContinue()
775 CommandObjectProcessDetach(CommandInterpreter &interpreter) in CommandObjectProcessDetach() argument
776 : CommandObjectParsed(interpreter, "process detach", in CommandObjectProcessDetach()
[all …]
H A DCommandObjectTrace.cpp75 CommandObjectTraceSave(CommandInterpreter &interpreter) in CommandObjectTraceSave() argument
77 interpreter, "trace save", in CommandObjectTraceSave()
173 CommandObjectTraceLoad(CommandInterpreter &interpreter) in CommandObjectTraceLoad() argument
175 interpreter, "trace load", in CommandObjectTraceLoad()
264 CommandObjectTraceDump(CommandInterpreter &interpreter) in CommandObjectTraceDump() argument
265 : CommandObjectParsed(interpreter, "trace dump", in CommandObjectTraceDump()
328 CommandObjectTraceSchema(CommandInterpreter &interpreter) in CommandObjectTraceSchema() argument
329 : CommandObjectParsed(interpreter, "trace schema", in CommandObjectTraceSchema()
379 CommandObjectTrace::CommandObjectTrace(CommandInterpreter &interpreter) in CommandObjectTrace() argument
380 : CommandObjectMultiword(interpreter, "trace", in CommandObjectTrace()
[all …]
H A DCommandObjectTarget.cpp214 CommandObjectTargetCreate(CommandInterpreter &interpreter) in CommandObjectTargetCreate() argument
216 interpreter, "target create", in CommandObjectTargetCreate()
466 CommandObjectTargetList(CommandInterpreter &interpreter) in CommandObjectTargetList() argument
468 interpreter, "target list", in CommandObjectTargetList()
491 CommandObjectTargetSelect(CommandInterpreter &interpreter) in CommandObjectTargetSelect() argument
493 interpreter, "target select", in CommandObjectTargetSelect()
558 CommandObjectTargetDelete(CommandInterpreter &interpreter) in CommandObjectTargetDelete() argument
559 : CommandObjectParsed(interpreter, "target delete", in CommandObjectTargetDelete()
662 CommandObjectTargetShowLaunchEnvironment(CommandInterpreter &interpreter) in CommandObjectTargetShowLaunchEnvironment() argument
664 interpreter, "target show-launch-environment", in CommandObjectTargetShowLaunchEnvironment()
[all …]
H A DCommandObjectWatchpoint.cpp151 CommandObjectWatchpointList(CommandInterpreter &interpreter) in CommandObjectWatchpointList() argument
153 interpreter, "watchpoint list", in CommandObjectWatchpointList()
269 CommandObjectWatchpointEnable(CommandInterpreter &interpreter) in CommandObjectWatchpointEnable() argument
270 : CommandObjectParsed(interpreter, "enable", in CommandObjectWatchpointEnable()
337 CommandObjectWatchpointDisable(CommandInterpreter &interpreter) in CommandObjectWatchpointDisable() argument
338 : CommandObjectParsed(interpreter, "watchpoint disable", in CommandObjectWatchpointDisable()
412 CommandObjectWatchpointDelete(CommandInterpreter &interpreter) in CommandObjectWatchpointDelete() argument
413 : CommandObjectParsed(interpreter, "watchpoint delete", in CommandObjectWatchpointDelete()
528 CommandObjectWatchpointIgnore(CommandInterpreter &interpreter) in CommandObjectWatchpointIgnore() argument
529 : CommandObjectParsed(interpreter, "watchpoint ignore", in CommandObjectWatchpointIgnore()
[all …]
H A DCommandObjectCommands.cpp39 CommandObjectCommandsSource(CommandInterpreter &interpreter) in CommandObjectCommandsSource() argument
41 interpreter, "command source", in CommandObjectCommandsSource()
238 CommandObjectCommandsAlias(CommandInterpreter &interpreter) in CommandObjectCommandsAlias() argument
240 interpreter, "command alias", in CommandObjectCommandsAlias()
600 CommandObjectCommandsUnalias(CommandInterpreter &interpreter) in CommandObjectCommandsUnalias() argument
602 interpreter, "command unalias", in CommandObjectCommandsUnalias()
675 CommandObjectCommandsDelete(CommandInterpreter &interpreter) in CommandObjectCommandsDelete() argument
677 interpreter, "command delete", in CommandObjectCommandsDelete()
741 CommandObjectCommandsAddRegex(CommandInterpreter &interpreter) in CommandObjectCommandsAddRegex() argument
743 interpreter, "command regex", in CommandObjectCommandsAddRegex()
[all …]
H A DCommandObjectPlugin.cpp18 CommandObjectPluginLoad(CommandInterpreter &interpreter) in CommandObjectPluginLoad() argument
19 : CommandObjectParsed(interpreter, "plugin load", in CommandObjectPluginLoad()
49 CommandObjectPlugin::CommandObjectPlugin(CommandInterpreter &interpreter) in CommandObjectPlugin() argument
50 : CommandObjectMultiword(interpreter, "plugin", in CommandObjectPlugin()
54 CommandObjectSP(new CommandObjectPluginLoad(interpreter))); in CommandObjectPlugin()
H A DCommandObjectSession.cpp18 CommandObjectSessionSave(CommandInterpreter &interpreter) in CommandObjectSessionSave() argument
19 : CommandObjectParsed(interpreter, "session save", in CommandObjectSessionSave()
48 CommandObjectSessionHistory(CommandInterpreter &interpreter) in CommandObjectSessionHistory() argument
49 : CommandObjectParsed(interpreter, "session history", in CommandObjectSessionHistory()
187 CommandObjectSession::CommandObjectSession(CommandInterpreter &interpreter) in CommandObjectSession() argument
188 : CommandObjectMultiword(interpreter, "session", in CommandObjectSession()
192 CommandObjectSP(new CommandObjectSessionSave(interpreter))); in CommandObjectSession()
194 CommandObjectSP(new CommandObjectSessionHistory(interpreter))); in CommandObjectSession()
H A DCommandObjectRegister.cpp41 CommandObjectRegisterRead(CommandInterpreter &interpreter) in CommandObjectRegisterRead() argument
43 interpreter, "register read", in CommandObjectRegisterRead()
291 CommandObjectRegisterWrite(CommandInterpreter &interpreter) in CommandObjectRegisterWrite() argument
292 : CommandObjectParsed(interpreter, "register write", in CommandObjectRegisterWrite()
390 CommandObjectRegisterInfo(CommandInterpreter &interpreter) in CommandObjectRegisterInfo() argument
391 : CommandObjectParsed(interpreter, "register info", in CommandObjectRegisterInfo()
448 CommandObjectRegister::CommandObjectRegister(CommandInterpreter &interpreter) in CommandObjectRegister() argument
449 : CommandObjectMultiword(interpreter, "register", in CommandObjectRegister()
454 CommandObjectSP(new CommandObjectRegisterRead(interpreter))); in CommandObjectRegister()
456 CommandObjectSP(new CommandObjectRegisterWrite(interpreter))); in CommandObjectRegister()
[all …]
H A DCommandObjectDiagnostics.cpp28 CommandObjectDiagnosticsDump(CommandInterpreter &interpreter) in CommandObjectDiagnosticsDump() argument
29 : CommandObjectParsed(interpreter, "diagnostics dump", in CommandObjectDiagnosticsDump()
106 CommandInterpreter &interpreter) in CommandObjectDiagnostics() argument
107 : CommandObjectMultiword(interpreter, "diagnostics", in CommandObjectDiagnostics()
111 "dump", CommandObjectSP(new CommandObjectDiagnosticsDump(interpreter))); in CommandObjectDiagnostics()
H A DCommandObjectBreakpoint.cpp237 CommandObjectBreakpointSet(CommandInterpreter &interpreter) in CommandObjectBreakpointSet() argument
239 interpreter, "breakpoint set", in CommandObjectBreakpointSet()
811 CommandObjectBreakpointModify(CommandInterpreter &interpreter) in CommandObjectBreakpointModify() argument
812 : CommandObjectParsed(interpreter, "breakpoint modify", in CommandObjectBreakpointModify()
887 CommandObjectBreakpointEnable(CommandInterpreter &interpreter) in CommandObjectBreakpointEnable() argument
888 : CommandObjectParsed(interpreter, "enable", in CommandObjectBreakpointEnable()
970 CommandObjectBreakpointDisable(CommandInterpreter &interpreter) in CommandObjectBreakpointDisable() argument
972 interpreter, "breakpoint disable", in CommandObjectBreakpointDisable()
1081 CommandObjectBreakpointList(CommandInterpreter &interpreter) in CommandObjectBreakpointList() argument
1083 interpreter, "breakpoint list", in CommandObjectBreakpointList()
[all …]
H A DCommandObjectScripting.cpp29 CommandObjectScriptingRun(CommandInterpreter &interpreter) in CommandObjectScriptingRun() argument
31 interpreter, "scripting run", in CommandObjectScriptingRun()
135 CommandInterpreter &interpreter) in CommandObjectMultiwordScripting() argument
137 interpreter, "scripting", in CommandObjectMultiwordScripting()
141 CommandObjectSP(new CommandObjectScriptingRun(interpreter))); in CommandObjectMultiwordScripting()
H A DCommandObjectMemoryTag.cpp27 CommandObjectMemoryTagRead(CommandInterpreter &interpreter) in CommandObjectMemoryTagRead() argument
28 : CommandObjectParsed(interpreter, "tag", in CommandObjectMemoryTagRead()
174 CommandObjectMemoryTagWrite(CommandInterpreter &interpreter)
175 : CommandObjectParsed(interpreter, "tag", in CommandObjectMemoryTagWrite() argument
304 CommandObjectMemoryTag::CommandObjectMemoryTag(CommandInterpreter &interpreter)
306 interpreter, "tag", "Commands for manipulating memory tags", in CommandObjectMemoryTag() argument
309 new CommandObjectMemoryTagRead(interpreter)); in CommandObjectMemoryTag()
314 new CommandObjectMemoryTagWrite(interpreter)); in CommandObjectMemoryTag()
H A DCommandObjectWatchpointCommand.cpp32 CommandObjectWatchpointCommandAdd(CommandInterpreter &interpreter) in CommandObjectWatchpointCommandAdd() argument
33 : CommandObjectParsed(interpreter, "add", in CommandObjectWatchpointCommandAdd()
442 CommandObjectWatchpointCommandDelete(CommandInterpreter &interpreter) in CommandObjectWatchpointCommandDelete() argument
443 : CommandObjectParsed(interpreter, "delete", in CommandObjectWatchpointCommandDelete()
496 CommandObjectWatchpointCommandList(CommandInterpreter &interpreter) in CommandObjectWatchpointCommandList() argument
497 : CommandObjectParsed(interpreter, "list", in CommandObjectWatchpointCommandList()
568 CommandInterpreter &interpreter) in CommandObjectWatchpointCommand() argument
570 interpreter, "command", in CommandObjectWatchpointCommand()
575 new CommandObjectWatchpointCommandAdd(interpreter)); in CommandObjectWatchpointCommand()
577 new CommandObjectWatchpointCommandDelete(interpreter)); in CommandObjectWatchpointCommand()
[all …]
/freebsd/contrib/llvm-project/lldb/source/Target/
H A DStructuredDataPlugin.cpp21 CommandStructuredData(CommandInterpreter &interpreter) in CommandStructuredData() argument
22 : CommandObjectMultiword(interpreter, "structured-data", in CommandStructuredData()
47 auto &interpreter = debugger.GetCommandInterpreter(); in InitializeBasePluginForDebugger() local
48 if (!interpreter.GetCommandObject("plugin structured-data")) { in InitializeBasePluginForDebugger()
57 auto command_sp = CommandObjectSP(new CommandStructuredData(interpreter)); in InitializeBasePluginForDebugger()
/freebsd/lib/libveriexec/
H A Dexec_script.c98 execv_script(const char *interpreter, char * const *argv) in execv_script() argument
109 if (!interpreter) in execv_script()
110 interpreter = find_interpreter(script); in execv_script()
111 if (interpreter) { in execv_script()
113 script, interpreter); in execv_script()
114 rc = execv(interpreter, argv); in execv_script()
/freebsd/contrib/lutok/examples/
H A DMakefile48 PROGRAMS = bindings hello interpreter raii
59 interpreter: interpreter.cpp target
60 @target=interpreter source=interpreter.cpp; echo $(BUILD); $(BUILD)

123456789