/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
|
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 | 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...] |
/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); 116 int slave; local 117 ASSERT_EQ(0, openpty(&master, &slave, nullptr, nullptr, nullptr)); 119 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/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:__anon625
|
/development/ndk/platforms/android-21/include/linux/ |
isdn.h | 115 char slave[10]; member in struct:__anon1747
|
/external/compiler-rt/lib/sanitizer_common/ |
sanitizer_mac.cc | 176 int master, slave; local 177 if (openpty(&master, &slave, nullptr, nullptr, nullptr) == -1) return -1; 181 close(slave); 186 CHECK_EQ(login_tty(slave), 0); 189 close(slave);
|
/external/kernel-headers/original/uapi/linux/ |
isdn.h | 111 char slave[10]; /* Name of Slave for Bundling */ member in struct:__anon14705 121 int slavedelay; /* Delay until slave starts up */ 130 int triggercps; /* BogoCPS needed for triggering slave */
|
/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);
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/linux/ |
isdn.h | 110 char slave[10]; /* Name of Slave for Bundling */ member in struct:__anon39147 120 int slavedelay; /* Delay until slave starts up */ 129 int triggercps; /* BogoCPS needed for triggering slave */
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/linux/ |
isdn.h | 110 char slave[10]; /* Name of Slave for Bundling */ member in struct:__anon41071 120 int slavedelay; /* Delay until slave starts up */ 129 int triggercps; /* BogoCPS needed for triggering slave */
|
/prebuilts/ndk/current/platforms/android-21/arch-arm/usr/include/linux/ |
isdn.h | 115 char slave[10]; member in struct:__anon56234
|