Home
last modified time | relevance | path

Searched refs:profilerRegistry (Results 1 – 4 of 4) sorted by relevance

/external/slf4j/slf4j-ext/src/main/java/org/slf4j/profiler/
DProfiler.java63 ProfilerRegistry profilerRegistry; field in Profiler
77 return profilerRegistry; in getProfilerRegistry()
80 public void registerWith(ProfilerRegistry profilerRegistry) { in registerWith() argument
81 if (profilerRegistry == null) { in registerWith()
84 this.profilerRegistry = profilerRegistry; in registerWith()
85 profilerRegistry.put(this); in registerWith()
109 nestedProfiler.registerWith(profilerRegistry); in startNested()
/external/slf4j/slf4j-ext/src/test/java/org/slf4j/profiler/
DNestedProfilerDemo.java62 ProfilerRegistry profilerRegistry = ProfilerRegistry.getThreadContextInstance(); in main() local
63 profiler.registerWith(profilerRegistry); in main()
DNestedProfilerDemo2.java48 ProfilerRegistry profilerRegistry = ProfilerRegistry.getThreadContextInstance(); in main() local
49 profiler.registerWith(profilerRegistry); in main()
DSortAndPruneComposites.java45 ProfilerRegistry profilerRegistry = ProfilerRegistry.getThreadContextInstance(); in sortAndPruneComposites() local
46 Profiler sortProfiler = profilerRegistry.get(NESTED_PROFILER_NAME); in sortAndPruneComposites()