diff options
| author | 2019-10-22 11:20:17 -0700 | |
|---|---|---|
| committer | 2019-10-22 11:20:17 -0700 | |
| commit | 242ff99af1f87e923c20a6196f409515173c5306 (patch) | |
| tree | f2f85e86424ffc8c0a9ea741150c3bc11bcc1920 | |
| parent | aaa605224fed8accd66a542ad89840f7126bb6bf (diff) | |
| parent | e18eefc96f207dca7879a4560c24ffcfda2c0658 (diff) | |
Merge "IServiceManager: use constant expressions" am: dbaed0ac91
am: e18eefc96f
Change-Id: I052abfd7e78ddae1b63490579736136c434cdfaf
| -rw-r--r-- | libs/binder/aidl/android/os/IServiceManager.aidl | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/libs/binder/aidl/android/os/IServiceManager.aidl b/libs/binder/aidl/android/os/IServiceManager.aidl index 60c2cceaf2..471b63fb5e 100644 --- a/libs/binder/aidl/android/os/IServiceManager.aidl +++ b/libs/binder/aidl/android/os/IServiceManager.aidl @@ -31,22 +31,22 @@ interface IServiceManager { * Must update values in IServiceManager.h */ /* Allows services to dump sections according to priorities. */ - const int DUMP_FLAG_PRIORITY_CRITICAL = 1; // 1 << 0 - const int DUMP_FLAG_PRIORITY_HIGH = 2; // 1 << 1 - const int DUMP_FLAG_PRIORITY_NORMAL = 4; // 1 << 2 + const int DUMP_FLAG_PRIORITY_CRITICAL = 1 << 0; + const int DUMP_FLAG_PRIORITY_HIGH = 1 << 1; + const int DUMP_FLAG_PRIORITY_NORMAL = 1 << 2; /** * Services are by default registered with a DEFAULT dump priority. DEFAULT priority has the * same priority as NORMAL priority but the services are not called with dump priority * arguments. */ - const int DUMP_FLAG_PRIORITY_DEFAULT = 8; // 1 << 3 + const int DUMP_FLAG_PRIORITY_DEFAULT = 1 << 3; const int DUMP_FLAG_PRIORITY_ALL = 15; // DUMP_FLAG_PRIORITY_CRITICAL | DUMP_FLAG_PRIORITY_HIGH // | DUMP_FLAG_PRIORITY_NORMAL | DUMP_FLAG_PRIORITY_DEFAULT; /* Allows services to dump sections in protobuf format. */ - const int DUMP_FLAG_PROTO = 16; // 1 << 4 + const int DUMP_FLAG_PROTO = 1 << 4; /** * Retrieve an existing service called @a name from the |