OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:current_profiles_
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/v8/src/
profile-generator.cc
462
current_profiles_
.Iterate(DeleteCpuProfile);
470
if (
current_profiles_
.length() >= kMaxSimultaneousProfiles) {
474
for (int i = 0; i <
current_profiles_
.length(); ++i) {
475
if (strcmp(
current_profiles_
[i]->title(), title) == 0) {
481
current_profiles_
.Add(new CpuProfile(title, record_samples));
491
for (int i =
current_profiles_
.length() - 1; i >= 0; --i) {
492
if (title_len == 0 || strcmp(
current_profiles_
[i]->title(), title) == 0) {
493
profile =
current_profiles_
.Remove(i);
509
if (
current_profiles_
.length() != 1) return false;
511
|| strcmp(
current_profiles_
[0]->title(), title) == 0
[
all
...]
profile-generator.h
299
List<CpuProfile*>
current_profiles_
;
member in class:v8::internal::CpuProfilesCollection
Completed in 115 milliseconds