HomeSort by relevance Sort by last modified time
    Searched refs:master (Results 1 - 25 of 680) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/OpenMP/
master_codegen.cpp 31 #pragma omp master
41 #pragma omp master
52 #pragma omp master
master_messages.cpp 6 #pragma omp master
8 #pragma omp master nowait // expected-error {{unexpected OpenMP clause 'nowait' in directive '#pragma omp master'}}
9 #pragma omp master unknown // expected-warning {{extra tokens at the end of '#pragma omp master' are ignored}}
12 #pragma omp master
17 #pragma omp master // expected-error {{region cannot be closely nested inside 'for' region}}
23 #pragma omp master // expected-error {{region cannot be closely nested inside 'sections' region}}
29 #pragma omp master // expected-error {{region cannot be closely nested inside 'single' region}}
32 #pragma omp master
    [all...]
  /external/libnetfilter_conntrack/utils/
expect_get.c 25 struct nf_conntrack *master; local
28 master = nfct_new();
29 if (!master) {
34 nfct_set_attr_u8(master, ATTR_L3PROTO, AF_INET);
35 nfct_set_attr_u32(master, ATTR_IPV4_SRC, inet_addr("1.1.1.1"));
36 nfct_set_attr_u32(master, ATTR_IPV4_DST, inet_addr("2.2.2.2"));
38 nfct_set_attr_u8(master, ATTR_L4PROTO, IPPROTO_TCP);
39 nfct_set_attr_u16(master, ATTR_PORT_SRC, htons(10240));
40 nfct_set_attr_u16(master, ATTR_PORT_DST, htons(10241));
45 nfct_destroy(master);
    [all...]
expect_create.c 19 struct nf_conntrack *master, *expected, *mask; local
23 * Step 1: Setup master conntrack
26 master = nfct_new();
27 if (!master) {
32 nfct_set_attr_u8(master, ATTR_L3PROTO, AF_INET);
33 nfct_set_attr_u32(master, ATTR_IPV4_SRC, inet_addr("1.1.1.1"));
34 nfct_set_attr_u32(master, ATTR_IPV4_DST, inet_addr("2.2.2.2"));
36 nfct_set_attr_u8(master, ATTR_L4PROTO, IPPROTO_TCP);
37 nfct_set_attr_u16(master, ATTR_PORT_SRC, htons(1025));
38 nfct_set_attr_u16(master, ATTR_PORT_DST, htons(21))
    [all...]
expect_create_userspace.c 19 struct nf_conntrack *master, *expected, *mask; local
23 * Step 1: Setup master conntrack
26 master = nfct_new();
27 if (!master) {
32 nfct_set_attr_u8(master, ATTR_L3PROTO, AF_INET);
33 nfct_set_attr_u32(master, ATTR_IPV4_SRC, inet_addr("1.1.1.1"));
34 nfct_set_attr_u32(master, ATTR_IPV4_DST, inet_addr("2.2.2.2"));
36 nfct_set_attr_u8(master, ATTR_L4PROTO, IPPROTO_TCP);
37 nfct_set_attr_u16(master, ATTR_PORT_SRC, htons(1025));
38 nfct_set_attr_u16(master, ATTR_PORT_DST, htons(21))
    [all...]
expect_create_nat.c 19 struct nf_conntrack *master, *expected, *mask, *nat; local
23 * Step 1: Setup master conntrack
26 master = nfct_new();
27 if (!master) {
32 nfct_set_attr_u8(master, ATTR_L3PROTO, AF_INET);
33 nfct_set_attr_u32(master, ATTR_IPV4_SRC, inet_addr("1.1.1.1"));
34 nfct_set_attr_u32(master, ATTR_IPV4_DST, inet_addr("2.2.2.2"));
36 nfct_set_attr_u8(master, ATTR_L4PROTO, IPPROTO_TCP);
37 nfct_set_attr_u16(master, ATTR_PORT_SRC, htons(1025));
38 nfct_set_attr_u16(master, ATTR_PORT_DST, htons(21))
    [all...]
  /external/compiler-rt/test/msan/Linux/
forkpty.cc 10 int master, slave; local
11 openpty(&master, &slave, NULL, NULL, NULL);
12 assert(__msan_test_shadow(&master, sizeof(master)) == -1);
  /external/compiler-rt/test/sanitizer_common/TestCases/Posix/
getpass.cc 16 int master; local
17 int pid = forkpty(&master, NULL, NULL, NULL);
24 int res = read(master, buf, sizeof(buf));
26 write(master, "password\n", 9);
27 while ((res = read(master, buf, sizeof(buf))) > 0) write(1, buf, res);
  /external/python/cpython2/Lib/lib-tk/
tkCommonDialog.py 17 def __init__(self, master=None, **options):
23 self.master = master
25 if not master and options.get('parent'):
26 self.master = options['parent']
44 w = Frame(self.master)
SimpleDialog.py 9 def __init__(self, master,
13 self.root = Toplevel(master, class_=class_)
15 self.root = Toplevel(master)
35 self._set_transient(master)
37 def _set_transient(self, master, relx=0.5, rely=0.3):
40 widget.transient(master)
42 if master.winfo_ismapped():
43 m_width = master.winfo_width()
44 m_height = master.winfo_height()
45 m_x = master.winfo_rootx(
    [all...]
  /external/python/cpython3/Lib/tkinter/
commondialog.py 17 def __init__(self, master=None, **options):
18 self.master = master
20 if not master and options.get('parent'):
21 self.master = options['parent']
39 w = Frame(self.master)
  /prebuilts/gdb/darwin-x86/lib/python2.7/lib-tk/
tkCommonDialog.py 17 def __init__(self, master=None, **options):
23 self.master = master
25 if not master and options.get('parent'):
26 self.master = options['parent']
44 w = Frame(self.master)
SimpleDialog.py 9 def __init__(self, master,
13 self.root = Toplevel(master, class_=class_)
15 self.root = Toplevel(master)
35 self._set_transient(master)
37 def _set_transient(self, master, relx=0.5, rely=0.3):
40 widget.transient(master)
42 if master.winfo_ismapped():
43 m_width = master.winfo_width()
44 m_height = master.winfo_height()
45 m_x = master.winfo_rootx(
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/lib-tk/
tkCommonDialog.py 17 def __init__(self, master=None, **options):
23 self.master = master
25 if not master and options.get('parent'):
26 self.master = options['parent']
44 w = Frame(self.master)
SimpleDialog.py 9 def __init__(self, master,
13 self.root = Toplevel(master, class_=class_)
15 self.root = Toplevel(master)
35 self._set_transient(master)
37 def _set_transient(self, master, relx=0.5, rely=0.3):
40 widget.transient(master)
42 if master.winfo_ismapped():
43 m_width = master.winfo_width()
44 m_height = master.winfo_height()
45 m_x = master.winfo_rootx(
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib-tk/
tkCommonDialog.py 17 def __init__(self, master=None, **options):
23 self.master = master
25 if not master and options.get('parent'):
26 self.master = options['parent']
44 w = Frame(self.master)
SimpleDialog.py 9 def __init__(self, master,
13 self.root = Toplevel(master, class_=class_)
15 self.root = Toplevel(master)
35 self._set_transient(master)
37 def _set_transient(self, master, relx=0.5, rely=0.3):
40 widget.transient(master)
42 if master.winfo_ismapped():
43 m_width = master.winfo_width()
44 m_height = master.winfo_height()
45 m_x = master.winfo_rootx(
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib-tk/
tkCommonDialog.py 17 def __init__(self, master=None, **options):
23 self.master = master
25 if not master and options.get('parent'):
26 self.master = options['parent']
44 w = Frame(self.master)
SimpleDialog.py 9 def __init__(self, master,
13 self.root = Toplevel(master, class_=class_)
15 self.root = Toplevel(master)
35 self._set_transient(master)
37 def _set_transient(self, master, relx=0.5, rely=0.3):
40 widget.transient(master)
42 if master.winfo_ismapped():
43 m_width = master.winfo_width()
44 m_height = master.winfo_height()
45 m_x = master.winfo_rootx(
    [all...]
  /external/jcommander/src/test/java/com/beust/jcommander/args/
ArgsMaster.java 29 @Parameter(names = "-master")
30 public String master; field in class:ArgsMaster
ArgsSlaveBogus.java 29 @Parameter(names = "-master")
30 public String master; field in class:ArgsSlaveBogus
  /external/python/cpython2/Demo/tkinter/matt/
bind-w-mult-calls-p-type.py 7 def __init__(self, master=None):
8 Frame.__init__(self, master)
35 root.master.title("Foo")
entry-simple.py 7 def __init__(self, master=None):
8 Frame.__init__(self, master)
23 root.master.title("Foo")
  /external/python/cpython2/Lib/test/
test_openpty.py 12 master, slave = os.openpty()
13 self.addCleanup(os.close, master)
19 self.assertEqual(os.read(master, 1024), 'Ping!')
  /external/python/cpython3/Lib/test/
test_openpty.py 11 master, slave = os.openpty()
12 self.addCleanup(os.close, master)
18 self.assertEqual(os.read(master, 1024), b'Ping!')

Completed in 606 milliseconds

1 2 3 4 5 6 7 8 91011>>