Loading libziparchive/include/ziparchive/zip_archive.h +3 −2 Original line number Diff line number Diff line Loading @@ -47,9 +47,10 @@ struct ZipEntry { // Modification time. The zipfile format specifies // that the first two little endian bytes contain the time // and the last two little endian bytes contain the date. // See `GetModificationTime`. // See `GetModificationTime`. Use signed integer to avoid the // sub-overflow. // TODO: should be overridden by extra time field, if present. uint32_t mod_time; int32_t mod_time; // Returns `mod_time` as a broken-down struct tm. struct tm GetModificationTime() const; Loading libziparchive/zip_archive.cc +1 −0 Original line number Diff line number Diff line Loading @@ -1299,6 +1299,7 @@ bool ZipArchive::InitializeCentralDirectory(off64_t cd_start_offset, size_t cd_s return true; } // This function returns the embedded timestamp as is; and doesn't perform validations. tm ZipEntry::GetModificationTime() const { tm t = {}; Loading logcat/event.logtags +2 −0 Original line number Diff line number Diff line Loading @@ -145,6 +145,8 @@ # libcore failure logging 90100 exp_det_cert_pin_failure (certs|4) # 150000 - 160000 reserved for Android Automotive builds 1397638484 snet_event_log (subtag|3) (uid|1) (message|3) # for events that go to stats log buffer Loading rootdir/init.rc +1 −0 Original line number Diff line number Diff line Loading @@ -856,6 +856,7 @@ on boot # are not aware of using fsync()/sync() to prepare sudden power-cut. write /sys/fs/f2fs/${dev.mnt.blk.data}/cp_interval 200 write /sys/fs/f2fs/${dev.mnt.blk.data}/gc_urgent_sleep_time 50 write /sys/fs/f2fs/${dev.mnt.blk.data}/iostat_enable 1 # limit discard size to 128MB in order to avoid long IO latency # for filesystem tuning first (dm or sda) Loading Loading
libziparchive/include/ziparchive/zip_archive.h +3 −2 Original line number Diff line number Diff line Loading @@ -47,9 +47,10 @@ struct ZipEntry { // Modification time. The zipfile format specifies // that the first two little endian bytes contain the time // and the last two little endian bytes contain the date. // See `GetModificationTime`. // See `GetModificationTime`. Use signed integer to avoid the // sub-overflow. // TODO: should be overridden by extra time field, if present. uint32_t mod_time; int32_t mod_time; // Returns `mod_time` as a broken-down struct tm. struct tm GetModificationTime() const; Loading
libziparchive/zip_archive.cc +1 −0 Original line number Diff line number Diff line Loading @@ -1299,6 +1299,7 @@ bool ZipArchive::InitializeCentralDirectory(off64_t cd_start_offset, size_t cd_s return true; } // This function returns the embedded timestamp as is; and doesn't perform validations. tm ZipEntry::GetModificationTime() const { tm t = {}; Loading
logcat/event.logtags +2 −0 Original line number Diff line number Diff line Loading @@ -145,6 +145,8 @@ # libcore failure logging 90100 exp_det_cert_pin_failure (certs|4) # 150000 - 160000 reserved for Android Automotive builds 1397638484 snet_event_log (subtag|3) (uid|1) (message|3) # for events that go to stats log buffer Loading
rootdir/init.rc +1 −0 Original line number Diff line number Diff line Loading @@ -856,6 +856,7 @@ on boot # are not aware of using fsync()/sync() to prepare sudden power-cut. write /sys/fs/f2fs/${dev.mnt.blk.data}/cp_interval 200 write /sys/fs/f2fs/${dev.mnt.blk.data}/gc_urgent_sleep_time 50 write /sys/fs/f2fs/${dev.mnt.blk.data}/iostat_enable 1 # limit discard size to 128MB in order to avoid long IO latency # for filesystem tuning first (dm or sda) Loading