Searched refs:ErrorString (Results 26 - 50 of 72) sorted by relevance

123

/macosx-10.10/WebCore-7600.1.25/inspector/
H A DPageConsoleAgent.cpp51 void PageConsoleAgent::clearMessages(ErrorString* errorString)
69 void PageConsoleAgent::addInspectedNode(ErrorString* errorString, int nodeId)
H A DWebConsoleAgent.h39 typedef String ErrorString; typedef in namespace:WebCore
48 virtual void setMonitoringXHREnabled(ErrorString*, bool enabled) override final;
H A DWebDebuggerAgent.h36 typedef String ErrorString; typedef in namespace:WebCore
H A DInspectorWorkerAgent.cpp133 void InspectorWorkerAgent::enable(ErrorString*)
142 void InspectorWorkerAgent::disable(ErrorString*)
151 void InspectorWorkerAgent::canInspectWorkers(ErrorString*, bool* result)
156 void InspectorWorkerAgent::connectToWorker(ErrorString* error, int workerId)
165 void InspectorWorkerAgent::disconnectFromWorker(ErrorString* error, int workerId)
174 void InspectorWorkerAgent::sendMessageToWorker(ErrorString* error, int workerId, const RefPtr<InspectorObject>& message)
183 void InspectorWorkerAgent::setAutoconnectToWorkers(ErrorString*, bool value)
H A DPageDebuggerAgent.h72 virtual Inspector::InjectedScript injectedScriptForEval(ErrorString*, const int* executionContextId) override;
73 virtual void setOverlayMessage(ErrorString*, const String*) override;
H A DWorkerRuntimeAgent.cpp67 InjectedScript WorkerRuntimeAgent::injectedScriptForEval(ErrorString* error, const int* executionContextId)
88 void WorkerRuntimeAgent::run(ErrorString*)
H A DInspectorReplayAgent.cpp304 void InspectorReplayAgent::startCapturing(ErrorString* errorString)
314 void InspectorReplayAgent::stopCapturing(ErrorString* errorString)
324 void InspectorReplayAgent::replayToPosition(ErrorString* errorString, const RefPtr<InspectorObject>& positionObject, bool fastReplay)
345 void InspectorReplayAgent::replayToCompletion(ErrorString* errorString, bool fastReplay)
355 void InspectorReplayAgent::pausePlayback(ErrorString* errorString)
365 void InspectorReplayAgent::cancelPlayback(ErrorString* errorString)
375 void InspectorReplayAgent::switchSession(ErrorString* errorString, SessionIdentifier identifier)
391 void InspectorReplayAgent::insertSessionSegment(ErrorString* errorString, SessionIdentifier sessionIdentifier, SegmentIdentifier segmentIdentifier, int segmentIndex)
417 void InspectorReplayAgent::removeSessionSegment(ErrorString* errorString, SessionIdentifier identifier, int segmentIndex)
441 PassRefPtr<ReplaySession> InspectorReplayAgent::findSession(ErrorString* errorStrin
[all...]
H A DInspectorPageAgent.cpp227 void InspectorPageAgent::resourceContent(ErrorString* errorString, Frame* frame, const URL& url, String* result, bool* base64Encoded)
368 ErrorString error;
375 void InspectorPageAgent::enable(ErrorString*)
384 void InspectorPageAgent::disable(ErrorString*)
398 void InspectorPageAgent::addScriptToEvaluateOnLoad(ErrorString*, const String& source, String* identifier)
412 void InspectorPageAgent::removeScriptToEvaluateOnLoad(ErrorString* error, const String& identifier)
422 void InspectorPageAgent::reload(ErrorString*, const bool* const optionalIgnoreCache, const String* optionalScriptToEvaluateOnLoad)
428 void InspectorPageAgent::navigate(ErrorString*, const String& url)
500 void InspectorPageAgent::getCookies(ErrorString*, RefPtr<Inspector::TypeBuilder::Array<Inspector::TypeBuilder::Page::Cookie>>& cookies)
542 void InspectorPageAgent::deleteCookie(ErrorString*, cons
[all...]
H A DWorkerDebuggerAgent.h57 virtual Inspector::InjectedScript injectedScriptForEval(ErrorString*, const int* executionContextId) override;
H A DInspectorDOMDebuggerAgent.cpp131 void InspectorDOMDebuggerAgent::setEventListenerBreakpoint(ErrorString* error, const String& eventName)
136 void InspectorDOMDebuggerAgent::setInstrumentationBreakpoint(ErrorString* error, const String& eventName)
141 void InspectorDOMDebuggerAgent::setBreakpoint(ErrorString* error, const String& eventName)
151 void InspectorDOMDebuggerAgent::removeEventListenerBreakpoint(ErrorString* error, const String& eventName)
156 void InspectorDOMDebuggerAgent::removeInstrumentationBreakpoint(ErrorString* error, const String& eventName)
161 void InspectorDOMDebuggerAgent::removeBreakpoint(ErrorString* error, const String& eventName)
208 static int domTypeForName(ErrorString* errorString, const String& typeString)
231 void InspectorDOMDebuggerAgent::setDOMBreakpoint(ErrorString* errorString, int nodeId, const String& typeString)
249 void InspectorDOMDebuggerAgent::removeDOMBreakpoint(ErrorString* errorString, int nodeId, const String& typeString)
378 void InspectorDOMDebuggerAgent::setXHRBreakpoint(ErrorString*, cons
[all...]
H A DInspectorLayerTreeAgent.cpp84 void InspectorLayerTreeAgent::enable(ErrorString*)
89 void InspectorLayerTreeAgent::disable(ErrorString*)
109 void InspectorLayerTreeAgent::layersForNode(ErrorString* errorString, int nodeId, RefPtr<Inspector::TypeBuilder::Array<Inspector::TypeBuilder::LayerTree::Layer>>& layers)
128 void InspectorLayerTreeAgent::gatherLayersUsingRenderObjectHierarchy(ErrorString* errorString, RenderObject* renderer, RefPtr<Inspector::TypeBuilder::Array<Inspector::TypeBuilder::LayerTree::Layer>>& layers)
139 void InspectorLayerTreeAgent::gatherLayersUsingRenderLayerHierarchy(ErrorString* errorString, RenderLayer* renderLayer, RefPtr<Inspector::TypeBuilder::Array<Inspector::TypeBuilder::LayerTree::Layer>>& layers)
148 PassRefPtr<Inspector::TypeBuilder::LayerTree::Layer> InspectorLayerTreeAgent::buildObjectForLayer(ErrorString* errorString, RenderLayer* renderLayer)
206 int InspectorLayerTreeAgent::idForNode(ErrorString* errorString, Node* node)
229 void InspectorLayerTreeAgent::reasonsForCompositingLayer(ErrorString* errorString, const String& layerId, RefPtr<Inspector::TypeBuilder::LayerTree::CompositingReasons>& compositingReasons)
H A DInspectorDOMStorageAgent.cpp87 void InspectorDOMStorageAgent::enable(ErrorString*)
92 void InspectorDOMStorageAgent::disable(ErrorString*)
97 void InspectorDOMStorageAgent::getDOMStorageItems(ErrorString* errorString, const RefPtr<InspectorObject>& storageId, RefPtr<Inspector::TypeBuilder::Array<Inspector::TypeBuilder::Array<String>>>& items)
122 void InspectorDOMStorageAgent::setDOMStorageItem(ErrorString* errorString, const RefPtr<InspectorObject>& storageId, const String& key, const String& value)
137 void InspectorDOMStorageAgent::removeDOMStorageItem(ErrorString* errorString, const RefPtr<InspectorObject>& storageId, const String& key)
185 PassRefPtr<StorageArea> InspectorDOMStorageAgent::findStorageArea(ErrorString* errorString, const RefPtr<InspectorObject>& storageId, Frame*& targetFrame)
H A DInspectorApplicationCacheAgent.cpp69 void InspectorApplicationCacheAgent::enable(ErrorString*)
97 void InspectorApplicationCacheAgent::getFramesWithManifests(ErrorString*, RefPtr<Inspector::TypeBuilder::Array<Inspector::TypeBuilder::ApplicationCache::FrameWithManifest>>& result)
120 DocumentLoader* InspectorApplicationCacheAgent::assertFrameWithDocumentLoader(ErrorString* errorString, String frameId)
129 void InspectorApplicationCacheAgent::getManifestForFrame(ErrorString* errorString, const String& frameId, String* manifestURL)
139 void InspectorApplicationCacheAgent::getApplicationCacheForFrame(ErrorString* errorString, const String& frameId, RefPtr<Inspector::TypeBuilder::ApplicationCache::ApplicationCache>& applicationCache)
/macosx-10.10/JavaScriptCore-7600.1.17/inspector/agents/
H A DInspectorAgent.cpp64 ErrorString error;
68 void InspectorAgent::enable(ErrorString*)
85 void InspectorAgent::disable(ErrorString*)
H A DInspectorAgent.h48 typedef String ErrorString; typedef in namespace:Inspector
60 virtual void enable(ErrorString*) override;
61 virtual void disable(ErrorString*) override;
H A DInspectorConsoleAgent.cpp75 void InspectorConsoleAgent::enable(ErrorString*)
92 void InspectorConsoleAgent::disable(ErrorString*)
100 void InspectorConsoleAgent::clearMessages(ErrorString*)
114 ErrorString error;
127 ErrorString error;
140 ErrorString error;
153 ErrorString error;
H A DInspectorProfilerAgent.cpp96 void InspectorProfilerAgent::enable(ErrorString*)
101 void InspectorProfilerAgent::disable(ErrorString*)
134 void InspectorProfilerAgent::getProfileHeaders(ErrorString*, RefPtr<TypeBuilder::Array<TypeBuilder::Profiler::ProfileHeader>>& headers)
195 void InspectorProfilerAgent::getCPUProfile(ErrorString* errorString, int rawUid, RefPtr<TypeBuilder::Profiler::CPUProfile>& profileObject)
207 void InspectorProfilerAgent::removeProfile(ErrorString*, const String& type, int rawUid)
226 void InspectorProfilerAgent::start(ErrorString*)
231 void InspectorProfilerAgent::stop(ErrorString*)
H A DInspectorRuntimeAgent.cpp85 void InspectorRuntimeAgent::parse(ErrorString*, const String& expression, Inspector::TypeBuilder::Runtime::SyntaxErrorType::Enum* result, Inspector::TypeBuilder::OptOutput<String>* message, RefPtr<Inspector::TypeBuilder::Runtime::ErrorRange>& range)
114 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<Inspector::TypeBuilder::Runtime::RemoteObject>& result, Inspector::TypeBuilder::OptOutput<bool>* wasThrown)
134 void InspectorRuntimeAgent::callFunctionOn(ErrorString* errorString, const String& objectId, const String& expression, const RefPtr<InspectorArray>* const optionalArguments, const bool* const doNotPauseOnExceptionsAndMuteConsole, const bool* const returnByValue, const bool* generatePreview, RefPtr<Inspector::TypeBuilder::Runtime::RemoteObject>& result, Inspector::TypeBuilder::OptOutput<bool>* wasThrown)
160 void InspectorRuntimeAgent::getProperties(ErrorString* errorString, const String& objectId, const bool* const ownProperties, RefPtr<Inspector::TypeBuilder::Array<Inspector::TypeBuilder::Runtime::PropertyDescriptor>>& result, RefPtr<Inspector::TypeBuilder::Array<Inspector::TypeBuilder::Runtime::InternalPropertyDescriptor>>& internalProperties)
178 void InspectorRuntimeAgent::releaseObject(ErrorString*, const String& objectId)
185 void InspectorRuntimeAgent::releaseObjectGroup(ErrorString*, const String& objectGroup)
190 void InspectorRuntimeAgent::run(ErrorString*)
H A DJSGlobalObjectDebuggerAgent.cpp59 InjectedScript JSGlobalObjectDebuggerAgent::injectedScriptForEval(ErrorString* error, const int* executionContextId)
H A DJSGlobalObjectDebuggerAgent.h49 virtual InjectedScript injectedScriptForEval(ErrorString*, const int* executionContextId) override;
H A DJSGlobalObjectRuntimeAgent.cpp62 InjectedScript JSGlobalObjectRuntimeAgent::injectedScriptForEval(ErrorString* errorString, const int* executionContextId)
H A DJSGlobalObjectRuntimeAgent.h48 virtual InjectedScript injectedScriptForEval(ErrorString*, const int* executionContextId) override;
H A DInspectorDebuggerAgent.cpp122 void InspectorDebuggerAgent::enable(ErrorString*)
127 void InspectorDebuggerAgent::disable(ErrorString*)
132 void InspectorDebuggerAgent::setBreakpointsActive(ErrorString*, bool active)
198 bool InspectorDebuggerAgent::breakpointActionsFromProtocol(ErrorString* errorString, RefPtr<InspectorArray>& actions, BreakpointActions* result)
242 void InspectorDebuggerAgent::setBreakpointByUrl(ErrorString* errorString, int lineNumber, const String* const optionalURL, const String* const optionalURLRegex, const int* const optionalColumnNumber, const RefPtr<InspectorObject>* options, Inspector::TypeBuilder::Debugger::BreakpointId* outBreakpointIdentifier, RefPtr<Inspector::TypeBuilder::Array<Inspector::TypeBuilder::Debugger::Location>>& locations)
288 static bool parseLocation(ErrorString* errorString, InspectorObject* location, JSC::SourceID* sourceID, unsigned* lineNumber, unsigned* columnNumber)
303 void InspectorDebuggerAgent::setBreakpoint(ErrorString* errorString, const RefPtr<InspectorObject>& location, const RefPtr<InspectorObject>* options, Inspector::TypeBuilder::Debugger::BreakpointId* outBreakpointIdentifier, RefPtr<Inspector::TypeBuilder::Debugger::Location>& actualLocation)
340 void InspectorDebuggerAgent::removeBreakpoint(ErrorString*, const String& breakpointIdentifier)
353 void InspectorDebuggerAgent::continueToLocation(ErrorString* errorString, const RefPtr<InspectorObject>& location)
398 void InspectorDebuggerAgent::searchInContent(ErrorString* erro
[all...]
/macosx-10.10/JavaScriptCore-7600.1.17/inspector/
H A DInspectorBackendDispatcher.h39 typedef String ErrorString; typedef in namespace:Inspector
59 void sendFailure(const ErrorString&);
63 void sendIfActive(PassRefPtr<InspectorObject> partialMessage, const ErrorString& invocationError);
85 void sendResponse(long callId, PassRefPtr<InspectorObject> result, const ErrorString& invocationError);
H A DInjectedScriptBase.h49 typedef String ErrorString; typedef in namespace:Inspector
71 void makeEvalCall(ErrorString*, Deprecated::ScriptFunctionCall&, RefPtr<TypeBuilder::Runtime::RemoteObject>* result, TypeBuilder::OptOutput<bool>* wasThrown);

Completed in 206 milliseconds

123