HomeSort by relevance Sort by last modified time
    Searched defs:callIdentifier (Results 1 - 6 of 6) 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/Source/JavaScriptCore/profiler/
Profile.cpp 45 m_head = ProfileNode::create(0, 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);
Profiler.cpp 51 static CallIdentifier createCallIdentifierFromFunctionImp(ExecState*, JSFunction*);
115 static inline void dispatchFunctionToProfiles(ExecState* callerOrHandlerCallFrame, const Vector<RefPtr<ProfileGenerator> >& profiles, ProfileGenerator::ProfileFunction function, const CallIdentifier& callIdentifier, unsigned currentProfileTargetGroup)
119 (profiles[i].get()->*function)(callerOrHandlerCallFrame, callIdentifier);
134 CallIdentifier callIdentifier = createCallIdentifier(callerCallFrame, JSValue(), sourceURL, startingLineNumber);
136 dispatchFunctionToProfiles(callerCallFrame, m_currentProfiles, &ProfileGenerator::willExecute, callIdentifier, callerCallFrame->lexicalGlobalObject()->profileGroup());
160 CallIdentifier Profiler::createCallIdentifier(ExecState* exec, JSValue functionValue, const UString& defaultSourceURL, int defaultLineNumber)
163 return CallIdentifier(GlobalCodeExecution, defaultSourceURL, defaultLineNumber);
165 return CallIdentifier("(unknown)", defaultSourceURL, defaultLineNumber)
    [all...]
ProfileNode.h 32 #include "CallIdentifier.h"
48 static PassRefPtr<ProfileNode> create(ExecState* callerCallFrame, const CallIdentifier& callIdentifier, ProfileNode* headNode, ProfileNode* parentNode)
50 return adoptRef(new ProfileNode(callerCallFrame, callIdentifier, headNode, parentNode));
57 bool operator==(ProfileNode* node) { return m_callIdentifier == node->callIdentifier(); }
59 ProfileNode* willExecute(ExecState* callerCallFrame, const CallIdentifier&);
64 // CallIdentifier members
66 const CallIdentifier& callIdentifier() const { return m_callIdentifier; }
120 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...]

Completed in 68 milliseconds