Searched refs:prof_handler_token_ (Results 1 - 2 of 2) sorted by relevance

/external/chromium_org/third_party/tcmalloc/chromium/src/
H A Dprofiler.cc118 ProfileHandlerToken* prof_handler_token_; member in class:CpuProfiler
138 : prof_handler_token_(NULL) {
246 RAW_CHECK(prof_handler_token_ == NULL, "SIGPROF handler already registered");
247 prof_handler_token_ = ProfileHandlerRegisterCallback(prof_handler, this);
248 RAW_CHECK(prof_handler_token_ != NULL, "Failed to set up SIGPROF handler");
252 RAW_CHECK(prof_handler_token_ != NULL, "SIGPROF handler is not registered");
253 ProfileHandlerUnregisterCallback(prof_handler_token_);
254 prof_handler_token_ = NULL;
/external/chromium_org/third_party/tcmalloc/vendor/src/
H A Dprofiler.cc116 ProfileHandlerToken* prof_handler_token_; member in class:CpuProfiler
136 : prof_handler_token_(NULL) {
244 RAW_CHECK(prof_handler_token_ == NULL, "SIGPROF handler already registered");
245 prof_handler_token_ = ProfileHandlerRegisterCallback(prof_handler, this);
246 RAW_CHECK(prof_handler_token_ != NULL, "Failed to set up SIGPROF handler");
250 RAW_CHECK(prof_handler_token_ != NULL, "SIGPROF handler is not registered");
251 ProfileHandlerUnregisterCallback(prof_handler_token_);
252 prof_handler_token_ = NULL;

Completed in 1099 milliseconds