Searched defs:slave (Results 1 - 25 of 27) sorted by relevance

12

/external/compiler-rt/test/msan/Linux/
H A Dforkpty.cc10 int master, slave; local
11 openpty(&master, &slave, NULL, NULL, NULL);
13 assert(__msan_test_shadow(&slave, sizeof(slave)) == -1);
/external/jcommander/src/test/java/com/beust/jcommander/args/
H A DArgsSlave.java29 @Parameter(names = "-slave")
30 public String slave; field in class:ArgsSlave
H A DCommandLineArgs.java117 @Parameter(names = "-slave", description ="Host where the slave is")
118 public String slave; field in class:CommandLineArgs
/external/libnl/src/
H A Dnl-link-release.c20 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",
H A Dnl-link-enslave.c20 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/openssh/openbsd-compat/
H A Dbsd-openpty.c81 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/iproute2/ip/
H A Dip_common.h84 bool slave; member in struct:link_util
H A Diplink.c118 static struct link_util *__get_link_kind(const char *id, bool slave) argument
126 l->slave == slave)
141 if (slave)
/external/libnl/lib/route/link/
H A Dbonding.c98 * @arg slave ifindex of slave link to add to bond
108 int slave)
116 rtnl_link_set_ifindex(link, slave);
131 if ((err = rtnl_link_get_kernel(sock, slave, NULL, &link)) < 0)
147 * @arg slave slave link to add to bond
149 * Constructs a RTM_NEWLINK or RTM_SETLINK message adding the slave to
164 struct rtnl_link *slave)
168 rtnl_link_get_ifindex(slave));
107 rtnl_link_bond_enslave_ifindex(struct nl_sock *sock, int master, int slave) argument
163 rtnl_link_bond_enslave(struct nl_sock *sock, struct rtnl_link *master, struct rtnl_link *slave) argument
183 rtnl_link_bond_release_ifindex(struct nl_sock *sock, int slave) argument
207 rtnl_link_bond_release(struct nl_sock *sock, struct rtnl_link *slave) argument
[all...]
/external/testng/src/main/java/org/testng/internal/remote/
H A DSlavePool.java56 public void returnSlave(ConnectionInfo slave) throws IOException { argument
57 m_hosts.add(slave.getSocket());
58 // ConnectionInfo ci = m_connectionInfos.remove(slave.socket);
61 // addSlave(slave.socket);
/external/bison/lib/
H A Dwait-process.c57 '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 an
[all...]
/external/syslinux/gpxe/src/drivers/bitbash/
H A Dspi_bit.c49 * Select/deselect slave
52 * @v slave Slave number
58 unsigned int slave,
63 DBGC2 ( spibit, "SPIBIT %p setting slave %d select %s\n",
64 spibit, slave, ( state ? "high" : "low" ) );
67 write_bit ( basher, SPI_BIT_SS ( slave ), state );
169 /* Assert chip select on specified slave */
170 spi_bit_set_slave_select ( spibit, device->slave, SELECT_SLAVE );
210 /* Deassert chip select on specified slave */
211 spi_bit_set_slave_select ( spibit, device->slave, DESELECT_SLAV
57 spi_bit_set_slave_select( struct spi_bit_basher *spibit, unsigned int slave, unsigned int state ) argument
[all...]
/external/syslinux/gpxe/src/include/gpxe/
H A Dspi.h92 unsigned int slave; member in struct:spi_device
173 * This bit reflects that active state of the slave select lines. It
/external/autotest/client/tests/tsc/src/
H A Dchecktsc.c171 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/
H A Ddiskutil.h43 /* 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;
H A Ddiskutil.c31 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.
/external/rootdev/
H A Drootdev.c25 * Limit prevents endless looping to find slave.
265 * rootdev_get_device_slave returns results in slave which
266 * may be the original device or the name of the slave.
268 * Because slave and device may point to the same data,
269 * must be careful how they are handled because slave
272 void rootdev_get_device_slave(char *slave, size_t size, dev_t *dev, argument
286 if (slave != device)
287 strncpy(slave, device, size);
288 slave[size - 1] = '\0';
290 len = snprintf(dst, sizeof(dst), "%s/%s/slaves", search, slave);
[all...]
/external/testng/src/main/java/org/testng/
H A DCommandLineArgs.java133 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
/external/kernel-headers/original/uapi/linux/
H A Disdn.h111 char slave[10]; /* Name of Slave for Bundling */ member in struct:__anon8733
121 int slavedelay; /* Delay until slave starts up */
130 int triggercps; /* BogoCPS needed for triggering slave */
/external/toolchain-utils/cros_utils/
H A Dbuildbot_json.py534 """Buildbot slave class."""
709 'slave',
791 def slave(self): member in class:Build
794 Goes up the hierarchy to find the Buildbot.slaves[slave] instance.
796 return self.parent.parent.parent.parent.slaves[self.data['slave']]
1119 for slave in buildbot.slaves:
1120 if not slave.connected:
1121 print(slave.name)
1133 '--slave',
1152 busy_slaves = [build.slave
[all...]
/external/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_mac.cc192 int master, slave; local
193 if (openpty(&master, &slave, nullptr, nullptr, nullptr) == -1) return -1;
197 close(slave);
202 if (login_tty(slave) != 0) {
209 close(slave);
/external/libnl/lib/route/
H A Dlink.c683 nl_dump(p, "slave-of %s ", ll ? ll->l_name : "NONE");
687 nl_dump(p, "slave-of %d ", link->l_link);
2391 * Enslave slave link to master link
2394 * @arg slave ifindex of slave link
2403 int rtnl_link_enslave_ifindex(struct nl_sock *sock, int master, int slave) argument
2411 rtnl_link_set_ifindex(link, slave);
2426 if ((err = rtnl_link_get_kernel(sock, slave, NULL, &link)) < 0)
2439 * Enslave slave link to master link
2442 * @arg slave slav
2458 rtnl_link_enslave(struct nl_sock *sock, struct rtnl_link *master, struct rtnl_link *slave) argument
2477 rtnl_link_release_ifindex(struct nl_sock *sock, int slave) argument
2501 rtnl_link_release(struct nl_sock *sock, struct rtnl_link *slave) argument
[all...]
/external/ppp/pppd/
H A Dsys-linux.c180 static int slave_fd = -1; /* pty for old-style demand mode, slave */
1999 char slave[16]; local
2006 * So we grab a pty master/slave pair and use that.
2008 if (!get_pty(&mfd, &local_fd, slave, 0)) {
2608 * get_pty - get a pty master/slave pair and chown the slave side
2635 warn("Couldn't unlock pty slave %s: %m", pty_name);
2638 warn("Couldn't open pty slave %s: %m", pty_name);
2685 * in demand mode. Under Linux, we use a pty master/slave pair.
2716 warn("couldn't set slave loopbac
[all...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.text_3.5.0.v20100601-1300.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/icu/tools/srcgen/currysrc/libs/
H A Dorg.eclipse.text_3.5.400.v20150505-1044.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSE_.SF META-INF/ECLIPSE_.RSA META ...

Completed in 975 milliseconds

12