| 1146 | } |
| 1147 | |
| 1148 | void* MappedZipFile::GetBasePtr() const { |
| 1149 | if (has_fd_) { |
| 1150 | //chensenhua ALOGW("Zip: MappedZipFile doesn't have a base pointer."); |
| 1151 | return nullptr; |
| 1152 | } |
| 1153 | return base_ptr_; |
| 1154 | } |
| 1155 | |
| 1156 | off64_t MappedZipFile::GetFileLength() const { |
| 1157 | if (has_fd_) { |
no outgoing calls
no test coverage detected