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

/system/core/include/log/
H A Devent_tag_map.h34 EventTagMap* android_openEventTagMap(const char* fileName);
/system/core/liblog/
H A Devent_tag_map.c66 LIBLOG_ABI_PUBLIC EventTagMap* android_openEventTagMap(const char* fileName) argument
76 fd = open(fileName, O_RDONLY | O_CLOEXEC);
79 OUT_TAG, fileName, strerror(errno));
86 fprintf(stderr, "%s: unable to seek map '%s'\n", OUT_TAG, fileName);
94 OUT_TAG, fileName, strerror(errno));
/system/core/tzdatacheck/
H A Dtzdatacheck.cpp69 static void checkValidHeader(const std::string& fileName, char* headerBytes) { argument
71 LOG(FATAL) << fileName << " does not start with the expected bytes (tzdata)";
/system/core/include/ziparchive/
H A Dzip_archive.h111 int32_t OpenArchive(const char* fileName, ZipArchiveHandle* handle);
/system/vold/
H A DVolumeManager.h171 int mountObb(const char *fileName, const char *key, int ownerUid);
172 int unmountObb(const char *fileName, bool force);
177 const char *fileName, const char *mountPoint, bool force);
H A DVolumeManager.cpp1390 int VolumeManager::unmountObb(const char *fileName, bool force) { argument
1394 if (!asecHash(fileName, idHash, sizeof(idHash))) {
1395 SLOGE("Hash of '%s' failed (%s)", fileName, strerror(errno));
1401 SLOGE("OBB unmount failed for %s: couldn't construct mountpoint", fileName);
1405 return unmountLoopImage(fileName, idHash, fileName, mountPoint, force);
1409 const char *fileName, const char *mountPoint, bool force) {
1478 SLOGW("Failed to find loop device for {%s} (%s)", fileName, strerror(errno));
1408 unmountLoopImage(const char *id, const char *idHash, const char *fileName, const char *mountPoint, bool force) argument
/system/core/libziparchive/
H A Dzip_archive.cc457 int32_t OpenArchive(const char* fileName, ZipArchiveHandle* handle) { argument
458 const int fd = open(fileName, O_RDONLY | O_BINARY, 0);
463 ALOGW("Unable to open '%s': %s", fileName, strerror(errno));
467 return OpenArchiveInternal(archive, fileName);
/system/core/init/
H A Dbuiltins.cpp132 std::string fileName = android::base::StringPrintf("%s/%s/brightness", local
135 android::base::WriteStringToFile(off, fileName);

Completed in 5446 milliseconds