()
| 23 | private static volatile Profiler mInstance = null; |
| 24 | |
| 25 | public static Profiler instance(){ |
| 26 | if(mInstance == null) |
| 27 | mInstance = new Profiler(); |
| 28 | |
| 29 | return mInstance; |
| 30 | } |
| 31 | |
| 32 | private volatile boolean mEnabled = false; |
| 33 | private volatile long mTick = 0; |