Searched defs:fileName (Results 1 - 5 of 5) sorted by relevance
/system/core/tzdatacheck/ |
H A D | tzdatacheck.cpp | 69 static void checkValidHeader(const std::string& fileName, char* headerBytes) { argument 71 LOG(FATAL) << fileName << " does not start with the expected bytes (tzdata)";
|
/system/core/liblog/ |
H A D | event_tag_map.c | 66 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/init/ |
H A D | builtins.cpp | 132 std::string fileName = android::base::StringPrintf("%s/%s/brightness", local 135 android::base::WriteStringToFile(off, fileName);
|
/system/core/libziparchive/ |
H A D | zip_archive.cc | 483 int32_t OpenArchive(const char* fileName, ZipArchiveHandle* handle) { argument 484 const int fd = open(fileName, O_RDONLY | O_BINARY, 0); 489 ALOGW("Unable to open '%s': %s", fileName, strerror(errno)); 493 return OpenArchiveInternal(archive, fileName);
|
/system/vold/ |
H A D | VolumeManager.cpp | 1390 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
|
Completed in 91 milliseconds