Merge changes I3c14cfcf,I9d2ea66c,I9930105e
* changes: Replace library headers with angle quotations Reorder the include directives in cryptfs.cpp Add linux/types.h to cryptfs.h
This commit is contained in:
commit
14540d9ceb
2 changed files with 47 additions and 39 deletions
83
cryptfs.cpp
83
cryptfs.cpp
|
@ -20,49 +20,54 @@
|
|||
*
|
||||
*/
|
||||
|
||||
#include <sys/types.h>
|
||||
#include <sys/wait.h>
|
||||
#include <sys/stat.h>
|
||||
#include <ctype.h>
|
||||
#include <fcntl.h>
|
||||
#include <inttypes.h>
|
||||
#include <unistd.h>
|
||||
#include <stdio.h>
|
||||
#include <sys/ioctl.h>
|
||||
#include <linux/dm-ioctl.h>
|
||||
#include <libgen.h>
|
||||
#include <stdlib.h>
|
||||
#include <sys/param.h>
|
||||
#include <string.h>
|
||||
#include <sys/mount.h>
|
||||
#include <openssl/evp.h>
|
||||
#include <openssl/sha.h>
|
||||
#include <errno.h>
|
||||
#define LOG_TAG "Cryptfs"
|
||||
|
||||
#include "cryptfs.h"
|
||||
|
||||
#include "EncryptInplace.h"
|
||||
#include "Ext4Crypt.h"
|
||||
#include "Keymaster.h"
|
||||
#include "Process.h"
|
||||
#include "ScryptParameters.h"
|
||||
#include "VoldUtil.h"
|
||||
#include "VolumeManager.h"
|
||||
#include "secontext.h"
|
||||
|
||||
#include <android-base/properties.h>
|
||||
#include <bootloader_message/bootloader_message.h>
|
||||
#include <cutils/android_reboot.h>
|
||||
#include <cutils/log.h>
|
||||
#include <cutils/properties.h>
|
||||
#include <ext4_utils/ext4.h>
|
||||
#include <ext4_utils/ext4_utils.h>
|
||||
#include <linux/kdev_t.h>
|
||||
#include <f2fs_sparseblock.h>
|
||||
#include <fs_mgr.h>
|
||||
#include <time.h>
|
||||
#include <math.h>
|
||||
#include <selinux/selinux.h>
|
||||
#include "cryptfs.h"
|
||||
#include "secontext.h"
|
||||
#define LOG_TAG "Cryptfs"
|
||||
#include "cutils/log.h"
|
||||
#include "cutils/properties.h"
|
||||
#include "cutils/android_reboot.h"
|
||||
#include "hardware_legacy/power.h"
|
||||
#include <hardware_legacy/power.h>
|
||||
#include <logwrap/logwrap.h>
|
||||
#include "ScryptParameters.h"
|
||||
#include "VolumeManager.h"
|
||||
#include "VoldUtil.h"
|
||||
#include "Ext4Crypt.h"
|
||||
#include "f2fs_sparseblock.h"
|
||||
#include "EncryptInplace.h"
|
||||
#include "Process.h"
|
||||
#include "Keymaster.h"
|
||||
#include "android-base/properties.h"
|
||||
#include <bootloader_message/bootloader_message.h>
|
||||
#include <openssl/evp.h>
|
||||
#include <openssl/sha.h>
|
||||
#include <selinux/selinux.h>
|
||||
|
||||
#include <ctype.h>
|
||||
#include <errno.h>
|
||||
#include <fcntl.h>
|
||||
#include <inttypes.h>
|
||||
#include <libgen.h>
|
||||
#include <linux/dm-ioctl.h>
|
||||
#include <linux/kdev_t.h>
|
||||
#include <math.h>
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
#include <sys/ioctl.h>
|
||||
#include <sys/mount.h>
|
||||
#include <sys/param.h>
|
||||
#include <sys/stat.h>
|
||||
#include <sys/types.h>
|
||||
#include <sys/wait.h>
|
||||
#include <time.h>
|
||||
#include <unistd.h>
|
||||
|
||||
extern "C" {
|
||||
#include <crypto_scrypt.h>
|
||||
}
|
||||
|
|
|
@ -26,7 +26,10 @@
|
|||
* partition.
|
||||
*/
|
||||
|
||||
#include <linux/types.h>
|
||||
#include <stdbool.h>
|
||||
#include <stdint.h>
|
||||
|
||||
#include <cutils/properties.h>
|
||||
|
||||
/* The current cryptfs version */
|
||||
|
|
Loading…
Reference in a new issue