/external/webkit/Source/WebCore/inspector/ |
D | InspectorDOMAgent.h | 71 typedef String ErrorString; typedef 114 void querySelector(ErrorString*, int nodeId, const String& selectors, int* elementId); 115 …void querySelectorAll(ErrorString*, int nodeId, const String& selectors, RefPtr<InspectorArray>* r… 116 void getDocument(ErrorString*, RefPtr<InspectorObject>* root); 117 void getChildNodes(ErrorString*, int nodeId); 118 void setAttribute(ErrorString*, int elementId, const String& name, const String& value); 119 void removeAttribute(ErrorString*, int elementId, const String& name); 120 void removeNode(ErrorString*, int nodeId); 121 void setNodeName(ErrorString*, int nodeId, const String& name, int* newId); 122 void getOuterHTML(ErrorString*, int nodeId, WTF::String* outerHTML); [all …]
|
D | InspectorDebuggerAgent.h | 57 typedef String ErrorString; typedef 70 void enable(ErrorString*) { enable(false); } in enable() argument 71 void disable(ErrorString*) { disable(); } in disable() argument 81 void setBreakpointsActive(ErrorString*, bool active); 83 …void setBreakpointByUrl(ErrorString*, const String& url, int lineNumber, const int* const optional… 84 …void setBreakpoint(ErrorString*, PassRefPtr<InspectorObject> location, const String* const optiona… 85 void removeBreakpoint(ErrorString*, const String& breakpointId); 86 void continueToLocation(ErrorString*, PassRefPtr<InspectorObject> location); 88 …void editScriptSource(ErrorString*, const String& sourceID, const String& newContent, RefPtr<Inspe… 89 void getScriptSource(ErrorString*, const String& sourceID, String* scriptSource); [all …]
|
D | InspectorCSSAgent.h | 64 void getStylesForNode(ErrorString*, int nodeId, RefPtr<InspectorObject>* result); 65 void getInlineStyleForNode(ErrorString*, int nodeId, RefPtr<InspectorObject>* style); 66 void getComputedStyleForNode(ErrorString*, int nodeId, RefPtr<InspectorObject>* style); 67 void getAllStyleSheets(ErrorString*, RefPtr<InspectorArray>* styleSheetInfos); 68 void getStyleSheet(ErrorString*, const String& styleSheetId, RefPtr<InspectorObject>* result); 69 void getStyleSheetText(ErrorString*, const String& styleSheetId, String* result); 70 void setStyleSheetText(ErrorString*, const String& styleSheetId, const String& text); 71 …void setPropertyText(ErrorString*, const RefPtr<InspectorObject>& styleId, int propertyIndex, cons… 72 …void toggleProperty(ErrorString*, const RefPtr<InspectorObject>& styleId, int propertyIndex, bool … 73 …void setRuleSelector(ErrorString*, const RefPtr<InspectorObject>& ruleId, const String& selector, … [all …]
|
D | InspectorProfilerAgent.h | 54 typedef String ErrorString; typedef 65 void collectGarbage(ErrorString*); 66 void clearProfiles(ErrorString*) { resetState(); } in clearProfiles() argument 69 void enable(ErrorString*); 70 void disable(ErrorString*); 71 void isEnabled(ErrorString*, bool* result) { *result = enabled(); } in isEnabled() argument 72 void start(ErrorString*) { startUserInitiatedProfiling(); } in start() argument 73 void stop(ErrorString*) { stopUserInitiatedProfiling(); } in stop() argument 79 void getProfileHeaders(ErrorString* error, RefPtr<InspectorArray>* headers); 80 …void getProfile(ErrorString* error, const String& type, unsigned uid, RefPtr<InspectorObject>* pro… [all …]
|
D | InspectorPageAgent.h | 51 typedef String ErrorString; typedef 59 void addScriptToEvaluateOnLoad(ErrorString*, const String& source); 60 void removeAllScriptsToEvaluateOnLoad(ErrorString*); 61 void reloadPage(ErrorString*, const bool* const optionalIgnoreCache); 62 void openInInspectedWindow(ErrorString*, const String& url); 63 void setUserAgentOverride(ErrorString*, const String& userAgent); 64 void getCookies(ErrorString*, RefPtr<InspectorArray>* cookies, WTF::String* cookiesString); 65 void deleteCookie(ErrorString*, const String& cookieName, const String& domain);
|
D | InspectorRuntimeAgent.h | 47 typedef String ErrorString; typedef 55 …void evaluate(ErrorString*, const String& expression, const String* const objectGroup, const bool*… 56 …void evaluateOn(ErrorString*, const String& objectId, const String& expression, RefPtr<InspectorOb… 57 void releaseObject(ErrorString*, const String& objectId); 58 …void getProperties(ErrorString*, const String& objectId, bool ignoreHasOwnProperty, RefPtr<Inspect… 59 …void setPropertyValue(ErrorString*, const String& objectId, const String& propertyName, const Stri… 60 void releaseObjectGroup(ErrorString*, const String& objectGroup);
|
D | InjectedScript.h | 49 typedef String ErrorString; typedef 58 …void evaluate(ErrorString*, const String& expression, const String& objectGroup, bool includeComma… 59 …void evaluateOn(ErrorString*, const String& objectId, const String& expression, RefPtr<InspectorOb… 60 …void evaluateOnCallFrame(ErrorString*, const String& callFrameId, const String& expression, const … 61 …void getProperties(ErrorString*, const String& objectId, bool ignoreHasOwnProperty, RefPtr<Inspect… 63 …void setPropertyValue(ErrorString*, const String& objectId, const String& propertyName, const Stri… 83 void makeObjectCall(ErrorString*, ScriptFunctionCall&, RefPtr<InspectorObject>* result);
|
D | InspectorBrowserDebuggerAgent.h | 54 typedef String ErrorString; typedef 66 void setXHRBreakpoint(ErrorString*, const String& url); 67 void removeXHRBreakpoint(ErrorString*, const String& url); 68 void setEventListenerBreakpoint(ErrorString*, const String& eventName); 69 void removeEventListenerBreakpoint(ErrorString*, const String& eventName); 70 void setDOMBreakpoint(ErrorString*, int nodeId, int type); 71 void removeDOMBreakpoint(ErrorString*, int nodeId, int type);
|
D | InspectorResourceAgent.h | 72 typedef String ErrorString; typedef 87 static void resourceContent(ErrorString*, Frame*, const KURL&, String* result); 88 static void resourceContentBase64(ErrorString*, Frame*, const KURL&, String* result); 119 void enable(ErrorString*); 120 void disable(ErrorString*); 121 void getCachedResources(ErrorString*, RefPtr<InspectorObject>*); 122 …void getResourceContent(ErrorString*, const String& frameId, const String& url, const bool* const … 123 void setExtraHeaders(ErrorString*, PassRefPtr<InspectorObject>);
|
D | InspectorRuntimeAgent.cpp | 52 void InspectorRuntimeAgent::evaluate(ErrorString* errorString, const String& expression, const Stri… in evaluate() 59 void InspectorRuntimeAgent::evaluateOn(ErrorString* errorString, const String& objectId, const Stri… in evaluateOn() 66 void InspectorRuntimeAgent::getProperties(ErrorString* errorString, const String& objectId, bool ig… in getProperties() 73 void InspectorRuntimeAgent::setPropertyValue(ErrorString* errorString, const String& objectId, cons… in setPropertyValue() 82 void InspectorRuntimeAgent::releaseObject(ErrorString*, const String& objectId) in releaseObject() argument 89 void InspectorRuntimeAgent::releaseObjectGroup(ErrorString*, const String& objectGroup) in releaseObjectGroup() argument
|
D | InspectorConsoleAgent.h | 53 typedef String ErrorString; typedef 61 void enable(ErrorString*, int* consoleMessageExpireCount); 62 void disable(ErrorString*); 63 void clearConsoleMessages(ErrorString* error); 82 void setMonitoringXHREnabled(ErrorString* error, bool enabled); 83 void addInspectedNode(ErrorString*, int nodeId);
|
D | InspectorDatabaseAgent.h | 45 typedef String ErrorString; typedef 64 void enable(ErrorString*); 65 void disable(ErrorString*); 66 void getDatabaseTableNames(ErrorString*, int databaseId, RefPtr<InspectorArray>* names); 67 …void executeSQL(ErrorString*, int databaseId, const String& query, bool* success, int* transaction…
|
D | InspectorDebuggerAgent.cpp | 130 void InspectorDebuggerAgent::setBreakpointsActive(ErrorString*, bool active) in setBreakpointsActive() argument 154 void InspectorDebuggerAgent::setBreakpointByUrl(ErrorString*, const String& url, int lineNumber, co… in setBreakpointByUrl() argument 177 static bool parseLocation(ErrorString* errorString, RefPtr<InspectorObject> location, String* sourc… in parseLocation() 189 void InspectorDebuggerAgent::setBreakpoint(ErrorString* errorString, PassRefPtr<InspectorObject> lo… in setBreakpoint() 211 void InspectorDebuggerAgent::removeBreakpoint(ErrorString*, const String& breakpointId) in removeBreakpoint() argument 225 void InspectorDebuggerAgent::continueToLocation(ErrorString* errorString, PassRefPtr<InspectorObjec… in continueToLocation() 280 void InspectorDebuggerAgent::editScriptSource(ErrorString* error, const String& sourceID, const Str… in editScriptSource() 286 void InspectorDebuggerAgent::getScriptSource(ErrorString*, const String& sourceID, String* scriptSo… in getScriptSource() argument 309 void InspectorDebuggerAgent::pause(ErrorString*) in pause() argument 315 void InspectorDebuggerAgent::resume(ErrorString*) in resume() argument [all …]
|
D | InspectorDOMStorageAgent.h | 46 typedef String ErrorString; typedef 62 void getDOMStorageEntries(ErrorString*, int storageId, RefPtr<InspectorArray>* entries); 63 …void setDOMStorageItem(ErrorString*, int storageId, const String& key, const String& value, bool* … 64 void removeDOMStorageItem(ErrorString*, int storageId, const String& key, bool* success);
|
D | InspectorDOMAgent.cpp | 297 ErrorString error; in clearFrontend() 327 ErrorString error; in reset() 400 Node* InspectorDOMAgent::assertNode(ErrorString* errorString, int nodeId) in assertNode() 410 Element* InspectorDOMAgent::assertElement(ErrorString* errorString, int nodeId) in assertElement() 424 HTMLElement* InspectorDOMAgent::assertHTMLElement(ErrorString* errorString, int nodeId) in assertHTMLElement() 437 void InspectorDOMAgent::getDocument(ErrorString*, RefPtr<InspectorObject>* root) in getDocument() argument 484 void InspectorDOMAgent::getChildNodes(ErrorString*, int nodeId) in getChildNodes() argument 489 void InspectorDOMAgent::querySelector(ErrorString* errorString, int nodeId, const String& selectors… in querySelector() 507 void InspectorDOMAgent::querySelectorAll(ErrorString* errorString, int nodeId, const String& select… in querySelectorAll() 575 void InspectorDOMAgent::setAttribute(ErrorString* errorString, int elementId, const String& name, c… in setAttribute() [all …]
|
D | InspectorCSSAgent.cpp | 184 void InspectorCSSAgent::getStylesForNode(ErrorString* errorString, int nodeId, RefPtr<InspectorObje… in getStylesForNode() 239 void InspectorCSSAgent::getInlineStyleForNode(ErrorString* errorString, int nodeId, RefPtr<Inspecto… in getInlineStyleForNode() 252 void InspectorCSSAgent::getComputedStyleForNode(ErrorString* errorString, int nodeId, RefPtr<Inspec… in getComputedStyleForNode() 263 void InspectorCSSAgent::getAllStyleSheets(ErrorString*, RefPtr<InspectorArray>* styleInfos) in getAllStyleSheets() argument 278 void InspectorCSSAgent::getStyleSheet(ErrorString* errorString, const String& styleSheetId, RefPtr<… in getStyleSheet() 287 void InspectorCSSAgent::getStyleSheetText(ErrorString* errorString, const String& styleSheetId, Str… in getStyleSheetText() 296 void InspectorCSSAgent::setStyleSheetText(ErrorString* errorString, const String& styleSheetId, con… in setStyleSheetText() 308 void InspectorCSSAgent::setPropertyText(ErrorString* errorString, const RefPtr<InspectorObject>& fu… in setPropertyText() 322 void InspectorCSSAgent::toggleProperty(ErrorString* errorString, const RefPtr<InspectorObject>& ful… in toggleProperty() 336 void InspectorCSSAgent::setRuleSelector(ErrorString* errorString, const RefPtr<InspectorObject>& fu… in setRuleSelector() [all …]
|
D | InspectorController.cpp | 93 ErrorString error; in startTimelineProfiler() 99 ErrorString error; in stopTimelineProfiler() 254 ErrorString error; in hideHighlight() 266 ErrorString error; in enableProfiler() 272 ErrorString error; in disableProfiler() 325 ErrorString error; in resume()
|
D | InspectorPageAgent.cpp | 86 void InspectorPageAgent::addScriptToEvaluateOnLoad(ErrorString*, const String& source) in addScriptToEvaluateOnLoad() argument 91 void InspectorPageAgent::removeAllScriptsToEvaluateOnLoad(ErrorString*) in removeAllScriptsToEvaluateOnLoad() argument 96 void InspectorPageAgent::reloadPage(ErrorString*, const bool* const optionalIgnoreCache) in reloadPage() argument 101 void InspectorPageAgent::openInInspectedWindow(ErrorString*, const String& url) in openInInspectedWindow() argument 119 void InspectorPageAgent::setUserAgentOverride(ErrorString*, const String& userAgent) in setUserAgentOverride() argument 157 void InspectorPageAgent::getCookies(ErrorString*, RefPtr<InspectorArray>* cookies, WTF::String* coo… in getCookies() argument 201 void InspectorPageAgent::deleteCookie(ErrorString*, const String& cookieName, const String& domain) in deleteCookie() argument
|
D | InspectorProfilerAgent.cpp | 118 void InspectorProfilerAgent::collectGarbage(WebCore::ErrorString*) in collectGarbage() argument 141 void InspectorProfilerAgent::enable(ErrorString*) in enable() argument 149 void InspectorProfilerAgent::disable(ErrorString*) in disable() argument 184 void InspectorProfilerAgent::getProfileHeaders(ErrorString*, RefPtr<InspectorArray>* headers) in getProfileHeaders() argument 209 void InspectorProfilerAgent::getProfile(ErrorString*, const String& type, unsigned uid, RefPtr<Insp… in getProfile() argument 230 void InspectorProfilerAgent::removeProfile(ErrorString*, const String& type, unsigned uid) in removeProfile() argument 286 ErrorString error; in restoreEnablement() 360 void InspectorProfilerAgent::takeHeapSnapshot(ErrorString*, bool detailed) in takeHeapSnapshot() argument
|
D | InjectedScript.cpp | 57 void InjectedScript::evaluate(ErrorString* errorString, const String& expression, const String& obj… in evaluate() 66 void InjectedScript::evaluateOn(ErrorString* errorString, const String& objectId, const String& exp… in evaluateOn() 74 void InjectedScript::evaluateOnCallFrame(ErrorString* errorString, const String& callFrameId, const… in evaluateOnCallFrame() 84 void InjectedScript::getProperties(ErrorString* errorString, const String& objectId, bool ignoreHas… in getProperties() 114 void InjectedScript::setPropertyValue(ErrorString* errorString, const String& objectId, const Strin… in setPropertyValue() 207 void InjectedScript::makeObjectCall(ErrorString* errorString, ScriptFunctionCall& function, RefPtr<… in makeObjectCall()
|
D | InspectorConsoleAgent.cpp | 82 void InspectorConsoleAgent::enable(ErrorString*, int* consoleMessageExpireCount) in enable() argument 93 void InspectorConsoleAgent::disable(ErrorString*) in disable() argument 98 void InspectorConsoleAgent::clearConsoleMessages(ErrorString*) in clearConsoleMessages() argument 111 ErrorString error; in reset() 226 void InspectorConsoleAgent::setMonitoringXHREnabled(ErrorString*, bool enabled) in setMonitoringXHREnabled() argument 231 void InspectorConsoleAgent::addInspectedNode(ErrorString*, int nodeId) in addInspectedNode() argument
|
D | InspectorTimelineAgent.h | 52 typedef String ErrorString; typedef 68 void start(ErrorString* error); 69 void stop(ErrorString* error);
|
D | InspectorApplicationCacheAgent.h | 47 typedef String ErrorString; typedef 63 void getApplicationCaches(ErrorString*, RefPtr<InspectorObject>* applicationCaches);
|
D | InspectorStyleSheet.h | 52 typedef String ErrorString; typedef 132 bool setPropertyText(ErrorString*, unsigned index, const String& text, bool overwrite); 133 bool toggleProperty(ErrorString*, unsigned index, bool disable); 176 …bool setPropertyText(ErrorString*, const InspectorCSSId&, unsigned propertyIndex, const String& te… 177 bool toggleProperty(ErrorString*, const InspectorCSSId&, unsigned propertyIndex, bool disable);
|
/external/stressapptest/src/ |
D | os.cc | 194 string errtxt = ErrorString(err); in FlushPageCache() 205 string errtxt = ErrorString(err); in FlushPageCache() 453 string errtxt = ErrorString(err); in AllocateTestMem() 464 string errtxt = ErrorString(err); in AllocateTestMem() 470 string errtxt = ErrorString(err); in AllocateTestMem() 493 string errtxt = ErrorString(err); in AllocateTestMem() 502 string errtxt = ErrorString(err); in AllocateTestMem() 521 string errtxt = ErrorString(err); in AllocateTestMem() 607 string errtxt = ErrorString(errno); in PrepareTestMem() 624 string errtxt = ErrorString(errno); in ReleaseTestMem()
|