Searched defs:Popen (Results 1 - 7 of 7) sorted by relevance

/external/selinux/policycoreutils/audit2allow/
H A Dtest_audit2allow.py3 from subprocess import Popen, PIPE namespace
23 p = Popen(['sudo', 'sepolgen-ifgen'], stdout = PIPE)
31 p = Popen(['audit2allow',"-i","test.log"], stdout = PIPE)
39 p = Popen(['audit2why',"-i","test.log"], stdout = PIPE)
/external/mesa3d/src/glsl/builtins/tools/
H A Dgenerate_builtins.py10 from subprocess import Popen, PIPE namespace
75 p = Popen(command, 1, stdout=PIPE, shell=False)
/external/selinux/policycoreutils/gui/
H A DmodulesPage.py29 from subprocess import Popen, PIPE namespace
92 fd = Popen("semodule -l", shell=True, stdout=PIPE).stdout
109 Popen(["/usr/share/system-config-selinux/polgengui.py"])
/external/selinux/policycoreutils/sandbox/
H A Dtest_sandbox.py3 from subprocess import Popen, PIPE namespace
23 p1 = Popen(['cat', '/etc/passwd'], stdout = PIPE)
24 p2 = Popen(['sandbox', 'grep', 'root'], stdin = p1.stdout, stdout=PIPE)
31 p = Popen(['sandbox', 'kill', '-HUP', str(pid)], stdout=PIPE, stderr=PIPE)
37 p = Popen(['sandbox', 'ping', '-c 1 ', '127.0.0.1'], stdout=PIPE, stderr=PIPE)
43 p = Popen(['sandbox', 'mkdir', '~/test'], stdout=PIPE, stderr=PIPE)
49 p = Popen(['sandbox', 'ls', '~'], stdout=PIPE, stderr=PIPE)
55 p = Popen(['sandbox', 'mail'], stdout=PIPE, stderr=PIPE)
61 p = Popen(['sandbox', 'sudo'], stdout=PIPE, stderr=PIPE)
67 p = Popen(['sandbo
[all...]
/external/selinux/policycoreutils/sepolicy/
H A Dselinux_server.py11 from subprocess import Popen, PIPE, STDOUT namespace
25 p = Popen(["/usr/sbin/semanage", "import"],stdout=PIPE, stderr=PIPE, stdin=PIPE)
39 p = Popen(["/usr/sbin/semanage", "export"],stdout=PIPE, stderr=PIPE)
53 p = Popen(["/usr/sbin/semodule", "-l"],stdout=PIPE, stderr=PIPE)
H A Dtest_sepolicy.py3 from subprocess import Popen, PIPE namespace
23 p = Popen(['sepolicy', 'manpage', '-d', 'httpd_t'], stdout = PIPE)
30 p = Popen(['sepolicy', 'manpage', '-a'], stdout = PIPE)
36 p = Popen(['sepolicy', 'network', '-l'], stdout = PIPE)
42 p = Popen(['sepolicy', 'network', '-t', 'http_port_t'], stdout = PIPE)
48 p = Popen(['sepolicy', 'network', '-p', '80'], stdout = PIPE)
54 p = Popen(['sepolicy', 'network', '-d', 'httpd_t'], stdout = PIPE)
60 p = Popen(['sepolicy', 'transition', '-s', 'httpd_t'], stdout = PIPE)
66 p = Popen(['sepolicy', 'transition', '-s', 'httpd_t', '-t', 'sendmail_t'], stdout = PIPE)
72 p = Popen(['sepolic
[all...]
/external/selinux/policycoreutils/semanage/
H A Dtest-semanage.py3 from subprocess import Popen, PIPE namespace
30 p = Popen(['semanage', object, '-E'], stdout = PIPE)
36 p = Popen(['semanage', "export", '-f', '/tmp/out'], stdout = PIPE)
40 p = Popen(["semanage","export","-S","targeted","-f","-"], stdout = PIPE)
44 p = Popen(["semanage","-S","targeted","-o","-"], stdout = PIPE)
48 p = Popen(['semanage', "import", '-f', '/tmp/out'], stdout = PIPE)
52 p = Popen(["semanage","import","-S","targeted","-f", "/tmp/out"], stdout = PIPE)
56 p = Popen(["semanage", "-S","targeted","-i", "/tmp/out"], stdout = PIPE)
65 p = Popen(['semanage', object, '-l'], stdout = PIPE)
74 p = Popen(['semanag
[all...]

Completed in 178 milliseconds