Lines Matching refs:LOGE
28 LOGE("fstat(%d) failed: %s\n", fd, strerror(errno)); in sysMapFD()
34 LOGE("mmap(%d, R, PRIVATE, %d, 0) failed: %s\n", (int) sb.st_size, fd, strerror(errno)); in sysMapFD()
43 LOGE("malloc failed: %s\n", strerror(errno)); in sysMapFD()
63 LOGE("failed to read block device from header\n"); in sysMapBlockFile()
74 LOGE("failed to parse block map header\n"); in sysMapBlockFile()
81 LOGE("invalid data in block map file: size %zu, blksize %u, range_count %u\n", in sysMapBlockFile()
89 LOGE("calloc(%u, %zu) failed: %s\n", range_count, sizeof(MappedRange), strerror(errno)); in sysMapBlockFile()
97 LOGE("failed to reserve address space: %s\n", strerror(errno)); in sysMapBlockFile()
104 LOGE("failed to open block device %s: %s\n", block_dev, strerror(errno)); in sysMapBlockFile()
116 LOGE("failed to parse range %d in block map\n", i); in sysMapBlockFile()
122 LOGE("unexpected range in block map: %zu %zu\n", start, end); in sysMapBlockFile()
129 LOGE("failed to map block %d: %s\n", i, strerror(errno)); in sysMapBlockFile()
140 LOGE("ranges in block map are invalid: remaining_size = %zu\n", remaining_size); in sysMapBlockFile()
167 LOGE("Unable to open '%s': %s\n", fn+1, strerror(errno)); in sysMapFile()
172 LOGE("Map of '%s' failed\n", fn); in sysMapFile()
182 LOGE("Unable to open '%s': %s\n", fn, strerror(errno)); in sysMapFile()
187 LOGE("Map of '%s' failed\n", fn); in sysMapFile()
205 LOGE("munmap(%p, %d) failed: %s\n", in sysReleaseMap()