HomeSort by relevance Sort by last modified time
    Searched defs:CpuProfiler (Results 1 - 8 of 8) sorted by null

  /external/chromium_org/third_party/tcmalloc/chromium/src/
profiler.cc 77 class CpuProfiler {
79 CpuProfiler();
80 ~CpuProfiler();
95 static CpuProfiler instance_;
134 CpuProfiler CpuProfiler::instance_;
137 CpuProfiler::CpuProfiler()
158 bool CpuProfiler::Start(const char* fname, const ProfilerOptions* options) {
186 CpuProfiler::~CpuProfiler()
    [all...]
  /external/chromium_org/third_party/tcmalloc/vendor/src/
profiler.cc 75 class CpuProfiler {
77 CpuProfiler();
78 ~CpuProfiler();
93 static CpuProfiler instance_;
132 CpuProfiler CpuProfiler::instance_;
135 CpuProfiler::CpuProfiler()
156 bool CpuProfiler::Start(const char* fname, const ProfilerOptions* options) {
184 CpuProfiler::~CpuProfiler()
    [all...]
  /external/chromium_org/v8/src/
cpu-profiler.cc 158 int CpuProfiler::GetProfilesCount() {
164 CpuProfile* CpuProfiler::GetProfile(int index) {
169 TickSample* CpuProfiler::TickSampleEvent() {
175 void CpuProfiler::DeleteAllProfiles() {
181 void CpuProfiler::DeleteProfile(CpuProfile* profile) {
197 void CpuProfiler::CallbackEvent(Name* name, Address entry_point) {
211 void CpuProfiler::CodeCreateEvent(Logger::LogEventsAndTags tag,
225 void CpuProfiler::CodeCreateEvent(Logger::LogEventsAndTags tag,
239 void CpuProfiler::CodeCreateEvent(Logger::LogEventsAndTags tag,
263 void CpuProfiler::CodeCreateEvent(Logger::LogEventsAndTags tag
    [all...]
cpu-profiler.h 180 CpuProfiler* cpu_profiler = cpu_profiler_isolate->cpu_profiler(); \
187 class CpuProfiler : public CodeEventListener {
189 explicit CpuProfiler(Isolate* isolate);
191 CpuProfiler(Isolate* isolate,
196 virtual ~CpuProfiler();
262 DISALLOW_COPY_AND_ASSIGN(CpuProfiler);
  /external/v8/src/
cpu-profiler.cc 262 void CpuProfiler::StartProfiling(const char* title) {
268 void CpuProfiler::StartProfiling(String* title) {
274 CpuProfile* CpuProfiler::StopProfiling(const char* title) {
281 CpuProfile* CpuProfiler::StopProfiling(Object* security_token, String* title) {
289 int CpuProfiler::GetProfilesCount() {
297 CpuProfile* CpuProfiler::GetProfile(Object* security_token, int index) {
299 CpuProfiler* profiler = Isolate::Current()->cpu_profiler();
305 CpuProfile* CpuProfiler::FindProfile(Object* security_token, unsigned uid) {
307 CpuProfiler* profiler = Isolate::Current()->cpu_profiler();
313 TickSample* CpuProfiler::TickSampleEvent(Isolate* isolate)
    [all...]
cpu-profiler.h 193 if (v8::internal::CpuProfiler::is_profiling(isolate)) { \
194 v8::internal::CpuProfiler::Call; \
204 class CpuProfiler {
251 CpuProfiler* profiler = isolate->cpu_profiler();
256 CpuProfiler();
257 ~CpuProfiler();
277 DISALLOW_COPY_AND_ASSIGN(CpuProfiler);
  /external/v8/include/
v8-profiler.h 136 * Deletes the profile and removes it from CpuProfiler's list.
150 class V8EXPORT CpuProfiler {
  /external/chromium_org/v8/include/
v8-profiler.h 118 * |record_samples| parameter of CpuProfiler::StartCpuProfiling is true.
141 * Deletes the profile and removes it from CpuProfiler's list.
156 class V8_EXPORT CpuProfiler {
208 CpuProfiler();
209 ~CpuProfiler();
210 CpuProfiler(const CpuProfiler&);
211 CpuProfiler& operator=(const CpuProfiler&);

Completed in 618 milliseconds