OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:CpuProfiler
(Results
1 - 18
of
18
) sorted by null
/external/v8/test/cctest/
test-cpu-profiler.cc
16
using i::
CpuProfiler
;
232
CpuProfiler
::Setup();
233
CpuProfiler
::StartProfiling("1");
234
CpuProfiler
::StopProfiling("2");
235
CpuProfiler
::StartProfiling("1");
236
CpuProfiler
::StopProfiling("");
237
CpuProfiler
::TearDown();
287
CpuProfiler
::Setup();
288
CHECK_EQ(0,
CpuProfiler
::GetProfilesCount());
289
CpuProfiler
::DeleteAllProfiles()
[
all
...]
test-profile-generator.cc
17
using i::
CpuProfiler
;
728
v8::
CpuProfiler
::StartProfiling(args[0].As<v8::String>());
730
v8::
CpuProfiler
::StartProfiling(v8::String::New(""));
738
v8::
CpuProfiler
::StopProfiling(args[0].As<v8::String>());
740
v8::
CpuProfiler
::StopProfiling(v8::String::New(""));
773
CHECK_EQ(0,
CpuProfiler
::GetProfilesCount());
780
CHECK_EQ(1,
CpuProfiler
::GetProfilesCount());
782
CpuProfiler
::GetProfile(NULL, 0);
/external/v8/src/
cpu-profiler.cc
278
void
CpuProfiler
::StartProfiling(const char* title) {
284
void
CpuProfiler
::StartProfiling(String* title) {
290
CpuProfile*
CpuProfiler
::StopProfiling(const char* title) {
296
CpuProfile*
CpuProfiler
::StopProfiling(Object* security_token, String* title) {
303
int
CpuProfiler
::GetProfilesCount() {
311
CpuProfile*
CpuProfiler
::GetProfile(Object* security_token, int index) {
313
CpuProfiler
* profiler = Isolate::Current()->cpu_profiler();
319
CpuProfile*
CpuProfiler
::FindProfile(Object* security_token, unsigned uid) {
321
CpuProfiler
* profiler = Isolate::Current()->cpu_profiler();
327
TickSample*
CpuProfiler
::TickSampleEvent(Isolate* isolate)
[
all
...]
cpu-profiler.h
203
if (v8::internal::
CpuProfiler
::is_profiling()) { \
204
v8::internal::
CpuProfiler
::Call; \
217
class
CpuProfiler
{
269
CpuProfiler
* profiler = isolate->cpu_profiler();
274
CpuProfiler
();
275
~
CpuProfiler
();
299
DISALLOW_COPY_AND_ASSIGN(
CpuProfiler
);
codegen.cc
179
if (!LOGGER->is_logging() && !
CpuProfiler
::is_profiling()) return false;
log.h
397
friend class
CpuProfiler
;
isolate.cc
548
CpuProfiler
::TearDown();
755
CpuProfiler
::Setup();
api.cc
[
all
...]
isolate.h
59
class
CpuProfiler
;
323
V(
CpuProfiler
*, cpu_profiler, NULL) \
[
all
...]
platform-cygwin.cc
708
TickSample* sample =
CpuProfiler
::TickSampleEvent(sampler->isolate());
platform-freebsd.cc
654
TickSample* sample =
CpuProfiler
::TickSampleEvent(isolate);
platform-macos.cc
741
TickSample* sample =
CpuProfiler
::TickSampleEvent(sampler->isolate());
platform-solaris.cc
608
TickSample* sample =
CpuProfiler
::TickSampleEvent();
compiler.cc
771
if (info->isolate()->logger()->is_logging() ||
CpuProfiler
::is_profiling()) {
platform-linux.cc
865
TickSample* sample =
CpuProfiler
::TickSampleEvent(isolate);
platform-win32.cc
[
all
...]
/external/webkit/Source/WebCore/bindings/v8/
ScriptProfiler.cpp
47
v8::
CpuProfiler
::StartProfiling(v8String(title));
54
v8::
CpuProfiler
::StopProfiling(v8String(title), state->context()->GetSecurityToken()) :
55
v8::
CpuProfiler
::StopProfiling(v8String(title));
/external/v8/include/
v8-profiler.h
136
* Deletes the profile and removes it from
CpuProfiler
's list.
150
class V8EXPORT
CpuProfiler
{
Completed in 1201 milliseconds