Lines Matching defs:profile
195 // Take last started profile if no title was passed.
212 std::unique_ptr<protocol::Profiler::Profile> profile =
214 if (!profile) return;
216 id, currentDebugLocation(m_session->inspector()), std::move(profile),
288 std::unique_ptr<protocol::Profiler::Profile>* profile) {
294 stopProfiling(m_frontendInitiatedProfileId, !!profile);
295 if (profile) {
296 *profile = std::move(cpuProfile);
297 if (!profile->get()) return Response::ServerError("Profile is not found");
518 return Response::ServerError("Type profile has not been started.");
548 v8::CpuProfile* profile =
551 if (profile) {
552 if (serialize) result = createCPUProfile(m_session->inspector(), profile);
553 profile->Delete();