Home | History | Annotate | Download | only in inspector

Lines Matching defs:errorString

76 void InspectorRuntimeAgent::evaluate(ErrorString* errorString, const String& expression, const String* const objectGroup, const bool* const includeCommandLineAPI, const bool* const doNotPauseOnExceptionsAndMuteConsole, const int* executionContextId, const bool* const returnByValue, const bool* generatePreview, RefPtr<TypeBuilder::Runtime::RemoteObject>& result, TypeBuilder::OptOutput<bool>* wasThrown)
78 InjectedScript injectedScript = injectedScriptForEval(errorString, executionContextId);
87 injectedScript.evaluate(errorString, expression, objectGroup ? *objectGroup : "", asBool(includeCommandLineAPI), asBool(returnByValue), asBool(generatePreview), &result, wasThrown);
95 void InspectorRuntimeAgent::callFunctionOn(ErrorString* errorString, const String& objectId, const String& expression, const RefPtr<JSONArray>* const optionalArguments, const bool* const doNotPauseOnExceptionsAndMuteConsole, const bool* const returnByValue, const bool* generatePreview, RefPtr<TypeBuilder::Runtime::RemoteObject>& result, TypeBuilder::OptOutput<bool>* wasThrown)
99 *errorString = "Inspected frame has gone";
112 injectedScript.callFunctionOn(errorString, objectId, expression, arguments, asBool(returnByValue), asBool(generatePreview), &result, wasThrown);
120 void InspectorRuntimeAgent::getProperties(ErrorString* errorString, const String& objectId, const bool* ownProperties, const bool* accessorPropertiesOnly, RefPtr<TypeBuilder::Array<TypeBuilder::Runtime::PropertyDescriptor> >& result, RefPtr<TypeBuilder::Array<TypeBuilder::Runtime::InternalPropertyDescriptor> >& internalProperties)
124 *errorString = "Inspected frame has gone";
132 injectedScript.getProperties(errorString, objectId, ownProperties && *ownProperties, accessorPropertiesOnlyValue, &result);
135 injectedScript.getInternalProperties(errorString, objectId, &internalProperties);
141 void InspectorRuntimeAgent::releaseObject(ErrorString*, const String& objectId)
148 void InspectorRuntimeAgent::releaseObjectGroup(ErrorString*, const String& objectGroup)
153 void InspectorRuntimeAgent::run(ErrorString*)
157 void InspectorRuntimeAgent::isRunRequired(ErrorString*, bool* out_result)
170 String errorString;
171 disable(&errorString);
184 void InspectorRuntimeAgent::enable(ErrorString* errorString)
193 void InspectorRuntimeAgent::disable(ErrorString* errorString)