Searched defs:callIdentifier (Results 1 - 8 of 8) sorted by relevance
/external/nist-sip/java/gov/nist/javax/sip/header/ |
H A D | CallID.java | 49 * callIdentifier field 51 protected CallIdentifier callIdentifier; field in class:CallID 86 if (callIdentifier != null) 87 callIdentifier.encode(buffer); 106 return callIdentifier; 118 callIdentifier = new CallIdentifier(cid); 125 * Set the callIdentifier member. 129 callIdentifier = cid; 138 this.callIdentifier = new CallIdentifier(callId); 143 if (this.callIdentifier ! [all...] |
/external/nist-sip/java/gov/nist/javax/sip/header/extensions/ |
H A D | Join.java | 34 * callIdentifier field 36 public CallIdentifier callIdentifier; field in class:Join 52 this.callIdentifier = new CallIdentifier(callId); 85 return callIdentifier; 100 * Set the callIdentifier member. 104 callIdentifier = cid; 182 // if (this.callIdentifier != null) 183 // retval.setCallIdentifier( (CallIdentifier) this.callIdentifier.clone() );
|
H A D | Replaces.java | 34 * callIdentifier field 36 public CallIdentifier callIdentifier; field in class:Replaces 52 this.callIdentifier = new CallIdentifier(callId); 85 return callIdentifier; 100 * Set the callIdentifier member. 104 callIdentifier = cid; 182 // if (this.callIdentifier != null) 183 // retval.setCallIdentifier( (CallIdentifier) this.callIdentifier.clone() );
|
/external/webkit/Source/JavaScriptCore/profiler/ |
H A D | Profile.cpp | 74 const CallIdentifier& callIdentifier = profileNode->callIdentifier(); local 76 processChildren = currentNode->focus(callIdentifier); 87 const CallIdentifier& callIdentifier = profileNode->callIdentifier(); local 90 currentNode->exclude(callIdentifier);
|
H A D | ProfileGenerator.cpp | 75 void ProfileGenerator::willExecute(ExecState* callerCallFrame, const CallIdentifier& callIdentifier) argument 78 CString name = callIdentifier.m_name.utf8(); 79 CString url = callIdentifier.m_url.utf8(); 80 JAVASCRIPTCORE_PROFILE_WILL_EXECUTE(m_profileGroup, const_cast<char*>(name.data()), const_cast<char*>(url.data()), callIdentifier.m_lineNumber); 87 m_currentNode = m_currentNode->willExecute(callerCallFrame, callIdentifier); 90 void ProfileGenerator::didExecute(ExecState* callerCallFrame, const CallIdentifier& callIdentifier) argument 93 CString name = callIdentifier.m_name.utf8(); 94 CString url = callIdentifier.m_url.utf8(); 95 JAVASCRIPTCORE_PROFILE_DID_EXECUTE(m_profileGroup, const_cast<char*>(name.data()), const_cast<char*>(url.data()), callIdentifier.m_lineNumber); 102 if (m_currentNode->callIdentifier() ! [all...] |
H A D | Profiler.cpp | 115 static inline void dispatchFunctionToProfiles(ExecState* callerOrHandlerCallFrame, const Vector<RefPtr<ProfileGenerator> >& profiles, ProfileGenerator::ProfileFunction function, const CallIdentifier& callIdentifier, unsigned currentProfileTargetGroup) argument 119 (profiles[i].get()->*function)(callerOrHandlerCallFrame, callIdentifier); 134 CallIdentifier callIdentifier = createCallIdentifier(callerCallFrame, JSValue(), sourceURL, startingLineNumber); local 136 dispatchFunctionToProfiles(callerCallFrame, m_currentProfiles, &ProfileGenerator::willExecute, callIdentifier, callerCallFrame->lexicalGlobalObject()->profileGroup());
|
H A D | ProfileNode.cpp | 59 ProfileNode::ProfileNode(ExecState* callerCallFrame, const CallIdentifier& callIdentifier, ProfileNode* headNode, ProfileNode* parentNode) argument 61 , m_callIdentifier(callIdentifier) 78 , m_callIdentifier(nodeToCopy->callIdentifier()) 92 ProfileNode* ProfileNode::willExecute(ExecState* callerCallFrame, const CallIdentifier& callIdentifier) argument 95 if ((*currentChild)->callIdentifier() == callIdentifier) { 101 RefPtr<ProfileNode> newChild = ProfileNode::create(callerCallFrame, callIdentifier, m_head ? m_head : this, this); // If this ProfileNode has no head it is the head. 238 bool ProfileNode::focus(const CallIdentifier& callIdentifier) argument 243 if (m_callIdentifier != callIdentifier) { 254 void ProfileNode::exclude(const CallIdentifier& callIdentifier) argument [all...] |
H A D | ProfileNode.h | 48 static PassRefPtr<ProfileNode> create(ExecState* callerCallFrame, const CallIdentifier& callIdentifier, ProfileNode* headNode, ProfileNode* parentNode) argument 50 return adoptRef(new ProfileNode(callerCallFrame, callIdentifier, headNode, parentNode)); 57 bool operator==(ProfileNode* node) { return m_callIdentifier == node->callIdentifier(); } 66 const CallIdentifier& callIdentifier() const { return m_callIdentifier; } function in class:JSC::ProfileNode
|
Completed in 101 milliseconds