/external/libvpx/libvpx/tools/ |
lint-hunks.py | 48 def communicate(self, *args, **kwargs): member in class:Subprocess 49 result = super(Subprocess, self).communicate(*args, **kwargs) 81 tl = tl.communicate()[0].strip() 97 stdout = p.communicate()[0] 116 lint_out = lint.communicate()[1] 122 lint_out = lint.communicate(stdin)[1]
|
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/tools/ |
lint-hunks.py | 48 def communicate(self, *args, **kwargs): member in class:Subprocess 49 result = super(Subprocess, self).communicate(*args, **kwargs) 81 tl = tl.communicate()[0].strip() 97 stdout = p.communicate()[0] 116 lint_out = lint.communicate()[1] 122 lint_out = lint.communicate(stdin)[1]
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
subprocess.py | 102 stdin and stderr are not updated by the communicate() method. 178 communicate(input=None) 185 communicate() returns a tuple (stdout, stderr). 232 output = Popen(["mycmd", "myarg"], stdout=PIPE).communicate()[0] 241 output = p2.communicate()[0] 569 output, unused_err = process.communicate() 775 def communicate(self, input=None): member in class:Popen 782 communicate() returns a tuple (stdout, stderr).""" [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
subprocess.py | 102 stdin and stderr are not updated by the communicate() method. 178 communicate(input=None) 185 communicate() returns a tuple (stdout, stderr). 232 output = Popen(["mycmd", "myarg"], stdout=PIPE).communicate()[0] 241 output = p2.communicate()[0] 569 output, unused_err = process.communicate() 775 def communicate(self, input=None): member in class:Popen 782 communicate() returns a tuple (stdout, stderr).""" [all...] |
/external/selinux/policycoreutils/sepolicy/ |
sepolicy.py | 370 def communicate(args): function 371 from sepolicy.communicate import get_types 381 comm = parser.add_parser("communicate", 382 help=_('query SELinux policy to see if domains can communicate with each other')) 394 comm.set_defaults(func=communicate)
|