Home | History | Annotate | Download | only in libdex

Lines Matching refs:fileName

56 #define kLFHNameLen          26              // offset to filename length
67 #define kCDENameLen 28 // offset to filename length
387 ALOGW("Filename contains NUL byte");
391 /* add the CDE filename to the hash table */
422 int dexZipOpenArchive(const char* fileName, ZipArchive* pArchive)
426 ALOGV("Opening as zip '%s' %p", fileName, pArchive);
430 fd = open(fileName, O_RDONLY | O_BINARY, 0);
433 ALOGV("Unable to open '%s': %s", fileName, strerror(err));
437 return dexZipPrepArchive(fd, fileName, pArchive);
563 * Recover the start of the central directory entry from the filename
564 * pointer. The filename is the first entry past the fixed-size data,