Home
last modified time | relevance | path

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

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