HomeSort by relevance Sort by last modified time
    Searched refs:supported_channel_counts (Results 1 - 12 of 12) sorted by null

  /external/adhd/cras/src/server/
cras_hfp_iodev.c 37 free(iodev->supported_channel_counts);
38 iodev->supported_channel_counts = (size_t *)malloc(2 * sizeof(size_t));
39 iodev->supported_channel_counts[0] = 1;
40 iodev->supported_channel_counts[1] = 0;
206 free(hfpio->base.supported_channel_counts);
cras_a2dp_iodev.c 87 free(iodev->supported_channel_counts);
88 iodev->supported_channel_counts = (size_t *)malloc(2 * sizeof(channel));
89 iodev->supported_channel_counts[0] = channel;
90 iodev->supported_channel_counts[1] = 0;
438 free(a2dpio->base.supported_channel_counts);
cras_bt_io.c 160 for (length = 0; dev->supported_channel_counts[length]; length++);
161 iodev->supported_channel_counts = (size_t *)malloc(
162 (length + 1) * sizeof(*iodev->supported_channel_counts));
164 iodev->supported_channel_counts[i] =
165 dev->supported_channel_counts[i];
cras_iodev.c 293 assert(iodev->supported_channel_counts[0] != 0);
295 for (i = 0; iodev->supported_channel_counts[i] != 0; i++) {
296 if (iodev->supported_channel_counts[i] == count)
303 for (i = 0; iodev->supported_channel_counts[i] != 0; i++) {
304 if (iodev->supported_channel_counts[i] ==
309 return iodev->supported_channel_counts[0];
    [all...]
cras_empty_iodev.c 195 iodev->supported_channel_counts = empty_supported_channel_counts;
cras_iodev.h 147 * supported_channel_counts - List of number of channels supported by device.
213 size_t *supported_channel_counts; member in struct:cras_iodev
test_iodev.c 192 iodev->supported_channel_counts = test_supported_channel_counts;
cras_loopback_iodev.c 261 iodev->supported_channel_counts = loopback_supported_channel_counts;
cras_alsa_io.c 830 free(aio->base.supported_channel_counts);
    [all...]
  /external/adhd/cras/src/tests/
bt_io_unittest.cc 90 iodev->supported_channel_counts = (size_t *)calloc(
91 2, sizeof(*iodev->supported_channel_counts));
92 iodev->supported_channel_counts[0] = 2;
93 iodev->supported_channel_counts[1] = 0;
iodev_unittest.cc 250 iodev_.supported_channel_counts = channel_counts_;
408 iodev_.supported_channel_counts[0] = 1;
409 iodev_.supported_channel_counts[1] = 0;
430 iodev_.supported_channel_counts[0] = 10;
431 iodev_.supported_channel_counts[1] = 0;
451 iodev_.supported_channel_counts[0] = 6;
452 iodev_.supported_channel_counts[1] = 2;
474 iodev_.supported_channel_counts[0] = 6;
475 iodev_.supported_channel_counts[1] = 2;
501 iodev_.supported_channel_counts[0] = 6
    [all...]
iodev_list_unittest.cc 133 d1_.supported_channel_counts = channel_counts_;
146 d2_.supported_channel_counts = channel_counts_;
159 d3_.supported_channel_counts = channel_counts_;
173 loopback_input.supported_channel_counts = channel_counts_;
    [all...]

Completed in 293 milliseconds