Lines Matching refs:interpreter
149 CommandObjectWatchpointList(CommandInterpreter &interpreter) in CommandObjectWatchpointList() argument
151 interpreter, "watchpoint list", in CommandObjectWatchpointList()
274 CommandObjectWatchpointEnable(CommandInterpreter &interpreter) in CommandObjectWatchpointEnable() argument
275 : CommandObjectParsed(interpreter, "enable", in CommandObjectWatchpointEnable()
349 CommandObjectWatchpointDisable(CommandInterpreter &interpreter) in CommandObjectWatchpointDisable() argument
350 : CommandObjectParsed(interpreter, "watchpoint disable", in CommandObjectWatchpointDisable()
431 CommandObjectWatchpointDelete(CommandInterpreter &interpreter) in CommandObjectWatchpointDelete() argument
432 : CommandObjectParsed(interpreter, "watchpoint delete", in CommandObjectWatchpointDelete()
554 CommandObjectWatchpointIgnore(CommandInterpreter &interpreter) in CommandObjectWatchpointIgnore() argument
555 : CommandObjectParsed(interpreter, "watchpoint ignore", in CommandObjectWatchpointIgnore()
675 CommandObjectWatchpointModify(CommandInterpreter &interpreter) in CommandObjectWatchpointModify() argument
677 interpreter, "watchpoint modify", in CommandObjectWatchpointModify()
798 CommandObjectWatchpointSetVariable(CommandInterpreter &interpreter) in CommandObjectWatchpointSetVariable() argument
800 interpreter, "watchpoint set variable", in CommandObjectWatchpointSetVariable()
990 CommandObjectWatchpointSetExpression(CommandInterpreter &interpreter) in CommandObjectWatchpointSetExpression() argument
992 interpreter, "watchpoint set expression", in CommandObjectWatchpointSetExpression()
1150 CommandObjectWatchpointSet(CommandInterpreter &interpreter) in CommandObjectWatchpointSet() argument
1152 interpreter, "watchpoint set", "Commands for setting a watchpoint.", in CommandObjectWatchpointSet()
1157 CommandObjectSP(new CommandObjectWatchpointSetVariable(interpreter))); in CommandObjectWatchpointSet()
1160 CommandObjectSP(new CommandObjectWatchpointSetExpression(interpreter))); in CommandObjectWatchpointSet()
1170 CommandInterpreter &interpreter) in CommandObjectMultiwordWatchpoint() argument
1171 : CommandObjectMultiword(interpreter, "watchpoint", in CommandObjectMultiwordWatchpoint()
1175 new CommandObjectWatchpointList(interpreter)); in CommandObjectMultiwordWatchpoint()
1177 new CommandObjectWatchpointEnable(interpreter)); in CommandObjectMultiwordWatchpoint()
1179 new CommandObjectWatchpointDisable(interpreter)); in CommandObjectMultiwordWatchpoint()
1181 new CommandObjectWatchpointDelete(interpreter)); in CommandObjectMultiwordWatchpoint()
1183 new CommandObjectWatchpointIgnore(interpreter)); in CommandObjectMultiwordWatchpoint()
1185 new CommandObjectWatchpointCommand(interpreter)); in CommandObjectMultiwordWatchpoint()
1187 new CommandObjectWatchpointModify(interpreter)); in CommandObjectMultiwordWatchpoint()
1189 new CommandObjectWatchpointSet(interpreter)); in CommandObjectMultiwordWatchpoint()