Last active
April 9, 2026 19:31
-
-
Save LethalMaus/ddb25fb37b016fb3d4bc86a1dc21d5dc to your computer and use it in GitHub Desktop.
Perfetto trace slice naming code
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| trace("AppStartup") { | |
| registerEarlyListeners() | |
| resolveInitialState() | |
| renderRootUi() | |
| } | |
| trace("RuntimeConnect") { | |
| startLocalWatchers() | |
| createRuntimeClient() | |
| openRuntimeConnection() | |
| } | |
| trace("TransportConnect") { | |
| bindInputChannel() | |
| bindOutputChannel() | |
| beginReceiveLoop() | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment