Loading install.cpp +2 −2 Original line number Diff line number Diff line Loading @@ -60,8 +60,8 @@ static const float DEFAULT_FILES_PROGRESS_FRACTION = 0.4; static const float DEFAULT_IMAGE_PROGRESS_FRACTION = 0.1; // This function parses and returns the build.version.incremental static int parse_build_number(std::string str) { size_t pos = str.find("="); static int parse_build_number(const std::string& str) { size_t pos = str.find('='); if (pos != std::string::npos) { std::string num_string = android::base::Trim(str.substr(pos+1)); int build_number; Loading tests/component/applypatch_test.cpp +1 −1 Original line number Diff line number Diff line Loading @@ -65,7 +65,7 @@ static bool file_cmp(std::string& f1, std::string& f2) { return c1 == c2; } static std::string from_testdata_base(const std::string fname) { static std::string from_testdata_base(const std::string& fname) { return android::base::StringPrintf("%s%s%s/%s", &DATA_PATH[0], &NATIVE_TEST_PATH[0], Loading wear_touch.cpp +1 −1 Original line number Diff line number Diff line Loading @@ -122,7 +122,7 @@ void* WearSwipeDetector::touch_thread(void* cookie) { return NULL; } #define test_bit(bit, array) (array[bit/8] & (1<<(bit%8))) #define test_bit(bit, array) ((array)[(bit)/8] & (1<<((bit)%8))) int WearSwipeDetector::openDevice(const char *device) { int fd = open(device, O_RDONLY); Loading Loading
install.cpp +2 −2 Original line number Diff line number Diff line Loading @@ -60,8 +60,8 @@ static const float DEFAULT_FILES_PROGRESS_FRACTION = 0.4; static const float DEFAULT_IMAGE_PROGRESS_FRACTION = 0.1; // This function parses and returns the build.version.incremental static int parse_build_number(std::string str) { size_t pos = str.find("="); static int parse_build_number(const std::string& str) { size_t pos = str.find('='); if (pos != std::string::npos) { std::string num_string = android::base::Trim(str.substr(pos+1)); int build_number; Loading
tests/component/applypatch_test.cpp +1 −1 Original line number Diff line number Diff line Loading @@ -65,7 +65,7 @@ static bool file_cmp(std::string& f1, std::string& f2) { return c1 == c2; } static std::string from_testdata_base(const std::string fname) { static std::string from_testdata_base(const std::string& fname) { return android::base::StringPrintf("%s%s%s/%s", &DATA_PATH[0], &NATIVE_TEST_PATH[0], Loading
wear_touch.cpp +1 −1 Original line number Diff line number Diff line Loading @@ -122,7 +122,7 @@ void* WearSwipeDetector::touch_thread(void* cookie) { return NULL; } #define test_bit(bit, array) (array[bit/8] & (1<<(bit%8))) #define test_bit(bit, array) ((array)[(bit)/8] & (1<<((bit)%8))) int WearSwipeDetector::openDevice(const char *device) { int fd = open(device, O_RDONLY); Loading