Home
last modified time | relevance | path

Searched refs:CallIdentifier (Results 1 – 19 of 19) sorted by relevance

/external/webkit/JavaScriptCore/profiler/
DCallIdentifier.h35 struct CallIdentifier : public FastAllocBase { struct
40 CallIdentifier() in CallIdentifier() argument
45 CallIdentifier(const UString& name, const UString& url, int lineNumber) in CallIdentifier() function
52 …inline bool operator==(const CallIdentifier& ci) const { return ci.m_lineNumber == m_lineNumber &&…
53 inline bool operator!=(const CallIdentifier& ci) const { return !(*this == ci); }
56 static unsigned hash(const CallIdentifier& key) in hash() argument
66 static bool equal(const CallIdentifier& a, const CallIdentifier& b) { return a == b; } in equal()
82 template<> struct DefaultHash<JSC::CallIdentifier> { typedef JSC::CallIdentifier::Hash Hash; }; argument
84 template<> struct HashTraits<JSC::CallIdentifier> : GenericHashTraits<JSC::CallIdentifier> {
85 static void constructDeletedValue(JSC::CallIdentifier& slot)
[all …]
DProfiler.cpp49 static CallIdentifier createCallIdentifierFromFunctionImp(ExecState*, JSFunction*);
100 …ator> >& profiles, ProfileGenerator::ProfileFunction function, const CallIdentifier& callIdentifie… in dispatchFunctionToProfiles()
119CallIdentifier callIdentifier = createCallIdentifier(exec, JSValue(), sourceURL, startingLineNumbe… in willExecute()
138 CallIdentifier Profiler::createCallIdentifier(ExecState* exec, JSValue functionValue, const UString… in createCallIdentifier()
141 return CallIdentifier(GlobalCodeExecution, defaultSourceURL, defaultLineNumber); in createCallIdentifier()
143 return CallIdentifier("(unknown)", defaultSourceURL, defaultLineNumber); in createCallIdentifier()
150 …return CallIdentifier(static_cast<InternalFunction*>(asObject(functionValue))->name(exec), default… in createCallIdentifier()
151 …return CallIdentifier(makeString("(", asObject(functionValue)->className(), " object)"), defaultSo… in createCallIdentifier()
154 CallIdentifier createCallIdentifierFromFunctionImp(ExecState* exec, JSFunction* function) in createCallIdentifierFromFunctionImp()
158 …return CallIdentifier(name.isEmpty() ? AnonymousFunction : name, function->jsExecutable()->sourceU… in createCallIdentifierFromFunctionImp()
DProfileNode.h46 …static PassRefPtr<ProfileNode> create(const CallIdentifier& callIdentifier, ProfileNode* headNode,… in create()
57 ProfileNode* willExecute(const CallIdentifier&);
63 const CallIdentifier& callIdentifier() const { return m_callIdentifier; } in callIdentifier()
117 bool focus(const CallIdentifier&);
118 void exclude(const CallIdentifier&);
130 ProfileNode(const CallIdentifier&, ProfileNode* headNode, ProfileNode* parentNode);
149 CallIdentifier m_callIdentifier;
DProfileGenerator.h40 struct CallIdentifier;
53 void willExecute(const CallIdentifier&);
54 void didExecute(const CallIdentifier&);
59 typedef void (ProfileGenerator::*ProfileFunction)(const CallIdentifier& callIdentifier);
DProfile.cpp45 m_head = ProfileNode::create(CallIdentifier("Thread_1", UString(), 0), 0, 0); in Profile()
74 const CallIdentifier& callIdentifier = profileNode->callIdentifier(); in focus()
87 const CallIdentifier& callIdentifier = profileNode->callIdentifier(); in exclude()
DProfiler.h45 struct CallIdentifier;
55 …static CallIdentifier createCallIdentifier(ExecState* exec, JSValue, const UString& sourceURL, int…
DProfileNode.cpp58 ProfileNode::ProfileNode(const CallIdentifier& callIdentifier, ProfileNode* headNode, ProfileNode* … in ProfileNode()
89 ProfileNode* ProfileNode::willExecute(const CallIdentifier& callIdentifier) in willExecute()
235 bool ProfileNode::focus(const CallIdentifier& callIdentifier) in focus()
251 void ProfileNode::exclude(const CallIdentifier& callIdentifier) in exclude()
DProfileGenerator.cpp75 void ProfileGenerator::willExecute(const CallIdentifier& callIdentifier) in willExecute()
90 void ProfileGenerator::didExecute(const CallIdentifier& callIdentifier) in didExecute()
127 …RefPtr<ProfileNode> idleNode = ProfileNode::create(CallIdentifier(NonJSExecution, UString(), 0), m… in stopProfiling()
/external/nist-sip/java/gov/nist/javax/sip/header/
DCallID.java51 protected CallIdentifier callIdentifier;
105 public CallIdentifier getCallIdentifer() { in getCallIdentifer()
118 callIdentifier = new CallIdentifier(cid); in setCallId()
128 public void setCallIdentifier(CallIdentifier cid) { in setCallIdentifier()
138 this.callIdentifier = new CallIdentifier(callId); in CallID()
144 retval.callIdentifier = (CallIdentifier) this.callIdentifier.clone(); in clone()
DCallIdentifier.java40 public final class CallIdentifier extends SIPObject { class
60 public CallIdentifier() { in CallIdentifier() method in CallIdentifier
68 public CallIdentifier(String localId, String host) { in CallIdentifier() method in CallIdentifier
79 public CallIdentifier(String cid) throws IllegalArgumentException { in CallIdentifier() method in CallIdentifier
110 CallIdentifier that = (CallIdentifier) other; in equals()
DInReplyTo.java51 protected CallIdentifier callId;
62 public InReplyTo(CallIdentifier cid) { in InReplyTo()
77 this.callId = new CallIdentifier(callId); in setCallId()
106 retval.callId = (CallIdentifier) this.callId.clone(); in clone()
/external/nist-sip/java/gov/nist/javax/sip/header/extensions/
DReplaces.java36 public CallIdentifier callIdentifier;
52 this.callIdentifier = new CallIdentifier(callId); in Replaces()
84 public CallIdentifier getCallIdentifer() { in getCallIdentifer()
103 public void setCallIdentifier(CallIdentifier cid) { in setCallIdentifier()
DJoin.java36 public CallIdentifier callIdentifier;
52 this.callIdentifier = new CallIdentifier(callId); in Join()
84 public CallIdentifier getCallIdentifer() { in getCallIdentifer()
103 public void setCallIdentifier(CallIdentifier cid) { in setCallIdentifier()
/external/webkit/JavaScriptCore/
DJavaScriptCore.gypi151 'profiler/CallIdentifier.h',
DGNUmakefile.am164 JavaScriptCore/profiler/CallIdentifier.h \
DChangeLog-2008-08-101693 * profiler/CallIdentifier.h:
1977 * profiler/CallIdentifier.h: Removed an unused constructor.
2037 * profiler/CallIdentifier.h:
2038 (KJS::CallIdentifier::CallIdentifier):
2530 * profiler/CallIdentifier.h: Rename debug function to make it clear of
2532 (KJS::CallIdentifier::operator const char* ): Implement in terms of
2534 (KJS::CallIdentifier::c_str):
2582 Broke CallIdentifier out into its own file. I did this because it's
2586 * profiler/CallIdentifier.h: Added.
2587 (KJS::CallIdentifier::CallIdentifier):
[all …]
DChangeLog-2009-06-167905 * profiler/CallIdentifier.h:
7906 (JSC::CallIdentifier::Hash::hash):
7907 (JSC::CallIdentifier::Hash::equal):
7908 (JSC::CallIdentifier::hash):
25173 * profiler/CallIdentifier.h:
25698 that HashTraits<CallIdentifier>::needsDestruction was false, so
25701 * profiler/CallIdentifier.h:
25713 Moved the CallIdentifier hash function out of the WTF namespace;
25716 Changed the CallIdentifier hash function to be a struct rather than
25718 a specialization made no sense, since CallIdentifier is not an integer,
[all …]
DChangeLog18996 * profiler/CallIdentifier.h:
19517 Inherits CallIdentifier struct from FastAllocBase because it has been
19518 instantiated by 'new' in JavaScriptCore/profiler/CallIdentifier.h:86.
/external/webkit/JavaScriptCore/JavaScriptCore.xcodeproj/
Dproject.pbxproj267 …C050E1AE68200B2D1C1 /* CallIdentifier.h in Headers */ = {isa = PBXBuildFile; fileRef = 95E3BC040E1…
830CallIdentifier.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.…
1695 95E3BC040E1AE68200B2D1C1 /* CallIdentifier.h */,
1817 95E3BC050E1AE68200B2D1C1 /* CallIdentifier.h in Headers */,