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

1 2 3 4 5

  /external/webkit/WebKitTools/BuildSlaveSupport/build.webkit.org-config/webkit/
builders.py 3 allWinBuilders = ['apple-slave-7', 'apple-slave-2'] # pewtermoose-slave-1
4 allMacPPCBuilders = ['apple-slave-1', 'apple-slave-3', 'apple-slave-6']
5 allMacIntelBuilders = ['bdash-slave-1', 'bdash-slave-2']
6 macIntelPixelBuilders = ['apple-slave-8']
7 allQtLinuxBuilders = ['webtroll-slave-1'
    [all...]
auth.py 9 return [("slave-name", "password")]
  /external/webkit/WebKitTools/BuildSlaveSupport/build.webkit.org-config/
config.json 2 "slaves": [ { "name": "test-slave", "platform": "*" },
4 { "name": "bdash-slave-2", "platform": "mac-tiger" },
24 { "name": "gtk-linux-slave-1", "platform": "gtk"},
25 { "name": "gtk-linux-slave-2", "platform": "gtk"},
26 { "name": "gtk-linux-slave-3", "platform": "gtk"},
37 "slavenames": ["bdash-slave-2", "test-slave"]
43 "slavenames": ["apple-xserve-1", "apple-xserve-2", "test-slave"]
47 "slavenames": ["apple-pixel-1", "test-slave"]
53 "slavenames": ["apple-xserve-1", "apple-xserve-2", "test-slave"]
    [all...]
Makefile 5 # master or slave by doing 'make start' or 'make stop'.
master.cfg 325 c['slaves'] = [BuildSlave(slave['name'], passwords[slave['name']], max_builds=1) for slave in config['slaves']]
335 for slave in config['slaves']:
336 if slave['name'] != slaveName or slave['platform'] == '*':
339 if slave['platform'] != builder['platform']:
340 raise Exception, "Builder %r is for platform %r but has slave %r for platform %r!" % (builder['name'], builder['platform'], slave['name'], slave['platform']
    [all...]
  /external/qemu/hw/
bt.c 25 /* Slave implementations can ignore this */
33 if (link->slave->reject_reason)
60 link->slave = req->slave;
94 /* Simple slave-only devices need to implement only .lmp_acl_data */
105 dev->next = net->slave;
106 net->slave = dev;
111 struct bt_device_s **p = &dev->net->slave;
bt-hci.c 277 * (Slave to master only)
392 struct bt_device_s *slave;
396 slave = 0;
398 slave = net->slave;
403 bt_submit_lmp(slave, length - 1, data + 1);
407 bt_sumbit_l2cap(slave, length - 1, data + 1, (data[0] >> 2) & 1);
518 struct bt_device_s *slave)
522 .bdaddr = BAINIT(&slave->bd_addr),
526 .dev_class[0] = slave->class[0]
587 struct bt_device_s *slave; local
679 struct bt_device_s *slave; local
946 struct bt_device_s *slave; local
971 struct bt_device_s *slave; local
999 struct bt_device_s *slave; local
1022 struct bt_device_s *slave; local
    [all...]
  /external/bluetooth/bluez/audio/
bluetooth.conf 30 slave {
  /external/webkit/WebKitTools/BuildSlaveSupport/
run-performance-tests 29 # Script used by WebKit build slave to kick off performance tests.
54 print "Copying built frameworks to PLT slave...\n";
56 die "Failed to copy to slave\n" unless (system("rsync", "-avz", @frameworks, "$userAndHost:$slaveDirectory") == 0);
58 print "Opening reponse port for PLT slave...\n";
66 print "Starting performance tests on PLT slave...\n";
67 die "Failed to start slave!\n" unless (system("ssh", $userAndHost, "autovicki", $slaveDirectory, "--safari", "$slaveDirectory/Safari.app", "--count", 5, "--clean-exit", "--webkit-revision", currentSVNRevision(), "--show-results", "send-completed-results.command") == 0);
69 print "Waiting for PLT slave to respond...\n";
  /external/kernel-headers/original/linux/
mount.h 52 struct list_head mnt_slave_list;/* list of slave mounts */
53 struct list_head mnt_slave; /* slave list entry */
54 struct vfsmount *mnt_master; /* slave is on master->mnt_slave_list */
if.h 42 #define IFF_SLAVE 0x800 /* slave of a load balancer */
59 #define IFF_SLAVE_INACTIVE 0x4 /* bonding slave not the curr. active */
188 #define ifr_slave ifr_ifru.ifru_slave /* slave device */
sockios.h 114 #define SIOCBONDRELEASE 0x8991 /* release a slave from the bond*/
116 #define SIOCBONDSLAVEINFOQUERY 0x8993 /* rtn info about slave state */
118 #define SIOCBONDCHANGEACTIVE 0x8995 /* update to a new active slave */
smp.h 65 #define MSG_STOP_CPU 0x0002 /* Sent to shut down slave CPU's
  /external/dropbear/
sshpty.c 75 char *slave;
77 slave = _getpty(ptyfd, O_RDWR, 0622, 0);
78 if (slave == NULL) {
83 strlcpy(namebuf, slave, namebuflen);
84 /* Open the slave side. */
123 "Slave pty side name could not be obtained.");
128 /* Open the slave side. */
176 "Could not open pty slave side %.100s: %.100s",
210 /* Open the slave side. */
chansession.h 47 int slave; member in struct:ChanSess
svr-chansession.c 228 chansess->slave = -1;
540 if (pty_allocate(&chansess->master, &chansess->slave, namebuf, 64) == 0) {
773 pty_make_controlling_tty(&chansess->slave, chansess->tty);
775 if ((dup2(chansess->slave, STDIN_FILENO) < 0) ||
776 (dup2(chansess->slave, STDERR_FILENO) < 0) ||
777 (dup2(chansess->slave, STDOUT_FILENO) < 0)) {
782 close(chansess->slave);
832 close(chansess->slave);
  /external/opencore/protocols/systems/3g-324m_pvterminal/h324/tsc/include/
tsc_constants.h 56 #define TSC_MSD_DECISION 9 // * either MASTER or SLAVE * /
71 #define SLAVE 1
  /external/bluetooth/hcidump/src/
csrsniff.c 145 "\tcsrsniff [-i <dev>] <master-bdaddr> [slave-bdaddr]\n");
160 bdaddr_t bdaddr, master, slave; local
164 bacpy(&slave, BDADDR_ANY);
195 str2ba(argv[1], &slave);
  /external/iproute2/include/linux/
if.h 43 #define IFF_SLAVE 0x800 /* slave of a load balancer */
62 #define IFF_SLAVE_INACTIVE 0x4 /* bonding slave not the curr. active */
65 #define IFF_BONDING 0x20 /* bonding master or slave */
199 #define ifr_slave ifr_ifru.ifru_slave /* slave device */
  /external/bluetooth/bluez/tools/
hciconfig.8 245 .B SLAVE
246 mean, respectively, to ask to become master or to remain slave when a
261 sets link policy to the default behaviour of remaining slave and not accepting
  /external/opencore/protocols/systems/3g-324m_pvterminal/h324/tsc/src/
tsc_msd.cpp 61 (0, "TSC: MSD complete. decision SLAVE."));
63 // Master/Slave Determination... Complete
65 MASTER : SLAVE);
  /frameworks/base/awt/org/apache/harmony/awt/gl/render/
JavaShapeRasterizer.java 243 void sort(int[] master, int[] slave, int length) {
256 min = slave[num];
257 slave[num] = slave[i];
258 slave[i] = min;
  /external/qemu/slirp/
misc.c 174 register int master, slave; local
187 if ((slave = open(ptr, O_RDWR)) < 0 ||
188 ioctl(slave, I_PUSH, "ptem") < 0 ||
189 ioctl(slave, I_PUSH, "ldterm") < 0 ||
190 ioctl(slave, I_PUSH, "ttcompat") < 0) {
192 close(slave);
197 *aslave = slave;
220 if ((slave = open(line, O_RDWR, 0)) != -1) {
222 *aslave = slave;
  /external/qemu/slirp-android/
misc.c 154 register int master, slave; local
167 if ((slave = open(ptr, O_RDWR)) < 0 ||
168 ioctl(slave, I_PUSH, "ptem") < 0 ||
169 ioctl(slave, I_PUSH, "ldterm") < 0 ||
170 ioctl(slave, I_PUSH, "ttcompat") < 0) {
172 close(slave);
177 *aslave = slave;
200 if ((slave = open(line, O_RDWR, 0)) != -1) {
202 *aslave = slave;
  /external/opencore/protocols/systems/3g-324m_pvterminal/h245/cmn/include/
h245inf.h 61 // E_User_Msd_Rjt_Idc , /* ( 2) Master slave determination Reject Indication */
62 // E_User_Msd_Err_Idc , /* ( 3) Master slave determination Error Indication */
280 E_TmrId_Msd_T106 , /* ( 0) Master Slave Determination */

Completed in 588 milliseconds

1 2 3 4 5