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

1 2

  /device/samsung/crespo/
asound.conf 35 slave.pcm {
50 slave.pcm {
66 slave.pcm {
83 slave.pcm {
100 slave.pcm {
117 slave.pcm {
134 slave.pcm {
151 slave.pcm {
168 slave.pcm {
185 slave.pcm
    [all...]
  /external/qemu/hw/
bt.c 24 /* Slave implementations can ignore this */
32 if (link->slave->reject_reason)
59 link->slave = req->slave;
93 /* Simple slave-only devices need to implement only .lmp_acl_data */
104 dev->next = net->slave;
105 net->slave = dev;
110 struct bt_device_s **p = &dev->net->slave;
bt-hci.c 275 * (Slave to master only)
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)
520 .bdaddr = BAINIT(&slave->bd_addr),
524 .dev_class[0] = slave->class[0]
585 struct bt_device_s *slave; local
677 struct bt_device_s *slave; local
944 struct bt_device_s *slave; local
969 struct bt_device_s *slave; local
1019 struct bt_device_s *slave; local
    [all...]
bt-l2cap.c     [all...]
bt.h 57 struct bt_device_s *slave; member in struct:bt_scatternet_s
61 struct bt_device_s *slave, *host; member in struct:bt_link_s
    [all...]
  /external/bluetooth/bluez/audio/
bluetooth.conf 30 slave {
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/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...]
  /hardware/invensense/mlsdk/platform/include/linux/
mpu.h 106 * slave is on the secondary bus the MPU will first enger bypass mode
173 * slave devices
176 * for this slave
177 * @irq: the irq number attached to the slave if any.
179 * @bus: the bus the slave is attached to: enum ext_slave_bus
180 * @address: the I2C slave address of the slave device.
182 * @irq_data: private data for the slave irq handler
218 * struct ext_slave_descr - Description of the slave device for programming.
234 * @range: full scale range of the slave ouput: struct fix_pnt_rang
    [all...]
  /external/dropbear/
chansession.h 47 int slave; member in struct:ChanSess
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. */
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);
  /hardware/invensense/mlsdk/mllite/
mldl_cfg_mpu.c 320 * Send slave configuration information
324 * @param slave_handle handle to the slave sensor
325 * @param slave slave description
326 * @param pdata slave platform data
334 struct ext_slave_descr *slave,
339 if (!mldl_cfg || !gyro_handle || !data || !slave) {
344 switch (slave->type) {
364 * Send slave configuration information
368 * @param slave_handle handle to the slave senso
    [all...]
mldl_cfg.h 124 /* Slave related information */
158 /* Slave Read functions */
162 struct ext_slave_descr *slave,
209 /* Slave Config functions */
214 struct ext_slave_descr *slave,
260 /* Slave get config functions */
265 struct ext_slave_descr *slave,
  /external/chromium/chrome/browser/visitedlink/
visitedlink_unittest.cc 119 // slave to make sure it reads the data properly.
132 // Create a slave database.
133 VisitedLinkSlave slave; local
137 slave.OnUpdateVisitedLinks(new_handle);
138 g_slaves.push_back(&slave);
146 found = slave.IsVisited(cur);
147 EXPECT_TRUE(found) << "URL " << i << "not found in slave.";
153 found = slave.IsVisited(GURL("http://unfound.site/"));
274 VisitedLinkSlave slave; local
278 slave.OnUpdateVisitedLinks(new_handle)
323 VisitedLinkSlave slave; local
    [all...]
  /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/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;
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/
isdn.h 116 char slave[10]; /* Name of Slave for Bundling */ member in struct:__anon21057
126 int slavedelay; /* Delay until slave starts up */
135 int triggercps; /* BogoCPS needed for triggering slave */
  /external/webkit/Tools/Scripts/webkitpy/layout_tests/port/
apache_http_server.py 139 such as "C:\b\slave\webkit-release\build\third_party\cygwin\bin"
  /hardware/invensense/mlsdk/mlutils/
mputest.c 65 #include "slave.h"
227 * the slave address the MPU device is setup to respond at.
861 /* load the slave descr from the getter */
1344 struct ext_slave_descr *slave = mputestCfgPtr->accel; local
    [all...]
  /external/chromium/net/tools/dump_cache/
upgrade.cc 923 SlaveSM slave(input_path, pipe);
924 if (!slave.DoInit()) {
  /external/qemu-pc-bios/bochs/bios/
rombios.c 2517 Bit8u channel, slave, shift; local
2789 Bit8u channel, slave, sn, sc; local
2859 Bit8u channel, slave; local
3010 Bit8u channel, slave; local
3162 Bit8u channel, slave; local
    [all...]
  /external/qemu/
qemu-char.c 863 const char *slave; local
875 if ((slave = ptsname(mfd)) == NULL)
878 if ((sfd = open(slave, O_RDONLY | O_NOCTTY)) == -1)
    [all...]
vl-android.c 792 if (!vlan->slave)
819 if (!vlan->slave)
820 fprintf(stderr, "qemu: warning: adding a slave device to "
    [all...]
  /external/ppp/pppd/
sys-linux.c 178 static int slave_fd = -1; /* pty for old-style demand mode, slave */
1967 char slave[16]; local
    [all...]

Completed in 553 milliseconds

1 2