Home | History | Annotate | Download | only in inspector

Lines Matching refs:ErrorString

130 void InspectorDebuggerAgent::setBreakpointsActive(ErrorString*, bool active)
154 void InspectorDebuggerAgent::setBreakpointByUrl(ErrorString*, const String& url, int lineNumber, const int* const optionalColumnNumber, const String* const optionalCondition, String* outBreakpointId, RefPtr<InspectorArray>* locations)
177 static bool parseLocation(ErrorString* errorString, RefPtr<InspectorObject> location, String* sourceId, int* lineNumber, int* columnNumber)
181 *errorString = "sourceId and lineNumber are required.";
189 void InspectorDebuggerAgent::setBreakpoint(ErrorString* errorString, PassRefPtr<InspectorObject> location, const String* const optionalCondition, String* outBreakpointId, RefPtr<InspectorObject>* actualLocation)
195 if (!parseLocation(errorString, location, &sourceId, &lineNumber, &columnNumber))
208 *errorString = "Could not resolve breakpoint";
211 void InspectorDebuggerAgent::removeBreakpoint(ErrorString*, const String& breakpointId)
225 void InspectorDebuggerAgent::continueToLocation(ErrorString* errorString, PassRefPtr<InspectorObject> location)
236 if (!parseLocation(errorString, location, &sourceId, &lineNumber, &columnNumber))
241 resume(errorString);
280 void InspectorDebuggerAgent::editScriptSource(ErrorString* error, const String& sourceID, const String& newContent, RefPtr<InspectorArray>* newCallFrames)
286 void InspectorDebuggerAgent::getScriptSource(ErrorString*, const String& sourceID, String* scriptSource)
309 void InspectorDebuggerAgent::pause(ErrorString*)
315 void InspectorDebuggerAgent::resume(ErrorString*)
321 void InspectorDebuggerAgent::stepOver(ErrorString*)
326 void InspectorDebuggerAgent::stepInto(ErrorString*)
331 void InspectorDebuggerAgent::stepOut(ErrorString*)
336 void InspectorDebuggerAgent::setPauseOnExceptions(ErrorString* errorString, const String& stringPauseState)
346 *errorString = "Unknown pause on exceptions mode: " + stringPauseState;
351 *errorString = "Internal error. Could not change pause on exceptions state";
354 void InspectorDebuggerAgent::evaluateOnCallFrame(ErrorString* errorString, const String& callFrameId, const String& expression, const String* const objectGroup, const bool* const includeCommandLineAPI, RefPtr<InspectorObject>* result)
358 injectedScript.evaluateOnCallFrame(errorString, callFrameId, expression, objectGroup ? *objectGroup : "", includeCommandLineAPI ? *includeCommandLineAPI : false, result);