Lines Matching refs:interpreter
151 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()
642 CommandObjectWatchpointModify(CommandInterpreter &interpreter) in CommandObjectWatchpointModify() argument
644 interpreter, "watchpoint modify", in CommandObjectWatchpointModify()
758 CommandObjectWatchpointSetVariable(CommandInterpreter &interpreter) in CommandObjectWatchpointSetVariable() argument
760 interpreter, "watchpoint set variable", in CommandObjectWatchpointSetVariable()
946 CommandObjectWatchpointSetExpression(CommandInterpreter &interpreter) in CommandObjectWatchpointSetExpression() argument
948 interpreter, "watchpoint set expression", in CommandObjectWatchpointSetExpression()
1125 CommandObjectWatchpointSet(CommandInterpreter &interpreter) in CommandObjectWatchpointSet() argument
1127 interpreter, "watchpoint set", "Commands for setting a watchpoint.", in CommandObjectWatchpointSet()
1132 CommandObjectSP(new CommandObjectWatchpointSetVariable(interpreter))); in CommandObjectWatchpointSet()
1135 CommandObjectSP(new CommandObjectWatchpointSetExpression(interpreter))); in CommandObjectWatchpointSet()
1145 CommandInterpreter &interpreter) in CommandObjectMultiwordWatchpoint() argument
1146 : CommandObjectMultiword(interpreter, "watchpoint", in CommandObjectMultiwordWatchpoint()
1150 new CommandObjectWatchpointList(interpreter)); in CommandObjectMultiwordWatchpoint()
1152 new CommandObjectWatchpointEnable(interpreter)); in CommandObjectMultiwordWatchpoint()
1154 new CommandObjectWatchpointDisable(interpreter)); in CommandObjectMultiwordWatchpoint()
1156 new CommandObjectWatchpointDelete(interpreter)); in CommandObjectMultiwordWatchpoint()
1158 new CommandObjectWatchpointIgnore(interpreter)); in CommandObjectMultiwordWatchpoint()
1160 new CommandObjectWatchpointCommand(interpreter)); in CommandObjectMultiwordWatchpoint()
1162 new CommandObjectWatchpointModify(interpreter)); in CommandObjectMultiwordWatchpoint()
1164 new CommandObjectWatchpointSet(interpreter)); in CommandObjectMultiwordWatchpoint()