()
| 2395 | } |
| 2396 | |
| 2397 | function startLoggingProfilingEvents() { |
| 2398 | eventLogSize = INITIAL_EVENT_LOG_SIZE; |
| 2399 | eventLogBuffer = new ArrayBuffer(eventLogSize * 4); |
| 2400 | eventLog = new Int32Array(eventLogBuffer); |
| 2401 | eventLogIndex = 0; |
| 2402 | } |
| 2403 | function stopLoggingProfilingEvents() { |
| 2404 | var buffer = eventLogBuffer; |
| 2405 | eventLogSize = 0; |
nothing calls this directly
no outgoing calls
no test coverage detected