Home
last modified time | relevance | path

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

/OK3568_Linux_fs/buildroot/support/scripts/
H A Dbrpkgutil.py34 with open(os.devnull, 'wb') as devnull:
35 p = subprocess.Popen(cmd, stdout=subprocess.PIPE, stderr=devnull,
/OK3568_Linux_fs/kernel/security/apparmor/
H A Dfile.c688 struct file *devnull = NULL; in aa_inherit_files() local
698 devnull = dentry_open(&aa_null, O_RDWR, cred); in aa_inherit_files()
699 if (IS_ERR(devnull)) in aa_inherit_files()
700 devnull = NULL; in aa_inherit_files()
703 replace_fd(n - 1, devnull, 0); in aa_inherit_files()
705 if (devnull) in aa_inherit_files()
706 fput(devnull); in aa_inherit_files()
/OK3568_Linux_fs/external/xserver/os/
H A Dosinit.c168 static const char *devnull = "/dev/null"; in OsInit() local
245 strcpy(fname, devnull); in OsInit()
252 err = fopen(devnull, "w"); in OsInit()
/OK3568_Linux_fs/u-boot/tools/
H A Dmoveconfig.py362 devnull = subprocess.DEVNULL # py3k
364 devnull = open(os.devnull, 'wb')
365 return devnull
1036 def __init__(self, toolchains, configs, options, progress, devnull, argument
1055 self.devnull = devnull
1160 self.ps = subprocess.Popen(cmd, stdout=self.devnull,
1181 self.ps = subprocess.Popen(cmd, stdout=self.devnull, env=env,
1216 self.ps = subprocess.Popen(cmd, stdout=self.devnull,
1294 devnull = get_devnull()
1298 devnull, make_cmd, reference_src_dir,
/OK3568_Linux_fs/buildroot/utils/
H A Dgenrandconfig81 with open(os.devnull, "w") as devnull:
84 stdout=devnull, stderr=devnull) != 1:
/OK3568_Linux_fs/yocto/poky/meta/recipes-support/gpgme/gpgme/
H A D0002-gpgme-lang-python-gpg-error-config-should-not-be-use.patch39 - gpg_error_config + ['--version'], stdout=devnull)
/OK3568_Linux_fs/buildroot/support/testing/infra/
H A D__init__.py63 stderr=open(os.devnull, "w"),
/OK3568_Linux_fs/yocto/poky/meta/recipes-devtools/python/python3-numpy/
H A D0001-Don-t-search-usr-and-so-on-for-libraries-by-default-.patch46 - with open(os.devnull, 'w') as tmp:
/OK3568_Linux_fs/yocto/poky/meta/lib/oeqa/core/utils/
H A Dconcurrencytest.py273 newsi = os.open(os.devnull, os.O_RDWR)
/OK3568_Linux_fs/yocto/poky/bitbake/lib/
H A Dpyinotify.py1273 def __daemonize(self, pid_file=None, stdin=os.devnull, stdout=os.devnull,
1274 stderr=os.devnull):
/OK3568_Linux_fs/yocto/poky/bitbake/bin/
H A Dbitbake-worker234 newsi = os.open(os.devnull, os.O_RDWR)
/OK3568_Linux_fs/kernel/security/selinux/
H A Dhooks.c2426 struct file *file, *devnull = NULL; in flush_unauthorized_files() local
2460 devnull = dentry_open(&selinux_null, O_RDWR, cred); in flush_unauthorized_files()
2461 if (IS_ERR(devnull)) in flush_unauthorized_files()
2462 devnull = NULL; in flush_unauthorized_files()
2465 replace_fd(n - 1, devnull, 0); in flush_unauthorized_files()
2467 if (devnull) in flush_unauthorized_files()
2468 fput(devnull); in flush_unauthorized_files()
/OK3568_Linux_fs/yocto/poky/bitbake/lib/bb/
H A Dbuild.py506 with open(os.devnull, 'r+') as stdin, logfile:
/OK3568_Linux_fs/yocto/meta-openembedded/meta-oe/recipes-support/procmail/procmail/
H A Dfrom-debian-to-fix-compile-errors.patch466 mb->fd=ropen(devnull,O_RDWR,0); /* XXX Perhaps -1 is better? */
/OK3568_Linux_fs/tools/linux/Linux_SecurityAVB/scripts/
H A Davbtool3485 stderr=open(os.devnull))
/OK3568_Linux_fs/u-boot/scripts/
H A Davbtool.py4073 stderr=open(os.devnull, 'wb'))
/OK3568_Linux_fs/external/xserver/
H A DChangeLog31061 osinit.c:161:24: warning: unused variable 'devnull' [-Wunused-variable,Unused Entity Issue]
31062 static const char *devnull = "/dev/null";