Searched refs:fileName (Results 1 - 10 of 10) sorted by relevance

/system/core/include/log/
H A Devent_tag_map.h34 EventTagMap* android_openEventTagMap(const char* fileName);
/system/core/libzipfile/
H A Dprivate.h12 const unsigned char* fileName; member in struct:Zipentry
H A Dzipfile.c48 if (0 == memcmp(entryName, entry->fileName, entry->fileNameLength)) {
68 memcpy(s, e->fileName, l);
140 fwrite(entry->fileName, entry->fileNameLength, 1, to);
H A Dcentraldir.c100 entry->fileName = p;
102 entry->fileName = NULL;
/system/vold/
H A DVolumeManager.h117 int mountObb(const char *fileName, const char *key, int ownerUid);
118 int unmountObb(const char *fileName, bool force);
121 Volume* getVolumeForFile(const char *fileName);
125 const char *fileName, const char *mountPoint, bool force);
H A DVolumeManager.cpp1019 int VolumeManager::unmountObb(const char *fileName, bool force) { argument
1023 if (!asecHash(fileName, idHash, sizeof(idHash))) {
1024 SLOGE("Hash of '%s' failed (%s)", fileName, strerror(errno));
1030 SLOGE("OBB unmount failed for %s: couldn't construct mountpoint", fileName);
1034 return unmountLoopImage(fileName, idHash, fileName, mountPoint, force);
1038 const char *fileName, const char *mountPoint, bool force) {
1107 SLOGW("Failed to find loop device for {%s} (%s)", fileName, strerror(errno));
1363 Volume* VolumeManager::getVolumeForFile(const char *fileName) { argument
1368 if (!strncmp(fileName, mountPoin
1037 unmountLoopImage(const char *id, const char *idHash, const char *fileName, const char *mountPoint, bool force) argument
[all...]
/system/core/liblog/
H A Devent_tag_map.c64 EventTagMap* android_openEventTagMap(const char* fileName) argument
74 fd = open(fileName, O_RDONLY);
77 OUT_TAG, fileName, strerror(errno));
84 fprintf(stderr, "%s: unable to seek map '%s'\n", OUT_TAG, fileName);
92 OUT_TAG, fileName, strerror(errno));
/system/core/include/ziparchive/
H A Dzip_archive.h85 int32_t OpenArchive(const char* fileName, ZipArchiveHandle* handle);
/system/core/libcutils/
H A Dproperties.c183 static int connectToServer(const char* fileName) argument
197 strcpy(addr.sun_path, fileName); // max 108 bytes
204 // fileName, strerror(errno));
/system/core/libziparchive/
H A Dzip_archive.cc694 int32_t OpenArchive(const char* fileName, ZipArchiveHandle* handle) { argument
695 const int fd = open(fileName, O_RDONLY | O_BINARY, 0);
700 ALOGW("Unable to open '%s': %s", fileName, strerror(errno));
703 return OpenArchiveInternal(archive, fileName);

Completed in 282 milliseconds