You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
perf(bindercli): defer generated command registration until needed
Built-in commands (service, aidl, camera) and --help no longer pay
the cost of constructing thousands of generated cobra commands at
startup. Generated commands are only registered on retry when the
first execution attempt returns an "unknown command" error.
Before: ~47ms for --help, ~46ms for service --help (x86)
After: ~6ms for --help, ~7ms for service --help (x86)
0 commit comments