HomeSort by relevance Sort by last modified time
    Searched refs:callIdentifier (Results 1 - 10 of 10) sorted by null

  /external/nist-sip/java/gov/nist/javax/sip/header/
CallID.java 49 * callIdentifier field
51 protected CallIdentifier callIdentifier;
86 if (callIdentifier != null)
87 callIdentifier.encode(buffer);
103 * @return CallIdentifier
105 public CallIdentifier getCallIdentifer() {
106 return callIdentifier;
118 callIdentifier = new CallIdentifier(cid)
    [all...]
  /external/webkit/JavaScriptCore/profiler/
ProfileGenerator.cpp 75 void ProfileGenerator::willExecute(const CallIdentifier& callIdentifier)
78 CString name = callIdentifier.m_name.UTF8String();
79 CString url = callIdentifier.m_url.UTF8String();
80 JAVASCRIPTCORE_PROFILE_WILL_EXECUTE(m_profileGroup, const_cast<char*>(name.c_str()), const_cast<char*>(url.c_str()), callIdentifier.m_lineNumber);
87 m_currentNode = m_currentNode->willExecute(callIdentifier);
90 void ProfileGenerator::didExecute(const CallIdentifier& callIdentifier)
93 CString name = callIdentifier.m_name.UTF8String();
94 CString url = callIdentifier.m_url.UTF8String()
    [all...]
Profile.cpp 45 m_head = ProfileNode::create(CallIdentifier("Thread_1", UString(), 0), 0, 0);
74 const CallIdentifier& callIdentifier = profileNode->callIdentifier();
76 processChildren = currentNode->focus(callIdentifier);
87 const CallIdentifier& callIdentifier = profileNode->callIdentifier();
90 currentNode->exclude(callIdentifier);
ProfileNode.cpp 58 ProfileNode::ProfileNode(const CallIdentifier& callIdentifier, ProfileNode* headNode, ProfileNode* parentNode)
59 : m_callIdentifier(callIdentifier)
75 : m_callIdentifier(nodeToCopy->callIdentifier())
89 ProfileNode* ProfileNode::willExecute(const CallIdentifier& callIdentifier)
92 if ((*currentChild)->callIdentifier() == callIdentifier) {
98 RefPtr<ProfileNode> newChild = ProfileNode::create(callIdentifier, m_head ? m_head : this, this); // If this ProfileNode has no head it is the head.
235 bool ProfileNode::focus(const CallIdentifier& callIdentifier
    [all...]
ProfileGenerator.h 40 struct CallIdentifier;
53 void willExecute(const CallIdentifier&);
54 void didExecute(const CallIdentifier&);
59 typedef void (ProfileGenerator::*ProfileFunction)(const CallIdentifier& callIdentifier);
Profiler.cpp 49 static CallIdentifier createCallIdentifierFromFunctionImp(ExecState*, JSFunction*);
100 static inline void dispatchFunctionToProfiles(const Vector<RefPtr<ProfileGenerator> >& profiles, ProfileGenerator::ProfileFunction function, const CallIdentifier& callIdentifier, unsigned currentProfileTargetGroup)
104 (profiles[i].get()->*function)(callIdentifier);
119 CallIdentifier callIdentifier = createCallIdentifier(exec, JSValue(), sourceURL, startingLineNumber);
121 dispatchFunctionToProfiles(m_currentProfiles, &ProfileGenerator::willExecute, callIdentifier, exec->lexicalGlobalObject()->profileGroup());
138 CallIdentifier Profiler::createCallIdentifier(ExecState* exec, JSValue functionValue, const UString& defaultSourceURL, int defaultLineNumber)
141 return CallIdentifier(GlobalCodeExecution, defaultSourceURL, defaultLineNumber);
143 return CallIdentifier("(unknown)", defaultSourceURL, defaultLineNumber)
    [all...]
ProfileNode.h 32 #include "CallIdentifier.h"
46 static PassRefPtr<ProfileNode> create(const CallIdentifier& callIdentifier, ProfileNode* headNode, ProfileNode* parentNode)
48 return adoptRef(new ProfileNode(callIdentifier, headNode, parentNode));
55 bool operator==(ProfileNode* node) { return m_callIdentifier == node->callIdentifier(); }
57 ProfileNode* willExecute(const CallIdentifier&);
62 // CallIdentifier members
63 const CallIdentifier& callIdentifier() const { return m_callIdentifier; }
117 bool focus(const CallIdentifier&)
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/header/extensions/
Join.java 34 * callIdentifier field
36 public CallIdentifier callIdentifier;
52 this.callIdentifier = new CallIdentifier(callId);
82 * @return CallIdentifier
84 public CallIdentifier getCallIdentifer() {
85 return callIdentifier;
100 * Set the callIdentifier member.
101 * @param cid CallIdentifier to set (localId@host)
    [all...]
Replaces.java 34 * callIdentifier field
36 public CallIdentifier callIdentifier;
52 this.callIdentifier = new CallIdentifier(callId);
82 * @return CallIdentifier
84 public CallIdentifier getCallIdentifer() {
85 return callIdentifier;
100 * Set the callIdentifier member.
101 * @param cid CallIdentifier to set (localId@host)
    [all...]
  /external/webkit/WebCore/inspector/
JavaScriptProfileNode.cpp 184 return JSValueMakeNumber(ctx, profileNode->callIdentifier().hash());

Completed in 6289 milliseconds