HomeSort by relevance Sort by last modified time
    Searched defs:slave (Results 1 - 25 of 67) sorted by null

1 2 3

  /external/compiler-rt/test/msan/Linux/
forkpty.cc 10 int master, slave; local
11 openpty(&master, &slave, NULL, NULL, NULL);
13 assert(__msan_test_shadow(&slave, sizeof(slave)) == -1);
  /external/openssh/openbsd-compat/
bsd-openpty.c 81 char *slave; local
83 if ((slave = _getpty(amaster, O_RDWR, 0622, 0)) == NULL)
86 /* Open the slave side. */
87 if ((*aslave = open(slave, O_RDWR | O_NOCTTY)) == -1) {
118 /* Open the slave side. */
168 /* Open the slave side. */
202 /* Open the slave side. */
  /external/libnl/src/
nl-link-release.c 20 struct rtnl_link *slave; local
24 fprintf(stderr, "Usage: nl-link-release slave\n");
32 if (!(slave = rtnl_link_get_by_name(link_cache, argv[1]))) {
37 if ((err = rtnl_link_bond_release(sock, slave)) < 0) {
38 fprintf(stderr, "Unable to release slave %s: %s\n",
nl-link-enslave.c 20 struct rtnl_link *master, *slave; local
24 fprintf(stderr, "Usage: nl-link-enslave master slave\n");
37 if (!(slave = rtnl_link_get_by_name(link_cache, argv[2]))) {
42 if ((err = rtnl_link_bond_enslave(sock, master, slave)) < 0) {
  /external/jcommander/src/test/java/com/beust/jcommander/args/
ArgsSlave.java 29 @Parameter(names = "-slave")
30 public String slave; field in class:ArgsSlave
CommandLineArgs.java 117 @Parameter(names = "-slave", description ="Host where the slave is")
118 public String slave; field in class:CommandLineArgs
  /external/iproute2/ip/
ip_common.h 84 bool slave; member in struct:link_util
  /bionic/libc/bionic/
pty.cpp 117 int openpty(int* master, int* slave, char* name, const termios* t, const winsize* ws) {
137 *slave = open(name, O_RDWR|O_NOCTTY);
138 if (*slave == -1) {
144 tcsetattr(*slave, TCSAFLUSH, t);
147 ioctl(*slave, TIOCSWINSZ, ws);
155 int slave; local
156 if (openpty(&master, &slave, name, t, ws) == -1) {
163 close(slave);
171 if (login_tty(slave) == -1) {
179 close(slave);
    [all...]
  /bionic/tests/
pty_test.cpp 31 int master, slave; local
34 ASSERT_EQ(0, openpty(&master, &slave, name, NULL, &w));
36 ASSERT_NE(-1, slave);
37 ASSERT_NE(master, slave);
40 ASSERT_EQ(0, ttyname_r(slave, tty_name, sizeof(tty_name)));
44 ASSERT_EQ(0, ioctl(slave, TIOCGWINSZ, &w_actual));
51 close(slave);
119 int slave; local
120 ASSERT_EQ(0, openpty(&master, &slave, nullptr, nullptr, nullptr));
122 ASSERT_EQ(0, tcgetattr(slave, &tattr))
    [all...]
  /external/bison/lib/
wait-process.c 57 'child' field to 0 when unregistering a slave process, and wouldn't need
68 /* The registered slave subprocesses. */
74 /* The termination signal for slave subprocesses.
88 /* Get the last registered slave. */
97 pid_t slave = slaves[n].child; local
99 /* Kill the slave. */
100 kill (slave, TERMINATOR);
105 /* Register a subprocess as being a slave process. This means that the
120 /* Try to store the new slave in an unused entry of the slaves array. */
166 new slave and its 'used' bit have been written to the memory location
    [all...]
  /external/testng/src/main/java/org/testng/internal/remote/
SlavePool.java 56 public void returnSlave(ConnectionInfo slave) throws IOException {
57 m_hosts.add(slave.getSocket());
58 // ConnectionInfo ci = m_connectionInfos.remove(slave.socket);
61 // addSlave(slave.socket);
  /external/syslinux/gpxe/src/include/gpxe/
spi.h 91 /** Slave number */
92 unsigned int slave; member in struct:spi_device
171 /** Slave select polarity mode bit
173 * This bit reflects that active state of the slave select lines. It
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
nntplib.py 446 def slave(self): member in class:NNTP
447 """Process a SLAVE command. Returns:
450 return self.shortcmd('SLAVE')
  /external/autotest/client/tests/tsc/src/
checktsc.c 171 state_t slave; variable
214 wait_for_state(&slave, READY);
218 wait_for_state(&slave, DONE);
255 set_state(&slave, ERROR);
262 set_state(&slave, READY);
268 set_state(&slave, DONE);
305 * tell the slave thread to exit
  /external/fio/
diskutil.h 43 /* If this disk is a slave, hook it into the master's
59 * entries for the slave devices. The disk_util entries for
82 struct disk_util *slave; local
84 slave = flist_entry(n, struct disk_util, slavelist);
85 slave->users += val;
diskutil.c 31 struct disk_util *slave; local
33 slave = flist_first_entry(&du->slaves, struct disk_util, slavelist);
34 flist_del(&slave->slavelist);
35 slave->users--;
243 * are links to the real directories for the slave
248 perror("readlink() for slave device.");
256 perror("Error getting slave device numbers.");
620 * those slave devices also.
654 * those slave devices also.
  /prebuilts/gdb/darwin-x86/lib/python2.7/
nntplib.py 446 def slave(self): member in class:NNTP
447 """Process a SLAVE command. Returns:
450 return self.shortcmd('SLAVE')
  /prebuilts/gdb/linux-x86/lib/python2.7/
nntplib.py 446 def slave(self): member in class:NNTP
447 """Process a SLAVE command. Returns:
450 return self.shortcmd('SLAVE')
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
nntplib.py 446 def slave(self): member in class:NNTP
447 """Process a SLAVE command. Returns:
450 return self.shortcmd('SLAVE')
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
nntplib.py 446 def slave(self): member in class:NNTP
447 """Process a SLAVE command. Returns:
450 return self.shortcmd('SLAVE')
  /external/antlr/antlr-3.4/tool/src/test/java/org/antlr/test/
TestCompositeGrammars.java 50 String slave = local
54 writeFile(tmpdir, "S.g", slave);
70 String slave = local
74 writeFile(tmpdir, "S.g", slave);
90 String slave = local
94 writeFile(tmpdir, "S.g", slave);
107 String slave = local
114 writeFile(tmpdir, "S.g", slave);
126 String slave = local
131 writeFile(tmpdir, "S.g", slave);
148 String slave = local
188 String slave = local
234 String slave = local
263 String slave = local
316 String slave = local
369 String slave = local
407 String slave = local
448 String slave = local
474 String slave = local
498 String slave = local
515 String slave = local
540 String slave = local
567 String slave = local
583 String slave = local
603 String slave = local
644 String slave = local
675 String slave = local
698 String slave = local
721 String slave = local
748 String slave = local
794 String slave = local
857 String slave = local
955 String slave = local
    [all...]
  /external/testng/src/main/java/org/testng/
CommandLineArgs.java 133 public static final String SLAVE = "-slave";
134 @Parameter(names = SLAVE, description = "Host where the slave is", hidden = true)
135 public String slave; field in class:CommandLineArgs
  /bionic/libc/kernel/uapi/linux/
isdn.h 115 char slave[10]; member in struct:__anon718
  /development/ndk/platforms/android-21/include/linux/
isdn.h 115 char slave[10]; member in struct:__anon1958
  /external/kernel-headers/original/uapi/linux/
isdn.h 111 char slave[10]; /* Name of Slave for Bundling */ member in struct:__anon21367
121 int slavedelay; /* Delay until slave starts up */
130 int triggercps; /* BogoCPS needed for triggering slave */

Completed in 490 milliseconds

1 2 3