Where is ADB, Android Debug Bridge, component source code located in an open source Android project

From this article , I know that Android Debug Bridge consists of three components:

  • ADB Client

  • ADB server

  • Daemon on hardware or emulator

I would like to get a deeper understanding of these components from their respective source code. So far I have found:

  • ADB Client: ./ system / core / adb / adb_client

  • ADB server: ./ system / core / adb / adb

  • Daemon on hardware or an emulator: I don’t know where it is in the framework project ...

+6
source share
1 answer

The source code for all three parts of ADB is in the same system / core / adb folder.

+8
source

All Articles