Home
last modified time | relevance | path

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

/linux-4.1.27/fs/ecryptfs/
Dcrypto.c887 static struct ecryptfs_flag_map_elem ecryptfs_flag_map[] = { variable
910 for (i = 0; i < ((sizeof(ecryptfs_flag_map) in ecryptfs_process_flags()
912 if (flags & ecryptfs_flag_map[i].file_flag) { in ecryptfs_process_flags()
913 crypt_stat->flags |= ecryptfs_flag_map[i].local_flag; in ecryptfs_process_flags()
915 crypt_stat->flags &= ~(ecryptfs_flag_map[i].local_flag); in ecryptfs_process_flags()
948 for (i = 0; i < ((sizeof(ecryptfs_flag_map) in ecryptfs_write_crypt_stat_flags()
950 if (crypt_stat->flags & ecryptfs_flag_map[i].local_flag) in ecryptfs_write_crypt_stat_flags()
951 flags |= ecryptfs_flag_map[i].file_flag; in ecryptfs_write_crypt_stat_flags()