Home
last modified time | relevance | path

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

12345678910

/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()
202 SymbolCompleter(CommandInterpreter &interpreter, CompletionRequest &request) in SymbolCompleter() argument
203 : Completer(interpreter, request) { in SymbolCompleter()
272 ModuleCompleter(CommandInterpreter &interpreter, CompletionRequest &request) in ModuleCompleter() argument
[all …]
H A DCommandObjectType.cpp127 CommandOptions(CommandInterpreter &interpreter) {} in CommandOptions() argument
162 CommandObjectTypeSummaryAdd(CommandInterpreter &interpreter);
187 ScriptInterpreter *interpreter = GetDebugger().GetScriptInterpreter(); in IOHandlerInputComplete() local
188 if (interpreter) { in IOHandlerInputComplete()
199 ScriptInterpreter *interpreter = GetDebugger().GetScriptInterpreter(); in IOHandlerInputComplete() local
200 if (interpreter) { in IOHandlerInputComplete()
202 if (interpreter->GenerateTypeScriptFunction(lines, in IOHandlerInputComplete()
427 ScriptInterpreter *interpreter = GetDebugger().GetScriptInterpreter(); in IOHandlerInputComplete() local
428 if (interpreter) { in IOHandlerInputComplete()
439 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()
221 CommandObjectLogDisable(CommandInterpreter &interpreter) in CommandObjectLogDisable() argument
222 : CommandObjectParsed(interpreter, "log disable", in CommandObjectLogDisable()
284 CommandObjectLogList(CommandInterpreter &interpreter) in CommandObjectLogList() argument
285 : CommandObjectParsed(interpreter, "log list", in CommandObjectLogList()
321 CommandObjectLogDump(CommandInterpreter &interpreter) in CommandObjectLogDump() argument
322 : CommandObjectParsed(interpreter, "log dump", in CommandObjectLogDump()
418 CommandObjectLogTimerEnable(CommandInterpreter &interpreter) in CommandObjectLogTimerEnable() argument
419 : 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 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()
388 CommandObjectFrameVariable(CommandInterpreter &interpreter) in CommandObjectFrameVariable() argument
390 interpreter, "frame variable", in CommandObjectFrameVariable()
810 CommandObjectFrameRecognizerAdd(CommandInterpreter &interpreter) in CommandObjectFrameRecognizerAdd() argument
811 : CommandObjectParsed(interpreter, "frame recognizer add", in CommandObjectFrameRecognizerAdd()
[all …]
H A DCommandObjectStats.cpp23 CommandObjectStatsEnable(CommandInterpreter &interpreter) in CommandObjectStatsEnable() argument
24 : CommandObjectParsed(interpreter, "enable", in CommandObjectStatsEnable()
44 CommandObjectStatsDisable(CommandInterpreter &interpreter) in CommandObjectStatsDisable() argument
45 : CommandObjectParsed(interpreter, "disable", in CommandObjectStatsDisable()
136 CommandObjectStatsDump(CommandInterpreter &interpreter) in CommandObjectStatsDump() argument
138 interpreter, "statistics dump", "Dump metrics in JSON format", in CommandObjectStatsDump()
169 CommandObjectStats::CommandObjectStats(CommandInterpreter &interpreter) in CommandObjectStats() argument
170 : CommandObjectMultiword(interpreter, "statistics", in CommandObjectStats()
174 CommandObjectSP(new CommandObjectStatsEnable(interpreter))); in CommandObjectStats()
176 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 DCommandObjectPlugin.cpp20 CommandObjectPluginLoad(CommandInterpreter &interpreter) in CommandObjectPluginLoad() argument
21 : CommandObjectParsed(interpreter, "plugin load", in CommandObjectPluginLoad()
155 CommandObjectPluginList(CommandInterpreter &interpreter) in CommandObjectPluginList() argument
156 : CommandObjectParsed(interpreter, "plugin list", in CommandObjectPluginList()
290 CommandObjectPluginEnable(CommandInterpreter &interpreter) in CommandObjectPluginEnable() argument
291 : CommandObjectParsed(interpreter, "plugin enable", in CommandObjectPluginEnable()
306 CommandObjectPluginDisable(CommandInterpreter &interpreter) in CommandObjectPluginDisable() argument
307 : CommandObjectParsed(interpreter, "plugin disable", in CommandObjectPluginDisable()
320 CommandObjectPlugin::CommandObjectPlugin(CommandInterpreter &interpreter) in CommandObjectPlugin() argument
321 : CommandObjectMultiword(interpreter, "plugin", in CommandObjectPlugin()
[all …]
H A DCommandObjectThread.cpp119 CommandObjectThreadBacktrace(CommandInterpreter &interpreter) in CommandObjectThreadBacktrace() argument
121 interpreter, "thread backtrace", in CommandObjectThreadBacktrace()
382 CommandObjectThreadStepWithTypeAndScope(CommandInterpreter &interpreter, in CommandObjectThreadStepWithTypeAndScope() argument
386 : CommandObjectParsed(interpreter, name, help, syntax, in CommandObjectThreadStepWithTypeAndScope()
639 CommandObjectThreadContinue(CommandInterpreter &interpreter) in CommandObjectThreadContinue() argument
641 interpreter, "thread continue", in CommandObjectThreadContinue()
867 CommandObjectThreadUntil(CommandInterpreter &interpreter) in CommandObjectThreadUntil() argument
869 interpreter, "thread until", in CommandObjectThreadUntil()
1133 CommandObjectThreadSelect(CommandInterpreter &interpreter) in CommandObjectThreadSelect() argument
1134 : CommandObjectParsed(interpreter, "thread select", in CommandObjectThreadSelect()
[all …]
H A DCommandObjectProcess.cpp50 CommandObjectProcessLaunchOrAttach(CommandInterpreter &interpreter, in CommandObjectProcessLaunchOrAttach() argument
54 : CommandObjectParsed(interpreter, name, help, syntax, flags), in CommandObjectProcessLaunchOrAttach()
119 CommandObjectProcessLaunch(CommandInterpreter &interpreter) in CommandObjectProcessLaunch() argument
121 interpreter, "process launch", in CommandObjectProcessLaunch()
298 CommandObjectProcessAttach(CommandInterpreter &interpreter) in CommandObjectProcessAttach() argument
300 interpreter, "process attach", "Attach to a process.", in CommandObjectProcessAttach()
437 CommandObjectProcessContinue(CommandInterpreter &interpreter) in CommandObjectProcessContinue() argument
439 interpreter, "process continue", in CommandObjectProcessContinue()
802 CommandObjectProcessDetach(CommandInterpreter &interpreter) in CommandObjectProcessDetach() argument
803 : 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 DCommandObjectScripting.cpp31 CommandObjectScriptingRun(CommandInterpreter &interpreter) in CommandObjectScriptingRun() argument
33 interpreter, "scripting run", in CommandObjectScriptingRun()
137 CommandObjectScriptingExtensionList(CommandInterpreter &interpreter) in CommandObjectScriptingExtensionList() argument
139 interpreter, "scripting extension list", in CommandObjectScriptingExtensionList()
240 CommandObjectMultiwordScriptingExtension(CommandInterpreter &interpreter) in CommandObjectMultiwordScriptingExtension() argument
242 interpreter, "scripting extension", in CommandObjectMultiwordScriptingExtension()
247 CommandObjectSP(new CommandObjectScriptingExtensionList(interpreter))); in CommandObjectMultiwordScriptingExtension()
254 CommandInterpreter &interpreter) in CommandObjectMultiwordScripting() argument
256 interpreter, "scripting", in CommandObjectMultiwordScripting()
260 CommandObjectSP(new CommandObjectScriptingRun(interpreter))); in CommandObjectMultiwordScripting()
[all …]
H A DCommandObjectProtocolServer.cpp28 CommandObjectProtocolServerStart(CommandInterpreter &interpreter) in CommandObjectProtocolServerStart() argument
29 : CommandObjectParsed(interpreter, "protocol-server start", in CommandObjectProtocolServerStart()
103 CommandObjectProtocolServerStop(CommandInterpreter &interpreter) in CommandObjectProtocolServerStop() argument
104 : CommandObjectParsed(interpreter, "protocol-server stop", in CommandObjectProtocolServerStop()
136 CommandInterpreter &interpreter) in CommandObjectProtocolServer() argument
137 : CommandObjectMultiword(interpreter, "protocol-server", in CommandObjectProtocolServer()
141 interpreter))); in CommandObjectProtocolServer()
143 new CommandObjectProtocolServerStop(interpreter))); in CommandObjectProtocolServer()
H A DCommandObjectTarget.cpp215 CommandObjectTargetCreate(CommandInterpreter &interpreter) in CommandObjectTargetCreate() argument
217 interpreter, "target create", in CommandObjectTargetCreate()
467 CommandObjectTargetList(CommandInterpreter &interpreter) in CommandObjectTargetList() argument
469 interpreter, "target list", in CommandObjectTargetList()
492 CommandObjectTargetSelect(CommandInterpreter &interpreter) in CommandObjectTargetSelect() argument
494 interpreter, "target select", in CommandObjectTargetSelect()
559 CommandObjectTargetDelete(CommandInterpreter &interpreter) in CommandObjectTargetDelete() argument
560 : CommandObjectParsed(interpreter, "target delete", in CommandObjectTargetDelete()
661 CommandObjectTargetShowLaunchEnvironment(CommandInterpreter &interpreter) in CommandObjectTargetShowLaunchEnvironment() argument
663 interpreter, "target show-launch-environment", in CommandObjectTargetShowLaunchEnvironment()
[all …]
H A DCommandObjectWatchpoint.cpp149 CommandObjectWatchpointList(CommandInterpreter &interpreter) in CommandObjectWatchpointList() argument
151 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 DCommandObjectSession.cpp18 CommandObjectSessionSave(CommandInterpreter &interpreter) in CommandObjectSessionSave() argument
19 : CommandObjectParsed(interpreter, "session save", in CommandObjectSessionSave()
50 CommandObjectSessionHistory(CommandInterpreter &interpreter) in CommandObjectSessionHistory() argument
51 : CommandObjectParsed(interpreter, "session history", in CommandObjectSessionHistory()
189 CommandObjectSession::CommandObjectSession(CommandInterpreter &interpreter) in CommandObjectSession() argument
190 : CommandObjectMultiword(interpreter, "session", in CommandObjectSession()
194 CommandObjectSP(new CommandObjectSessionSave(interpreter))); in CommandObjectSession()
196 CommandObjectSP(new CommandObjectSessionHistory(interpreter))); in CommandObjectSession()
H A DCommandObjectCommands.cpp40 CommandObjectCommandsSource(CommandInterpreter &interpreter) in CommandObjectCommandsSource() argument
42 interpreter, "command source", in CommandObjectCommandsSource()
239 CommandObjectCommandsAlias(CommandInterpreter &interpreter) in CommandObjectCommandsAlias() argument
241 interpreter, "command alias", in CommandObjectCommandsAlias()
607 CommandObjectCommandsUnalias(CommandInterpreter &interpreter) in CommandObjectCommandsUnalias() argument
609 interpreter, "command unalias", in CommandObjectCommandsUnalias()
682 CommandObjectCommandsDelete(CommandInterpreter &interpreter) in CommandObjectCommandsDelete() argument
684 interpreter, "command delete", in CommandObjectCommandsDelete()
748 CommandObjectCommandsAddRegex(CommandInterpreter &interpreter) in CommandObjectCommandsAddRegex() argument
750 interpreter, "command regex", in CommandObjectCommandsAddRegex()
[all …]
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 DCommandObjectWatchpointCommand.cpp34 CommandObjectWatchpointCommandAdd(CommandInterpreter &interpreter) in CommandObjectWatchpointCommandAdd() argument
35 : CommandObjectParsed(interpreter, "add", in CommandObjectWatchpointCommandAdd()
443 CommandObjectWatchpointCommandDelete(CommandInterpreter &interpreter) in CommandObjectWatchpointCommandDelete() argument
444 : CommandObjectParsed(interpreter, "delete", in CommandObjectWatchpointCommandDelete()
497 CommandObjectWatchpointCommandList(CommandInterpreter &interpreter) in CommandObjectWatchpointCommandList() argument
498 : CommandObjectParsed(interpreter, "list", in CommandObjectWatchpointCommandList()
569 CommandInterpreter &interpreter) in CommandObjectWatchpointCommand() argument
571 interpreter, "command", in CommandObjectWatchpointCommand()
576 new CommandObjectWatchpointCommandAdd(interpreter)); in CommandObjectWatchpointCommand()
578 new CommandObjectWatchpointCommandDelete(interpreter)); in CommandObjectWatchpointCommand()
[all …]
H A DCommandObjectDiagnostics.cpp28 CommandObjectDiagnosticsDump(CommandInterpreter &interpreter) in CommandObjectDiagnosticsDump() argument
29 : CommandObjectParsed(interpreter, "diagnostics dump", in CommandObjectDiagnosticsDump()
105 CommandInterpreter &interpreter) in CommandObjectDiagnostics() argument
106 : CommandObjectMultiword(interpreter, "diagnostics", in CommandObjectDiagnostics()
110 "dump", CommandObjectSP(new CommandObjectDiagnosticsDump(interpreter))); in CommandObjectDiagnostics()
H A DCommandObjectBreakpoint.cpp258 CommandObjectBreakpointSet(CommandInterpreter &interpreter) in CommandObjectBreakpointSet() argument
260 interpreter, "breakpoint set", in CommandObjectBreakpointSet()
838 CommandObjectBreakpointModify(CommandInterpreter &interpreter) in CommandObjectBreakpointModify() argument
839 : CommandObjectParsed(interpreter, "breakpoint modify", in CommandObjectBreakpointModify()
914 CommandObjectBreakpointEnable(CommandInterpreter &interpreter) in CommandObjectBreakpointEnable() argument
915 : CommandObjectParsed(interpreter, "enable", in CommandObjectBreakpointEnable()
1000 CommandObjectBreakpointDisable(CommandInterpreter &interpreter) in CommandObjectBreakpointDisable() argument
1002 interpreter, "breakpoint disable", in CommandObjectBreakpointDisable()
1114 CommandObjectBreakpointList(CommandInterpreter &interpreter) in CommandObjectBreakpointList() argument
1116 interpreter, "breakpoint list", in CommandObjectBreakpointList()
[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)

12345678910