Home | History | Annotate | Download | only in androidfw

Lines Matching defs:ObbFile

24 #define LOG_TAG "ObbFile"
26 #include <androidfw/ObbFile.h>
46 #define kSignature 0x01059983U /* ObbFile signature */
75 ObbFile::ObbFile()
83 ObbFile::~ObbFile() {
86 bool ObbFile::readFrom(const char* filename)
107 bool ObbFile::readFrom(int fd)
117 bool ObbFile::parseObbFile(int fd)
123 ALOGW("error seeking in ObbFile: %s\n", strerror(errno));
182 ALOGI("couldn't read ObbFile footer: %s\n", strerror(errno));
195 ALOGW("Unsupported ObbFile version %d\n", sigVersion);
208 ALOGW("bad ObbFile package name length (0x%04zx; 0x%04zx possible)\n",
226 bool ObbFile::writeTo(const char* filename)
245 bool ObbFile::writeTo(int fd)
254 ALOGW("tried to write uninitialized ObbFile data\n");
311 bool ObbFile::removeFrom(const char* filename)
330 bool ObbFile::removeFrom(int fd)