Loading logd/tests/logd_test.cpp +6 −2 Original line number Diff line number Diff line Loading @@ -933,9 +933,13 @@ TEST(logd, getEventTag_newentry) { } #ifdef __ANDROID__ static inline int32_t get4LE(const char* src) { static inline uint32_t get4LE(const uint8_t* src) { return src[0] | (src[1] << 8) | (src[2] << 16) | (src[3] << 24); } static inline uint32_t get4LE(const char* src) { return get4LE(reinterpret_cast<const uint8_t*>(src)); } #endif void __android_log_btwrite_multiple__helper(int count) { Loading Loading
logd/tests/logd_test.cpp +6 −2 Original line number Diff line number Diff line Loading @@ -933,9 +933,13 @@ TEST(logd, getEventTag_newentry) { } #ifdef __ANDROID__ static inline int32_t get4LE(const char* src) { static inline uint32_t get4LE(const uint8_t* src) { return src[0] | (src[1] << 8) | (src[2] << 16) | (src[3] << 24); } static inline uint32_t get4LE(const char* src) { return get4LE(reinterpret_cast<const uint8_t*>(src)); } #endif void __android_log_btwrite_multiple__helper(int count) { Loading