Lines Matching refs:interpreter

151   CommandObjectWatchpointList(CommandInterpreter &interpreter)  in CommandObjectWatchpointList()  argument
153 interpreter, "watchpoint list", in CommandObjectWatchpointList()
274 CommandObjectWatchpointEnable(CommandInterpreter &interpreter) in CommandObjectWatchpointEnable() argument
275 : CommandObjectParsed(interpreter, "enable", in CommandObjectWatchpointEnable()
347 CommandObjectWatchpointDisable(CommandInterpreter &interpreter) in CommandObjectWatchpointDisable() argument
348 : CommandObjectParsed(interpreter, "watchpoint disable", in CommandObjectWatchpointDisable()
427 CommandObjectWatchpointDelete(CommandInterpreter &interpreter) in CommandObjectWatchpointDelete() argument
428 : CommandObjectParsed(interpreter, "watchpoint delete", in CommandObjectWatchpointDelete()
548 CommandObjectWatchpointIgnore(CommandInterpreter &interpreter) in CommandObjectWatchpointIgnore() argument
549 : CommandObjectParsed(interpreter, "watchpoint ignore", in CommandObjectWatchpointIgnore()
667 CommandObjectWatchpointModify(CommandInterpreter &interpreter) in CommandObjectWatchpointModify() argument
669 interpreter, "watchpoint modify", in CommandObjectWatchpointModify()
788 CommandObjectWatchpointSetVariable(CommandInterpreter &interpreter) in CommandObjectWatchpointSetVariable() argument
790 interpreter, "watchpoint set variable", in CommandObjectWatchpointSetVariable()
997 CommandObjectWatchpointSetExpression(CommandInterpreter &interpreter) in CommandObjectWatchpointSetExpression() argument
999 interpreter, "watchpoint set expression", in CommandObjectWatchpointSetExpression()
1174 CommandObjectWatchpointSet(CommandInterpreter &interpreter) in CommandObjectWatchpointSet() argument
1176 interpreter, "watchpoint set", "Commands for setting a watchpoint.", in CommandObjectWatchpointSet()
1181 CommandObjectSP(new CommandObjectWatchpointSetVariable(interpreter))); in CommandObjectWatchpointSet()
1184 CommandObjectSP(new CommandObjectWatchpointSetExpression(interpreter))); in CommandObjectWatchpointSet()
1194 CommandInterpreter &interpreter) in CommandObjectMultiwordWatchpoint() argument
1195 : CommandObjectMultiword(interpreter, "watchpoint", in CommandObjectMultiwordWatchpoint()
1199 new CommandObjectWatchpointList(interpreter)); in CommandObjectMultiwordWatchpoint()
1201 new CommandObjectWatchpointEnable(interpreter)); in CommandObjectMultiwordWatchpoint()
1203 new CommandObjectWatchpointDisable(interpreter)); in CommandObjectMultiwordWatchpoint()
1205 new CommandObjectWatchpointDelete(interpreter)); in CommandObjectMultiwordWatchpoint()
1207 new CommandObjectWatchpointIgnore(interpreter)); in CommandObjectMultiwordWatchpoint()
1209 new CommandObjectWatchpointCommand(interpreter)); in CommandObjectMultiwordWatchpoint()
1211 new CommandObjectWatchpointModify(interpreter)); in CommandObjectMultiwordWatchpoint()
1213 new CommandObjectWatchpointSet(interpreter)); in CommandObjectMultiwordWatchpoint()