exe_file           65 arch/arc/kernel/troubleshoot.c 	struct file *exe_file;
exe_file           72 arch/arc/kernel/troubleshoot.c 	exe_file = get_mm_exe_file(mm);
exe_file           75 arch/arc/kernel/troubleshoot.c 	if (exe_file) {
exe_file           76 arch/arc/kernel/troubleshoot.c 		path_nm = file_path(exe_file, buf, ARC_PATH_MAX-1);
exe_file           77 arch/arc/kernel/troubleshoot.c 		fput(exe_file);
exe_file          322 arch/powerpc/oprofile/cell/spu_task_sync.c 	struct file *exe_file;
exe_file          328 arch/powerpc/oprofile/cell/spu_task_sync.c 	exe_file = get_mm_exe_file(mm);
exe_file          329 arch/powerpc/oprofile/cell/spu_task_sync.c 	if (exe_file) {
exe_file          330 arch/powerpc/oprofile/cell/spu_task_sync.c 		app_cookie = fast_get_dcookie(&exe_file->f_path);
exe_file          331 arch/powerpc/oprofile/cell/spu_task_sync.c 		pr_debug("got dcookie for %pD\n", exe_file);
exe_file          332 arch/powerpc/oprofile/cell/spu_task_sync.c 		fput(exe_file);
exe_file          230 drivers/oprofile/buffer_sync.c 	struct file *exe_file;
exe_file          235 drivers/oprofile/buffer_sync.c 	exe_file = get_mm_exe_file(mm);
exe_file          236 drivers/oprofile/buffer_sync.c 	if (!exe_file)
exe_file          239 drivers/oprofile/buffer_sync.c 	cookie = fast_get_dcookie(&exe_file->f_path);
exe_file          240 drivers/oprofile/buffer_sync.c 	fput(exe_file);
exe_file          158 fs/coredump.c  	struct file *exe_file;
exe_file          162 fs/coredump.c  	exe_file = get_mm_exe_file(current->mm);
exe_file          163 fs/coredump.c  	if (!exe_file)
exe_file          172 fs/coredump.c  	path = file_path(exe_file, pathbuf, PATH_MAX);
exe_file          183 fs/coredump.c  	fput(exe_file);
exe_file         1595 fs/proc/base.c 	struct file *exe_file;
exe_file         1600 fs/proc/base.c 	exe_file = get_task_exe_file(task);
exe_file         1602 fs/proc/base.c 	if (exe_file) {
exe_file         1603 fs/proc/base.c 		*exe_path = exe_file->f_path;
exe_file         1604 fs/proc/base.c 		path_get(&exe_file->f_path);
exe_file         1605 fs/proc/base.c 		fput(exe_file);
exe_file          491 include/linux/mm_types.h 		struct file __rcu *exe_file;
exe_file         2093 kernel/audit.c 	struct file *exe_file;
exe_file         2098 kernel/audit.c 	exe_file = get_mm_exe_file(mm);
exe_file         2099 kernel/audit.c 	if (!exe_file)
exe_file         2102 kernel/audit.c 	audit_log_d_path(ab, " exe=", &exe_file->f_path);
exe_file         2103 kernel/audit.c 	fput(exe_file);
exe_file          543 kernel/audit_watch.c 	struct file *exe_file;
exe_file          547 kernel/audit_watch.c 	exe_file = get_task_exe_file(tsk);
exe_file          548 kernel/audit_watch.c 	if (!exe_file)
exe_file          550 kernel/audit_watch.c 	ino = file_inode(exe_file)->i_ino;
exe_file          551 kernel/audit_watch.c 	dev = file_inode(exe_file)->i_sb->s_dev;
exe_file          552 kernel/audit_watch.c 	fput(exe_file);
exe_file          500 kernel/fork.c  	RCU_INIT_POINTER(mm->exe_file, get_mm_exe_file(oldmm));
exe_file          645 kernel/fork.c  	RCU_INIT_POINTER(mm->exe_file, get_mm_exe_file(oldmm));
exe_file         1024 kernel/fork.c  	RCU_INIT_POINTER(mm->exe_file, NULL);
exe_file         1142 kernel/fork.c  	old_exe_file = rcu_dereference_raw(mm->exe_file);
exe_file         1146 kernel/fork.c  	rcu_assign_pointer(mm->exe_file, new_exe_file);
exe_file         1159 kernel/fork.c  	struct file *exe_file;
exe_file         1162 kernel/fork.c  	exe_file = rcu_dereference(mm->exe_file);
exe_file         1163 kernel/fork.c  	if (exe_file && !get_file_rcu(exe_file))
exe_file         1164 kernel/fork.c  		exe_file = NULL;
exe_file         1166 kernel/fork.c  	return exe_file;
exe_file         1179 kernel/fork.c  	struct file *exe_file = NULL;
exe_file         1186 kernel/fork.c  			exe_file = get_mm_exe_file(mm);
exe_file         1189 kernel/fork.c  	return exe_file;
exe_file         1815 kernel/sys.c   	struct file *old_exe, *exe_file;
exe_file         1841 kernel/sys.c   	exe_file = get_mm_exe_file(mm);
exe_file         1843 kernel/sys.c   	if (exe_file) {
exe_file         1851 kernel/sys.c   				       &exe_file->f_path))
exe_file         1856 kernel/sys.c   		fput(exe_file);
exe_file         1862 kernel/sys.c   	old_exe = xchg(&mm->exe_file, exe.file);
exe_file         1870 kernel/sys.c   	fput(exe_file);
exe_file          188 mm/debug.c     		mm->exe_file,
exe_file          946 security/tomoyo/util.c 	struct file *exe_file;
exe_file          952 security/tomoyo/util.c 	exe_file = get_mm_exe_file(mm);
exe_file          953 security/tomoyo/util.c 	if (!exe_file)
exe_file          956 security/tomoyo/util.c 	cp = tomoyo_realpath_from_path(&exe_file->f_path);
exe_file          957 security/tomoyo/util.c 	fput(exe_file);