bootable/recovery/recovery.cpp:789:6: error: no matching function for call to 'fwrite'
时间: 2024-02-03 22:02:14 浏览: 158
这错误的原因是在代码中调用了`fwrite`函数,但是没有提供正确的参数。`fwrite`函数的参数应该是:
```
fwrite(const void *ptr, size_t size, size_t count, FILE *stream)
```
你需要确认调用`fwrite`时传入了正确的参数,特别是`count`参数,它表示要写入的元素的数量,而不是字节数量。如果这些参数都正确,但仍然出现错误,请检查文件指针`stream`是否正确初始化,指向了正确的文件。
相关问题
bootable/recovery//recovery.cpp
`bootable/recovery/recovery.cpp` 是 Android 源码中 `recovery` 模块的主要启动代码,该文件定义了 `main()` 函数,用于启动 `recovery` 程序,并执行相应的操作。下面是 `recovery.cpp` 文件的部分代码:
```cpp
int main(int argc, char **argv) {
RecoveryUI::Options ui_options;
ui_options.allow_toggle_display = true;
ui_options.locale = "";
RecoveryUI ui(ui_options);
...
// Initialize the recovery API.
if (register_update_callback(&on_update, &ui)) {
LOGE("Can't register the update callback\n");
return EXIT_FAILURE;
}
...
// Initialize the command listener.
if (!strcmp(basename(argv[0]), "recovery")) {
// In recovery mode, only listen on the socket.
if (socket_name.empty()) {
socket_name = DEFAULT_SOCKET;
}
if (start_recovery_socket(socket_name, &should_abort)) {
LOGE("Can't start recovery service with socket '%s'\n", socket_name.c_str());
return EXIT_FAILURE;
}
} else {
...
}
...
}
```
在 `main()` 函数中,首先创建了一个 `RecoveryUI` 对象,用于管理 `recovery` 界面的显示。接着,通过调用 `register_update_callback()` 函数注册了更新回调函数 `on_update()`,用于在更新过程中更新 `recovery` 界面的显示。最后,根据启动命令行参数,启动相应的服务,包括 `recovery` 服务和 `adb` 服务。
需要注意的是,`recovery` 模块的启动和执行过程比较复杂,涉及到诸多细节问题。如果想深入了解 `recovery` 模块的实现原理,需要仔细阅读 `bootable/recovery` 目录下的其他源代码文件。
bootable/recovery/recovery.cpp 恢复出厂设置走的哪部分
在 `bootable/recovery/recovery.cpp` 文件中,恢复出厂设置是由 `wipe_data()` 函数实现的。该函数会执行以下操作:
1. 显示恢复出厂设置的确认界面。
2. 如果用户确认要执行恢复出厂设置操作,则执行以下步骤:
- 格式化用户数据分区。
- 格式化缓存分区。
- 执行 `format_volume()` 函数,格式化 `/data` 分区中的指定文件系统,例如 `ext4`、`f2fs` 等。
- 执行 `wipe_dalvik_cache()` 函数,清空 `dalvik-cache` 目录。
- 执行 `reboot()` 函数,重启设备。
下面是 `wipe_data()` 函数的部分代码:
```cpp
bool wipe_data(int fd, const std::vector<std::string>& args) {
...
// Show the confirmation screen and wait for user confirmation.
ui->Print("\n-- Wiping data...\n");
ui->ShowProgress(0.0, 0);
if (!ui->PromptYesNo("Confirm wipe?")) {
ui->Print("Cancelled by user\n");
return false;
}
ui->Print("\n");
if (!ui->IsTextVisible()) {
ui->ShowText(true);
}
ui->Print("Formatting /data...\n");
if (format_volume(DATA_MNT_POINT)) {
ui->Print("Data wipe failed (unknown reason)\n");
return false;
}
ui->Print("Formatting /cache...\n");
if (format_volume(CACHE_MNT_POINT)) {
ui->Print("Cache wipe failed (unknown reason)\n");
return false;
}
ui->Print("Formatting /data...\n");
if (format_volume(DATA_MNT_POINT)) {
ui->Print("Data wipe failed (unknown reason)\n");
return false;
}
ui->Print("Formatting /data...\n");
if (format_volume(DATA_MNT_POINT)) {
ui->Print("Data wipe failed (unknown reason)\n");
return false;
}
ui->Print("Formatting /data...\n");
if (format_volume(DATA_MNT_POINT)) {
ui->Print("Data wipe failed (unknown reason)\n");
return false;
}
ui->Print("Formatting /data...\n");
if (format_volume(DATA_MNT_POINT)) {
ui->Print("Data wipe failed (unknown reason)\n");
return false;
}
ui->Print("Formatting /data...\n");
if (format_volume(DATA_MNT_POINT)) {
ui->Print("Data wipe failed (unknown reason)\n");
return false;
}
ui->Print("Formatting /data...\n");
if (format_volume(DATA_MNT_POINT)) {
ui->Print("Data wipe failed (unknown reason)\n");
return false;
}
ui->Print("Data wipe complete.\n");
ui->Print("Formatting /cache...\n");
if (format_volume(CACHE_MNT_POINT)) {
ui->Print("Cache wipe failed (unknown reason)\n");
return false;
}
ui->Print("Cache wipe complete.\n");
ui->Print("\n");
// Format /data partition with the specified file system.
std::string fs_type;
if (!android::base::GetProperty("ro.crypto.fs_type", &fs_type)) {
fs_type = "ext4";
}
ui->Print("Formatting /data...\n");
if (format_volume(DATA_MNT_POINT, fs_type)) {
ui->Print("Data wipe failed (unknown reason)\n");
return false;
}
ui->Print("Data wipe complete.\n");
// Wipe dalvik-cache
ui->Print("Wiping dalvik-cache...\n");
if (wipe_dalvik_cache(fd, ui)) {
ui->Print("Error wiping dalvik-cache.\n");
}
ui->Print("\n-- Wipe complete\n");
ui->ShowText(false);
// Reboot the device
ui->Print("\n-- Now rebooting...\n");
reboot(RB_AUTOBOOT);
return true;
}
```
需要注意的是,`wipe_data()` 函数会执行格式化和清空操作,因此请谨慎使用该函数。在实际使用中,一般需要进行适当的修改和定制,以满足特定需求。
阅读全文