OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:callIdentifier
(Results
1 - 11
of
11
) 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/
ProfileGenerator.cpp
75
void ProfileGenerator::willExecute(ExecState* callerCallFrame, const
CallIdentifier
&
callIdentifier
)
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
)
93
CString name =
callIdentifier
.m_name.utf8();
94
CString url =
callIdentifier
.m_url.utf8()
[
all
...]
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
);
ProfileNode.cpp
59
ProfileNode::ProfileNode(ExecState* callerCallFrame, const
CallIdentifier
&
callIdentifier
, ProfileNode* headNode, ProfileNode* parentNode)
61
, m_callIdentifier(
callIdentifier
)
78
, m_callIdentifier(nodeToCopy->
callIdentifier
())
92
ProfileNode* ProfileNode::willExecute(ExecState* callerCallFrame, const
CallIdentifier
&
callIdentifier
)
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
[
all
...]
ProfileGenerator.h
41
struct
CallIdentifier
;
54
void willExecute(ExecState* callerCallFrame, const
CallIdentifier
&);
55
void didExecute(ExecState* callerCallFrame, const
CallIdentifier
&);
57
void exceptionUnwind(ExecState* handlerCallFrame, const
CallIdentifier
&);
62
typedef void (ProfileGenerator::*ProfileFunction)(ExecState* callerOrHandlerCallFrame, const
CallIdentifier
&
callIdentifier
);
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
...]
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
...]
/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/Source/WebCore/bindings/js/
JSScriptProfileNodeCustom.cpp
45
JSValue result = jsNumber(impl()->
callIdentifier
().hash());
ScriptProfile.cpp
81
result->setNumber("callUID", node->
callIdentifier
().hash());
Completed in 108 milliseconds