commit | a9b79dd7714fd80e40dc69b5cf0ab4fd6789b70e | [log] [tgz] |
---|---|---|
author | Jooyung Han <jooyung@google.com> | Fri Feb 21 22:46:17 2020 +0900 |
committer | Jooyung Han <jooyung@google.com> | Mon Mar 23 22:16:25 2020 +0900 |
tree | 8cbbff98e040512c8dfa20d2fa622a92ae4b552a | |
parent | 355b949def6e61d51f97ab913d53dcbc6981525c [diff] |
use vector<uint8_t> for byte[] in AIDL In native world, byte stream is typically represented in uint8_t[] or vector<uint8_t>. C++ backend already generates that way. This change involves NDK backend. Now NDK backend also uses vector<uint8_t> just like C++ backend. Bug: 144957764 Test: atest CtsNdkBinderTestCases Merged-In: I8de348b57cf92dd99b3ee16252f56300ce5f4683 Change-Id: I8de348b57cf92dd99b3ee16252f56300ce5f4683 (cherry picked from commit 32b8191d46a64f7effe9ebfa4b46c615c06b495a)
This code uses LOG(X) for logging. Log levels are VERBOSE,DEBUG,INFO,WARNING and ERROR. The default setting is WARNING and logs relate to WARNING and ERROR will be shown. If you want to enable the DEBUG level logs, using following command. adb shell service call dnsresolver 10 i32 1 VERBOSE 0 DEBUG 1 INFO 2 WARNING 3 ERROR 4 Verbose resolver logs could contain PII -- do NOT enable in production builds.