Lines Matching refs:profiler
45 let profiler = {};
47 profiler = internalBinding('profiler');
388 #profiler = null;
391 if (!this.#profiler) {
392 this.#profiler = new binding.GCProfiler();
393 this.#profiler.start();
398 if (this.#profiler) {
399 const data = this.#profiler.stop();
400 this.#profiler = null;
418 takeCoverage: profiler.takeCoverage,
419 stopCoverage: profiler.stopCoverage,