1*80814287SRaphael Isemann //===-- BreakpointPrecondition.cpp ----------------------------------------===// 27f9c9f22SAlex Langford // 37f9c9f22SAlex Langford // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 47f9c9f22SAlex Langford // See https://llvm.org/LICENSE.txt for license information. 57f9c9f22SAlex Langford // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 67f9c9f22SAlex Langford // 77f9c9f22SAlex Langford //===----------------------------------------------------------------------===// 87f9c9f22SAlex Langford 97f9c9f22SAlex Langford #include "lldb/Breakpoint/BreakpointPrecondition.h" 107f9c9f22SAlex Langford #include "lldb/Utility/Status.h" 117f9c9f22SAlex Langford 127f9c9f22SAlex Langford using namespace lldb_private; 137f9c9f22SAlex Langford EvaluatePrecondition(StoppointCallbackContext & context)147f9c9f22SAlex Langfordbool BreakpointPrecondition::EvaluatePrecondition( 157f9c9f22SAlex Langford StoppointCallbackContext &context) { 167f9c9f22SAlex Langford return false; 177f9c9f22SAlex Langford } 187f9c9f22SAlex Langford GetDescription(Stream & stream,lldb::DescriptionLevel level)197f9c9f22SAlex Langfordvoid BreakpointPrecondition::GetDescription(Stream &stream, 207f9c9f22SAlex Langford lldb::DescriptionLevel level) {} 217f9c9f22SAlex Langford ConfigurePrecondition(Args & args)227f9c9f22SAlex LangfordStatus BreakpointPrecondition::ConfigurePrecondition(Args &args) { 237f9c9f22SAlex Langford Status error; 247f9c9f22SAlex Langford error.SetErrorString("Base breakpoint precondition has no options."); 257f9c9f22SAlex Langford return error; 267f9c9f22SAlex Langford } 27