Searched refs:fileName (Results 1 – 8 of 8) sorted by relevance
/system/core/liblog/ |
D | event_tag_map.c | 66 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/ |
D | VolumeManager.h | 171 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);
|
D | VolumeManager.cpp | 1390 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/ |
D | event_tag_map.h | 34 EventTagMap* android_openEventTagMap(const char* fileName);
|
/system/core/tzdatacheck/ |
D | tzdatacheck.cpp | 69 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/ |
D | zip_archive.h | 111 int32_t OpenArchive(const char* fileName, ZipArchiveHandle* handle);
|
/system/core/libziparchive/ |
D | zip_archive.cc | 457 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/ |
D | builtins.cpp | 132 std::string fileName = android::base::StringPrintf("%s/%s/brightness", in turnOffBacklight() local 135 android::base::WriteStringToFile(off, fileName); in turnOffBacklight()
|