Searched refs:realfile (Results 1 – 6 of 6) sorted by relevance
| /OK3568_Linux_fs/kernel/fs/overlayfs/ |
| H A D | readdir.c | 57 struct file *realfile; member 297 struct file *realfile; in ovl_dir_read() local 300 realfile = ovl_path_open(realpath, O_RDONLY | O_LARGEFILE); in ovl_dir_read() 301 if (IS_ERR(realfile)) in ovl_dir_read() 302 return PTR_ERR(realfile); in ovl_dir_read() 309 err = iterate_dir(realfile, &rdd->ctx); in ovl_dir_read() 317 fput(realfile); in ovl_dir_read() 723 err = iterate_dir(od->realfile, &rdt.ctx); in ovl_iterate_real() 754 err = iterate_dir(od->realfile, ctx); in ovl_iterate() 801 res = vfs_llseek(od->realfile, offset, origin); in ovl_dir_llseek() [all …]
|
| H A D | file.c | 46 struct file *realfile; in ovl_open_realfile() local 58 realfile = ERR_PTR(err); in ovl_open_realfile() 60 realfile = ERR_PTR(-EPERM); in ovl_open_realfile() 62 realfile = open_with_fake_path(&file->f_path, flags, realinode, in ovl_open_realfile() 69 realfile, IS_ERR(realfile) ? 0 : realfile->f_flags); in ovl_open_realfile() 71 return realfile; in ovl_open_realfile() 154 struct file *realfile; in ovl_open() local 164 realfile = ovl_open_realfile(file, ovl_inode_realdata(inode)); in ovl_open() 165 if (IS_ERR(realfile)) in ovl_open() 166 return PTR_ERR(realfile); in ovl_open() [all …]
|
| /OK3568_Linux_fs/kernel/scripts/ |
| H A D | checkpatch.pl | 2402 my $realfile = ''; 2588 $realfile = $1; 2589 $realfile =~ s@^([^/]*)/@@ if (!$file); 2593 $realfile = $1; 2594 $realfile =~ s@^([^/]*)/@@ if (!$file); 2604 if ($realfile =~ m@^include/asm/@) { 2613 $prefix = "$realfile:$realline: " 2623 if (is_maintained_obsolete($realfile)) { 2625 …"$realfile is marked as 'obsolete' in the MAINTAINERS hierarchy. No unnecessary modifications ple… 2627 if ($realfile =~ m@^(?:drivers/net/|net/|drivers/staging/)@) { [all …]
|
| /OK3568_Linux_fs/u-boot/scripts/ |
| H A D | checkpatch.pl | 2198 my $realfile = ''; 2373 $realfile = $1; 2374 $realfile =~ s@^([^/]*)/@@ if (!$file); 2378 $realfile = $1; 2379 $realfile =~ s@^([^/]*)/@@ if (!$file); 2389 if ($realfile =~ m@^include/asm/@) { 2398 $prefix = "$realfile:$realline: " 2408 if (is_maintained_obsolete($realfile)) { 2410 …"$realfile is marked as 'obsolete' in the MAINTAINERS hierarchy. No unnecessary modifications ple… 2412 if ($realfile =~ m@^(?:drivers/net/|net/|drivers/staging/)@) { [all …]
|
| /OK3568_Linux_fs/yocto/poky/bitbake/lib/bb/ |
| H A D | utils.py | 305 def better_compile(text, file, realfile, mode = "exec", lineno = 0): argument 316 code = compile(text2, realfile, mode) 323 error.append("Error in compiling python function in %s, line %s:\n" % (realfile, e.lineno)) 341 def _print_exception(t, value, tb, realfile, text, context): argument 345 error.append('Error executing a python function in %s:\n' % realfile) 394 def better_exec(code, context, text = None, realfile = "<code>", pythonexception=False): argument 404 code = better_compile(code, realfile, realfile) 415 _print_exception(t, value, tb, realfile, text, context)
|
| /OK3568_Linux_fs/yocto/poky/meta/classes/ |
| H A D | kernel-fitimage.bbclass | 791 # UBOOT_DTB_IMAGE is a realfile, but we can't use
|