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

1 2 3 4

  /hardware/broadcom/libbt/conf/google/gce_x86/
bt_vendor.conf 2 UartPort=/dev/bluetooth/slave
  /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/jcommander/src/test/java/com/beust/jcommander/args/
ArgsSlave.java 29 @Parameter(names = "-slave")
30 public String slave; field in class:ArgsSlave
  /bionic/tests/
pty_test.cpp 25 int master, slave; local
28 ASSERT_EQ(0, openpty(&master, &slave, name, NULL, &w));
30 ASSERT_NE(-1, slave);
31 ASSERT_NE(master, slave);
34 ASSERT_EQ(0, ttyname_r(slave, tty_name, sizeof(tty_name)));
38 ASSERT_EQ(0, ioctl(slave, TIOCGWINSZ, &w_actual));
45 close(slave);
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_openpty.py 12 master, slave = os.openpty()
13 if not os.isatty(slave):
14 self.fail("Slave-end of pty is not a terminal.")
16 os.write(slave, 'Ping!')
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_openpty.py 12 master, slave = os.openpty()
13 if not os.isatty(slave):
14 self.fail("Slave-end of pty is not a terminal.")
16 os.write(slave, 'Ping!')
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_openpty.py 12 master, slave = os.openpty()
13 if not os.isatty(slave):
14 self.fail("Slave-end of pty is not a terminal.")
16 os.write(slave, 'Ping!')
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_openpty.py 12 master, slave = os.openpty()
13 if not os.isatty(slave):
14 self.fail("Slave-end of pty is not a terminal.")
16 os.write(slave, 'Ping!')
  /external/chromium-trace/catapult/firefighter/update/common/buildbot/
__init__.py 6 from common.buildbot.slave import Slaves
  /external/antlr/antlr-3.4/runtime/Python/tests/
t052import.py 73 for slave in slaves:
74 parserName = self.writeInlineGrammar(slave)[0]
75 # slave parsers are imported as normal python modules
94 for slave in slaves:
95 parserName = self.writeInlineGrammar(slave)[0]
96 # slave parsers are imported as normal python modules
130 slave = textwrap.dedent(
159 slaves=[slave],
170 # String slave =
174 # writeFile(tmpdir, "S.g", slave);
    [all...]
  /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...]
  /bionic/libc/bionic/
pty.cpp 118 int openpty(int* master, int* slave, char* name, const termios* t, const winsize* ws) {
138 *slave = open(name, O_RDWR|O_NOCTTY);
139 if (*slave == -1) {
145 tcsetattr(*slave, TCSAFLUSH, t);
148 ioctl(*slave, TIOCSWINSZ, ws);
156 int slave; local
157 if (openpty(&master, &slave, name, t, ws) == -1) {
164 close(slave);
172 if (login_tty(slave) == -1) {
180 close(slave);
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/alsa/
pcm_plugin.h 80 snd_pcm_t *slave, int close_slave);
89 snd_pcm_format_t sformat, snd_pcm_t *slave,
99 snd_pcm_format_t sformat, snd_pcm_t *slave,
109 snd_pcm_format_t sformat, snd_pcm_t *slave,
119 snd_pcm_format_t sformat, snd_pcm_t *slave,
129 snd_pcm_format_t sformat, snd_pcm_t *slave,
150 snd_pcm_t *slave, int close_slave);
161 snd_pcm_t *slave, int close_slave);
170 snd_pcm_t *slave, int close_slave);
183 snd_pcm_t *slave, int close_slave)
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/alsa/
pcm_plugin.h 80 snd_pcm_t *slave, int close_slave);
89 snd_pcm_format_t sformat, snd_pcm_t *slave,
99 snd_pcm_format_t sformat, snd_pcm_t *slave,
109 snd_pcm_format_t sformat, snd_pcm_t *slave,
119 snd_pcm_format_t sformat, snd_pcm_t *slave,
129 snd_pcm_format_t sformat, snd_pcm_t *slave,
150 snd_pcm_t *slave, int close_slave);
161 snd_pcm_t *slave, int close_slave);
170 snd_pcm_t *slave, int close_slave);
183 snd_pcm_t *slave, int close_slave)
    [all...]
  /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;
  /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/rootdev/
rootdev.h 58 * @slave: destination char array for storing the result
59 * @size: size of @slave
64 * It is safe for @device == @slave.
66 void rootdev_get_device_slave(char *slave, size_t size, dev_t *dev,
rootdev.c 25 * 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,
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/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/autotest/server/cros/
queue_barrier.py 19 The so called "master" shall call master_barrier() while the "slave" shall
29 """Initializes the barrier with |n| slave processes and a master.
31 @param n: The number of slave processes."""
41 @param token: A value passed to every slave.
62 """Makes a slave wait until all the "n" slaves and the master have
  /hardware/bsp/intel/peripheral/libupm/src/lsm303/
lsm303.h 170 mraa::Result setRegisterSafe(uint8_t slave, uint8_t sregister, uint8_t data);
lsm303.cxx 183 LSM303::setRegisterSafe(uint8_t slave, uint8_t sregister, uint8_t data)
188 if (m_i2c.address(slave) != mraa::SUCCESS) {
  /external/vboot_reference/scripts/image_signing/
sign_official_build.sh 140 # Get the slave device and its args
142 # Assumes we have only one slave device per device
149 # Set the slave device and its args for a device
151 # Assumes we have only one slave device per device
155 local slave=$3
157 sed -nre "s#(.*${device}[^,]*,)([^,]*)(.*)#\1${slave}\3#p")
216 local slave=$(sudo ${verity_bin} mode=create \
222 slave="$(echo "${slave}" |
224 CALCULATED_DM_ARGS="$(set_dm_slave "${dm_config}" vroot "${slave}")"
    [all...]
  /frameworks/ex/camera2/utils/tests/src/com/android/ex/camera2/utils/
Camera2UtilsTest.java 371 Camera2RequestSettingsSet slave = new Camera2RequestSettingsSet(); local
372 master.union(slave);
376 requestSettingsSetAndForget(slave, CaptureRequest.CONTROL_CAPTURE_INTENT, null);
377 master.union(slave);
380 requestSettingsSetAndForget(slave, CaptureRequest.CONTROL_CAPTURE_INTENT,
382 master.union(slave);
386 slave.unset(CaptureRequest.CONTROL_CAPTURE_INTENT);
387 master.union(slave);
  /hardware/bsp/intel/peripheral/libupm/src/lsm303d/
lsm303d.cxx 191 LSM303d::setRegisterSafe(uint8_t slave, uint8_t sregister, uint8_t data)
196 if (m_i2c.address(slave) != mraa::SUCCESS) {

Completed in 1462 milliseconds

1 2 3 4