| 1138 | #endif //! defined(_WIN32) |
| 1139 | |
| 1140 | int MappedZipFile::GetFileDescriptor() const { |
| 1141 | if (!has_fd_) { |
| 1142 | //chensenhua ALOGW("Zip: MappedZipFile doesn't have a file descriptor."); |
| 1143 | return -1; |
| 1144 | } |
| 1145 | return fd_; |
| 1146 | } |
| 1147 | |
| 1148 | void* MappedZipFile::GetBasePtr() const { |
| 1149 | if (has_fd_) { |
no outgoing calls
no test coverage detected