/external/webkit/JavaScriptCore/profiler/ |
D | ProfileGenerator.cpp | 75 void ProfileGenerator::willExecute(const CallIdentifier& callIdentifier) in willExecute() argument 78 CString name = callIdentifier.m_name.UTF8String(); in willExecute() 79 CString url = callIdentifier.m_url.UTF8String(); in willExecute() 80 …oup, const_cast<char*>(name.c_str()), const_cast<char*>(url.c_str()), callIdentifier.m_lineNumber); in willExecute() 87 m_currentNode = m_currentNode->willExecute(callIdentifier); in willExecute() 90 void ProfileGenerator::didExecute(const CallIdentifier& callIdentifier) in didExecute() argument 93 CString name = callIdentifier.m_name.UTF8String(); in didExecute() 94 CString url = callIdentifier.m_url.UTF8String(); in didExecute() 95 …oup, const_cast<char*>(name.c_str()), const_cast<char*>(url.c_str()), callIdentifier.m_lineNumber); in didExecute() 102 if (m_currentNode->callIdentifier() != callIdentifier) { in didExecute() [all …]
|
D | ProfileNode.cpp | 58 ProfileNode::ProfileNode(const CallIdentifier& callIdentifier, ProfileNode* headNode, ProfileNode* … in ProfileNode() argument 59 : m_callIdentifier(callIdentifier) in ProfileNode() 75 : m_callIdentifier(nodeToCopy->callIdentifier()) in ProfileNode() 89 ProfileNode* ProfileNode::willExecute(const CallIdentifier& callIdentifier) in willExecute() argument 92 if ((*currentChild)->callIdentifier() == callIdentifier) { in willExecute() 98 …RefPtr<ProfileNode> newChild = ProfileNode::create(callIdentifier, m_head ? m_head : this, this); … in willExecute() 235 bool ProfileNode::focus(const CallIdentifier& callIdentifier) in focus() argument 240 if (m_callIdentifier != callIdentifier) { in focus() 251 void ProfileNode::exclude(const CallIdentifier& callIdentifier) in exclude() argument 253 if (m_visible && m_callIdentifier == callIdentifier) { in exclude()
|
D | Profile.cpp | 74 const CallIdentifier& callIdentifier = profileNode->callIdentifier(); in focus() local 76 processChildren = currentNode->focus(callIdentifier); in focus() 87 const CallIdentifier& callIdentifier = profileNode->callIdentifier(); in exclude() local 90 currentNode->exclude(callIdentifier); in exclude()
|
D | Profiler.cpp | 100 …s, ProfileGenerator::ProfileFunction function, const CallIdentifier& callIdentifier, unsigned curr… in dispatchFunctionToProfiles() argument 104 (profiles[i].get()->*function)(callIdentifier); in dispatchFunctionToProfiles() 119 …CallIdentifier callIdentifier = createCallIdentifier(exec, JSValue(), sourceURL, startingLineNumbe… in willExecute() local 121 …dispatchFunctionToProfiles(m_currentProfiles, &ProfileGenerator::willExecute, callIdentifier, exec… in willExecute()
|
D | ProfileNode.h | 46 …static PassRefPtr<ProfileNode> create(const CallIdentifier& callIdentifier, ProfileNode* headNode,… in create() argument 48 return adoptRef(new ProfileNode(callIdentifier, headNode, parentNode)); in create() 55 bool operator==(ProfileNode* node) { return m_callIdentifier == node->callIdentifier(); } 63 const CallIdentifier& callIdentifier() const { return m_callIdentifier; } in callIdentifier() function
|
D | ProfileGenerator.h | 59 typedef void (ProfileGenerator::*ProfileFunction)(const CallIdentifier& callIdentifier);
|
/external/nist-sip/java/gov/nist/javax/sip/header/ |
D | CallID.java | 51 protected CallIdentifier callIdentifier; field in CallID 86 if (callIdentifier != null) in encodeBody() 87 callIdentifier.encode(buffer); in encodeBody() 106 return callIdentifier; in getCallIdentifer() 118 callIdentifier = new CallIdentifier(cid); in setCallId() 129 callIdentifier = cid; in setCallIdentifier() 138 this.callIdentifier = new CallIdentifier(callId); in CallID() 143 if (this.callIdentifier != null) in clone() 144 retval.callIdentifier = (CallIdentifier) this.callIdentifier.clone(); in clone()
|
/external/nist-sip/java/gov/nist/javax/sip/header/extensions/ |
D | Replaces.java | 36 public CallIdentifier callIdentifier; field in Replaces 52 this.callIdentifier = new CallIdentifier(callId); in Replaces() 85 return callIdentifier; in getCallIdentifer() 104 callIdentifier = cid; in setCallIdentifier()
|
D | Join.java | 36 public CallIdentifier callIdentifier; field in Join 52 this.callIdentifier = new CallIdentifier(callId); in Join() 85 return callIdentifier; in getCallIdentifer() 104 callIdentifier = cid; in setCallIdentifier()
|
/external/webkit/WebCore/inspector/ |
D | JavaScriptProfileNode.cpp | 184 return JSValueMakeNumber(ctx, profileNode->callIdentifier().hash()); in getCallUID()
|
/external/webkit/JavaScriptCore/ |
D | ChangeLog-2008-08-10 | 9031 (KJS::ProfileNode::exclude): If the node matches the callIdentifier then 9219 * profiler/Profile.h: Use a single callIdentifier instead of a vector 9225 (KJS::ProfileNode::addOrStartChild): If the given callIdentifier is 15316 (KJS::ProfileNode::addChild): Compare callIdentifier instead 15321 (CallIdentifier.callIdentifier): Return the CallIdentifier by 15421 (KJS::ProfileNode::callIdentifier):
|