Home
last modified time | relevance | path

Searched refs:LOGE (Results 1 – 13 of 13) sorted by relevance

/bootable/recovery/
Dbootloader.c36 LOGE("Cannot load volume /misc!\n"); in get_bootloader_message()
44 LOGE("unknown misc partition fs_type \"%s\"\n", v->fs_type); in get_bootloader_message()
51 LOGE("Cannot load volume /misc!\n"); in set_bootloader_message()
59 LOGE("unknown misc partition fs_type \"%s\"\n", v->fs_type); in set_bootloader_message()
76 LOGE("Can't find %s\n", v->device); in get_bootloader_message_mtd()
82 LOGE("Can't open %s\n(%s)\n", v->device, strerror(errno)); in get_bootloader_message_mtd()
89 if (r != size) LOGE("Can't read %s\n(%s)\n", v->device, strerror(errno)); in get_bootloader_message_mtd()
102 LOGE("Can't find %s\n", v->device); in set_bootloader_message_mtd()
108 LOGE("Can't open %s\n(%s)\n", v->device, strerror(errno)); in set_bootloader_message_mtd()
115 if (r != size) LOGE("Can't read %s\n(%s)\n", v->device, strerror(errno)); in set_bootloader_message_mtd()
[all …]
Dverifier.c39 LOGE("failed to open %s (%s)\n", path, strerror(errno)); in verify_file()
55 LOGE("failed to seek in %s (%s)\n", path, strerror(errno)); in verify_file()
62 LOGE("failed to read footer from %s (%s)\n", path, strerror(errno)); in verify_file()
79 LOGE("signature is too short\n"); in verify_file()
91 LOGE("failed to seek in %s (%s)\n", path, strerror(errno)); in verify_file()
104 LOGE("malloc for EOCD record failed\n"); in verify_file()
109 LOGE("failed to read eocd from %s (%s)\n", path, strerror(errno)); in verify_file()
118 LOGE("signature length doesn't match EOCD marker\n"); in verify_file()
131 LOGE("EOCD marker occurs after start of EOCD\n"); in verify_file()
143 LOGE("failed to alloc memory for sha1 buffer\n"); in verify_file()
[all …]
Droots.c42 LOGE("bad option \"%s\"\n", option); in parse_options()
63 LOGE("failed to open /etc/recovery.fstab (%s)\n", strerror(errno)); in load_volume_table()
104 LOGE("skipping malformed recovery.fstab line: %s\n", original); in load_volume_table()
109 LOGE("skipping malformed recovery.fstab line: %s\n", original); in load_volume_table()
142 LOGE("unknown volume for path [%s]\n", path); in ensure_path_mounted()
153 LOGE("failed to scan mounted volumes\n"); in ensure_path_mounted()
172 LOGE("failed to find \"%s\" partition to mount at \"%s\"\n", in ensure_path_mounted()
191 LOGE("failed to mount %s (%s)\n", v->mount_point, strerror(errno)); in ensure_path_mounted()
195 LOGE("unknown fs_type \"%s\" for %s\n", v->fs_type, v->mount_point); in ensure_path_mounted()
202 LOGE("unknown volume for path [%s]\n", path); in ensure_path_unmounted()
[all …]
Dinstall.c56 LOGE("Can't make %s\n", binary); in try_update_binary()
64 LOGE("Can't copy %s\n", ASSUMED_UPDATE_BINARY_NAME); in try_update_binary()
149 LOGE("unknown command [%s]\n", command); in try_update_binary()
157 LOGE("Error in %s\n(Status %d)\n", path, WEXITSTATUS(status)); in try_update_binary()
185 LOGE("opening %s: %s\n", filename, strerror(errno)); in load_keys()
200 LOGE("key length (%d) does not match expected size\n", key->len); in load_keys()
223 LOGE("unexpected character between keys\n"); in load_keys()
247 LOGE("Can't mount %s\n", path); in really_install_package()
256 LOGE("Failed to load keys\n"); in really_install_package()
272 LOGE("signature verification failed\n"); in really_install_package()
[all …]
Drecovery.c127 LOGE("Can't mount %s\n", path); in fopen_path()
143 if (ferror(fp)) LOGE("Error in %s\n(%s)\n", name, strerror(errno)); in check_and_fclose()
178 LOGE("Bad boot message\n\"%.20s\"\n", boot.recovery); in get_args()
229 LOGE("Can't open %s\n", destination); in copy_log_file()
233 LOGE("Can't open %s\n", TEMPORARY_LOG_FILE); in copy_log_file()
260 LOGE("Can't open %s\n", INTENT_FILE); in finish_recovery()
305 LOGE("Can't mount %s\n", original_path); in copy_sideloaded_package()
310 LOGE("Can't mount %s\n", SIDELOAD_TEMP_DIR); in copy_sideloaded_package()
316 LOGE("Can't mkdir %s (%s)\n", SIDELOAD_TEMP_DIR, strerror(errno)); in copy_sideloaded_package()
325 LOGE("failed to stat %s (%s)\n", SIDELOAD_TEMP_DIR, strerror(errno)); in copy_sideloaded_package()
[all …]
Dcommon.h76 #define LOGE(...) ui_print("E:" __VA_ARGS__) macro
Dui.c396 LOGE("Missing bitmap %s\n(Code %d)\n", BITMAPS[i].name, result); in ui_init()
408 LOGE("Missing bitmap %s\n(Code %d)\n", filename, result); in ui_init()
422 LOGE("Missing bitmap %s\n(Code %d)\n", filename, result); in ui_init()
/bootable/diskinstaller/
Dinstaller.c67 LOGE("Could not read config file %s", fn); in read_conf_file()
92 LOGE("Can't allocate memory to exec cmd"); in exec_cmd()
129 LOGE("Error while running e2fsck: %d", rv); in do_fsck()
159 LOGE("Error while running tune2fs: %d", rv); in process_ext2_image()
168 LOGE("Error while running resize2fs: %d", rv); in process_ext2_image()
181 LOGE("Error while running tune2fs: %d", rv); in process_ext2_image()
218 LOGE("Cannot specify the partition name AND an offset for %s", in process_image_node()
224 LOGE("Cannot find partition %s while processing %s", in process_image_node()
230 LOGE("Could not get the device name for partition %s while" in process_image_node()
243 LOGE("Target partition required for mkfs for '%s'", img->name); in process_image_node()
[all …]
/bootable/recovery/minzip/
DZip.c544 LOGE("Can't read %zu bytes from zip file: %ld\n", count, n); in processStoredEntry()
589 LOGE("Installed zlib is not compatible with linked version (%s)\n", in processDeflatedEntry()
592 LOGE("Call to inflateInit2 failed (zerr=%d)\n", zerr); in processDeflatedEntry()
693 LOGE("Unsupported compression type %d for entry '%s'\n", in mzProcessZipEntryContents()
723 LOGE("Can't calculate CRC for entry\n"); in mzIsZipEntryIntact()
766 LOGE("Can't extract entry to buffer.\n"); in mzReadZipEntry()
781 LOGE("Error writing %ld bytes from zip file from %p: %s\n", in writeProcessFunction()
790 LOGE("write overrun? (%ld bytes instead of %d)\n", in writeProcessFunction()
807 LOGE("Can't extract entry to file.\n"); in mzExtractZipEntryToFile()
843 LOGE("Can't extract entry to memory buffer.\n"); in mzExtractZipEntryToBuffer()
[all …]
DLog.h117 #ifndef LOGE
118 #define LOGE(...) ((void)LOG(LOG_ERROR, LOG_TAG, __VA_ARGS__)) macro
DSysUtil.c60 LOGE("could not determine length of file\n"); in getFileStartAndLength()
66 LOGE("file is empty\n"); in getFileStartAndLength()
100 LOGE("only read %d of %d bytes\n", (int) actual, (int) length); in sysLoadFileInShmem()
DHash.c227 LOGE("Dalvik hash resize failure\n"); in mzHashTableLookup()
/bootable/recovery/mtdutils/
Dflash_image.c45 LOGE("%s\n", buf); in die()