/external/antlr/antlr-3.4/tool/src/test/java/org/antlr/test/ |
D | TestCompositeGrammars.java | 50 String slave = in testDelegatorInvokesDelegateRule() local 54 writeFile(tmpdir, "S.g", slave); in testDelegatorInvokesDelegateRule() 70 String slave = in testDelegatorInvokesDelegateRuleWithArgs() local 74 writeFile(tmpdir, "S.g", slave); in testDelegatorInvokesDelegateRuleWithArgs() 90 String slave = in testDelegatorInvokesDelegateRuleWithReturnStruct() local 94 writeFile(tmpdir, "S.g", slave); in testDelegatorInvokesDelegateRuleWithReturnStruct() 107 String slave = in testDelegatorAccessesDelegateMembers() local 114 writeFile(tmpdir, "S.g", slave); in testDelegatorAccessesDelegateMembers() 126 String slave = in testDelegatorInvokesFirstVersionOfDelegateRule() local 131 writeFile(tmpdir, "S.g", slave); in testDelegatorInvokesFirstVersionOfDelegateRule() [all …]
|
/external/antlr/antlr-3.4/runtime/Python/tests/ |
D | t052import.py | 73 for slave in slaves: 74 parserName = self.writeInlineGrammar(slave)[0] 94 for slave in slaves: 95 parserName = self.writeInlineGrammar(slave)[0] 130 slave = textwrap.dedent( 159 slaves=[slave], 188 slave = textwrap.dedent( 215 slaves=[slave], 223 slave = textwrap.dedent( 252 slaves=[slave], [all …]
|
D | t054main.py | 274 slave = textwrap.dedent( 284 parserName = self.writeInlineGrammar(slave)[0]
|
/external/qemu/hw/ |
D | bt-hci.c | 390 struct bt_device_s *slave; 394 slave = 0; 396 slave = net->slave; 401 bt_submit_lmp(slave, length - 1, data + 1); 405 bt_sumbit_l2cap(slave, length - 1, data + 1, (data[0] >> 2) & 1); 516 struct bt_device_s *slave) in bt_hci_inquiry_result_standard() argument 520 .bdaddr = BAINIT(&slave->bd_addr), in bt_hci_inquiry_result_standard() 524 .dev_class[0] = slave->class[0], in bt_hci_inquiry_result_standard() 525 .dev_class[1] = slave->class[1], in bt_hci_inquiry_result_standard() 526 .dev_class[2] = slave->class[2], in bt_hci_inquiry_result_standard() [all …]
|
D | bt.c | 32 if (link->slave->reject_reason) in bt_dummy_lmp_connection_complete() 59 link->slave = req->slave; in bt_dummy_lmp_connection_request() 104 dev->next = net->slave; in bt_device_init() 105 net->slave = dev; in bt_device_init() 110 struct bt_device_s **p = &dev->net->slave; in bt_device_done()
|
D | bt-l2cap.c | 1117 l2cap->link->slave->lmp_acl_data : l2cap->link->host->lmp_acl_resp) in l2cap_pdu_submit() 1176 (role ? link->host : link->slave); in l2cap_init() 1234 struct bt_l2cap_device_s *dev = (struct bt_l2cap_device_s *) link->slave; in l2cap_lmp_connection_request() 1240 l2cap->link.slave = &dev->device; in l2cap_lmp_connection_request()
|
D | bt.h | 57 struct bt_device_s *slave; member 61 struct bt_device_s *slave, *host; member
|
/external/chromium/chrome/browser/visitedlink/ |
D | visitedlink_unittest.cc | 133 VisitedLinkSlave slave; in Reload() local 137 slave.OnUpdateVisitedLinks(new_handle); in Reload() 138 g_slaves.push_back(&slave); in Reload() 146 found = slave.IsVisited(cur); in Reload() 153 found = slave.IsVisited(GURL("http://unfound.site/")); in Reload() 274 VisitedLinkSlave slave; in TEST_F() local 278 slave.OnUpdateVisitedLinks(new_handle); in TEST_F() 279 g_slaves.push_back(&slave); in TEST_F() 290 EXPECT_TRUE(slave.IsVisited(TestURL(i))); in TEST_F() 297 EXPECT_FALSE(slave.IsVisited(TestURL(i))); in TEST_F() [all …]
|
/external/llvm/docs/ |
D | HowToAddABuilder.rst | 9 buildslave to private slave builder to LLVM Buildbot Infrastructure 45 Creating a slave 46 <http://buildbot.net/buildbot/docs/current/full.html#creating-a-slave>`_ 51 $ buildslave create-slave <buildslave-root-directory> \ 71 #. Send a patch which adds your build slave and your builder to zorg. 84 if administrator contact and slave information are correct.
|
/external/openssh/openbsd-compat/ |
D | bsd-openpty.c | 81 char *slave; in openpty() local 83 if ((slave = _getpty(amaster, O_RDWR, 0622, 0)) == NULL) in openpty() 87 if ((*aslave = open(slave, O_RDWR | O_NOCTTY)) == -1) { in openpty()
|
/external/qemu/slirp-android/ |
D | 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/qemu/slirp/ |
D | 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/dropbear/ |
D | sshpty.c | 75 char *slave; in pty_allocate() 77 slave = _getpty(ptyfd, O_RDWR, 0622, 0); in pty_allocate() 78 if (slave == NULL) { in pty_allocate() 83 strlcpy(namebuf, slave, namebuflen); in pty_allocate()
|
D | svr-chansession.c | 228 chansess->slave = -1; in newchansess() 540 if (pty_allocate(&chansess->master, &chansess->slave, namebuf, 64) == 0) { in sessionpty() 773 pty_make_controlling_tty(&chansess->slave, chansess->tty); in ptycommand() 775 if ((dup2(chansess->slave, STDIN_FILENO) < 0) || in ptycommand() 776 (dup2(chansess->slave, STDERR_FILENO) < 0) || in ptycommand() 777 (dup2(chansess->slave, STDOUT_FILENO) < 0)) { in ptycommand() 782 close(chansess->slave); in ptycommand() 832 close(chansess->slave); in ptycommand()
|
D | chansession.h | 47 int slave; member
|
/external/webkit/Tools/BuildSlaveSupport/build.webkit.org-config/ |
D | master.cfg | 466 # Sadly we have no way to detect the version on the slave from here. 488 # Sadly we have no way to detect the version on the slave from here. 534 …c['slaves'] = [BuildSlave(slave['name'], passwords[slave['name']], max_builds=1) for slave in conf… 546 for slave in config['slaves']: 547 if slave['name'] != slaveName or slave['platform'] == '*': 550 if slave['platform'] != builder['platform']: 551 …r %r is for platform %r but has slave %r for platform %r!" % (builder['name'], builder['platform']…
|
/external/webkit/Tools/BuildSlaveSupport/gtk/ |
D | README | 2 Running a GTK+ build slave under daemontools 6 build slave under daemontools [1]. This is convenient because daemontools
|
/external/openssh/contrib/cygwin/ |
D | sshd-inetd | 1 # This file can be used to enable sshd as a slave of the inetd service
|
/external/bison/lib/ |
D | wait-process.c | 97 pid_t slave = slaves[n].child; in cleanup_slaves() local 100 kill (slave, TERMINATOR); in cleanup_slaves()
|
/external/openssh/ |
D | PROTOCOL.mux | 11 ControlMaster from a ssh(1) in multiplex slave mode, the first 20 The current version of the mux protocol is 4. A slave should refuse
|
/external/chromium/net/tools/dump_cache/ |
D | upgrade.cc | 923 SlaveSM slave(input_path, pipe); in RunSlave() local 924 if (!slave.DoInit()) { in RunSlave()
|
/external/qemu-pc-bios/bochs/bios/ |
D | rombios.c | 2517 Bit8u channel, slave, shift; 2521 slave = device % 2; 2530 outb(iobase1+ATA_CB_DH, slave ? ATA_CB_DH_DEV1 : ATA_CB_DH_DEV0); 2549 outb(iobase1+ATA_CB_DH, slave ? ATA_CB_DH_DEV1 : ATA_CB_DH_DEV0); 2607 BX_INFO("ata%d-%d: PCHS=%u/%d/%d translation=", channel, slave,cylinders, heads, spt); 2743 printf("ata%d %s: ",channel,slave?" slave":"master"); 2751 printf("ata%d %s: ",channel,slave?" slave":"master"); 2759 printf("ata%d %s: Unknown device\n",channel,slave?" slave":"master"); 2789 Bit8u channel, slave, sn, sc; 2794 slave = device % 2; [all …]
|
/external/qemu/ |
D | qemu-char.c | 863 const char *slave; in openpty() local 875 if ((slave = ptsname(mfd)) == NULL) in openpty() 878 if ((sfd = open(slave, O_RDONLY | O_NOCTTY)) == -1) in openpty()
|
/external/ppp/pppd/ |
D | sys-linux.c | 1967 char slave[16]; in ppp_registered() local 1976 if (!get_pty(&mfd, &local_fd, slave, 0)) { in ppp_registered()
|
/external/icu4c/data/lang/ |
D | ro.txt | 153 den{"slave"}
|