OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:CodeEntry
(Results
1 - 12
of
12
) sorted by null
/external/v8/src/
profile-generator-inl.h
46
CodeEntry
::
CodeEntry
(Logger::LogEventsAndTags tag,
62
bool
CodeEntry
::is_js_function_tag(Logger::LogEventsAndTags tag) {
72
ProfileNode::ProfileNode(ProfileTree* tree,
CodeEntry
* entry)
81
CodeEntry
* ProfileGenerator::EntryForVMState(StateTag tag) {
profile-generator.h
94
class
CodeEntry
{
96
//
CodeEntry
doesn't own name strings, just references them.
97
INLINE(
CodeEntry
(Logger::LogEventsAndTags tag,
116
void CopyData(const
CodeEntry
& source);
118
bool IsSameAs(
CodeEntry
* entry) const;
131
DISALLOW_COPY_AND_ASSIGN(
CodeEntry
);
139
INLINE(ProfileNode(ProfileTree* tree,
CodeEntry
* entry));
141
ProfileNode* FindChild(
CodeEntry
* entry);
142
ProfileNode* FindOrAddChild(
CodeEntry
* entry);
147
INLINE(
CodeEntry
* entry() const) { return entry_;
[
all
...]
profile-generator.cc
171
const char* const
CodeEntry
::kEmptyNamePrefix = "";
174
void
CodeEntry
::CopyData(const
CodeEntry
& source) {
183
uint32_t
CodeEntry
::GetCallUid() const {
204
bool
CodeEntry
::IsSameAs(
CodeEntry
* entry) const {
216
ProfileNode* ProfileNode::FindChild(
CodeEntry
* entry) {
224
ProfileNode* ProfileNode::FindOrAddChild(
CodeEntry
* entry) {
294
void ProfileTree::AddPathFromEnd(const Vector<
CodeEntry
*>& path) {
296
for (
CodeEntry
** entry = path.start() + path.length() - 1
[
all
...]
cpu-profiler.h
40
class
CodeEntry
;
71
CodeEntry
* entry;
cpu-profiler.cc
347
Logger::CALLBACK_TAG,
CodeEntry
::kEmptyNamePrefix, name, entry_point);
api.cc
[
all
...]
/external/v8/test/cctest/
test-profile-generator.cc
10
using i::
CodeEntry
;
64
CodeEntry
entry1(i::Logger::FUNCTION_TAG, "", "aaa", "", 0,
69
CodeEntry
entry2(i::Logger::FUNCTION_TAG, "", "bbb", "", 0,
76
CodeEntry
entry3(i::Logger::FUNCTION_TAG, "", "ccc", "", 0,
92
CodeEntry
entry1(i::Logger::FUNCTION_TAG, empty, aaa, empty, 0,
98
CodeEntry
entry2(i::Logger::FUNCTION_TAG, empty, aaa, empty, 0,
102
CodeEntry
entry3(i::Logger::FUNCTION_TAG, empty, aaa, empty, 0,
115
ProfileNode* Walk(
CodeEntry
* entry1,
116
CodeEntry
* entry2 = NULL,
117
CodeEntry
* entry3 = NULL)
[
all
...]
test-cpu-profiler.cc
10
using i::
CodeEntry
;
118
CodeEntry
* entry1 = generator.code_map()->FindEntry(ToAddress(0x1000));
121
CodeEntry
* entry2 = generator.code_map()->FindEntry(ToAddress(0x1200));
124
CodeEntry
* entry3 = generator.code_map()->FindEntry(ToAddress(0x1300));
128
CodeEntry
* entry4 = generator.code_map()->FindEntry(ToAddress(0x1500));
/frameworks/av/media/mtp/
MtpDebug.cpp
21
struct
CodeEntry
{
26
static const
CodeEntry
sOperationCodes[] = {
75
static const
CodeEntry
sFormatCodes[] = {
149
static const
CodeEntry
sObjectPropCodes[] = {
324
static const
CodeEntry
sDevicePropCodes[] = {
370
static const char* getCodeName(uint16_t code, const
CodeEntry
* table) {
371
const
CodeEntry
* entry = table;
/external/v8/tools/
codemap.js
79
* @param {CodeMap.
CodeEntry
}
codeEntry
Code entry object.
81
CodeMap.prototype.addCode = function(start,
codeEntry
) {
82
this.deleteAllCoveredNodes_(this.dynamics_, start, start +
codeEntry
.size);
83
this.dynamics_.insert(start,
codeEntry
);
116
* @param {CodeMap.
CodeEntry
}
codeEntry
Code entry object.
119
start,
codeEntry
) {
120
this.markPages_(start, start +
codeEntry
.size);
121
this.libraries_.insert(start,
codeEntry
);
[
all
...]
profile.js
104
var entry = new CodeMap.
CodeEntry
(
120
var entry = new CodeMap.
CodeEntry
(
418
CodeMap.
CodeEntry
.call(this, size, name);
459
CodeMap.
CodeEntry
.call(this, size);
501
CodeMap.
CodeEntry
.call(this, 0, name);
519
Profile.FunctionEntry.prototype.toString = CodeMap.
CodeEntry
.prototype.toString;
/external/v8/test/mjsunit/tools/
codemap.js
33
return new CodeMap.
CodeEntry
(size, name);
Completed in 1064 milliseconds