HomeSort by relevance Sort by last modified time
    Searched refs:channel (Results 26 - 50 of 2925) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/webrtc/webrtc/voice_engine/include/
voe_external_media.h 31 virtual void Process(int channel,
56 // media for the specified |channel| and |type|.
58 int channel,
63 // media for the specified |channel| and |type|.
64 virtual int DeRegisterExternalMediaProcessing(int channel,
67 // Pulls an audio frame from the specified |channel| for external mixing.
71 virtual int GetAudioFrame(int channel,
76 virtual int SetExternalMixing(int channel, bool enable) = 0;
voe_file.h 63 int channel,
74 int channel,
81 // Stops playback of a file on a specific |channel|.
82 virtual int StopPlayingFileLocally(int channel) = 0;
84 // Returns the current file playing state for a specific |channel|.
85 virtual int IsPlayingFileLocally(int channel) = 0;
90 int channel,
100 int channel,
106 // Stops playing of a file as microphone signal for a specific |channel|.
107 virtual int StopPlayingFileAsMicrophone(int channel) = 0
    [all...]
voe_dtmf.h 57 virtual int SendTelephoneEvent(int channel,
65 virtual int SetSendTelephoneEventPayloadType(int channel,
69 virtual int GetSendTelephoneEventPayloadType(int channel,
  /external/webrtc/webrtc/voice_engine/
voe_network_impl.cc 18 #include "webrtc/voice_engine/channel.h"
38 int VoENetworkImpl::RegisterExternalTransport(int channel,
41 voe::ChannelOwner ch = _shared->channel_manager().GetChannel(channel);
42 voe::Channel* channelPtr = ch.channel();
44 LOG_F(LS_ERROR) << "Failed to locate channel: " << channel;
50 int VoENetworkImpl::DeRegisterExternalTransport(int channel) {
52 voe::ChannelOwner ch = _shared->channel_manager().GetChannel(channel);
53 voe::Channel* channelPtr = ch.channel()
    [all...]
voe_network_impl.h 22 int RegisterExternalTransport(int channel, Transport& transport) override;
23 int DeRegisterExternalTransport(int channel) override;
25 int ReceivedRTPPacket(int channel, const void* data, size_t length) override;
26 int ReceivedRTPPacket(int channel,
31 int ReceivedRTCPPacket(int channel, const void* data, size_t length) override;
voe_file_impl.h 23 int StartPlayingFileLocally(int channel,
31 int StartPlayingFileLocally(int channel,
38 int StopPlayingFileLocally(int channel) override;
40 int IsPlayingFileLocally(int channel) override;
44 int StartPlayingFileAsMicrophone(int channel,
51 int StartPlayingFileAsMicrophone(int channel,
57 int StopPlayingFileAsMicrophone(int channel) override;
59 int IsPlayingFileAsMicrophone(int channel) override;
63 int StartRecordingPlayout(int channel,
68 int StartRecordingPlayout(int channel,
    [all...]
voe_video_sync_impl.cc 15 #include "webrtc/voice_engine/channel.h"
46 int VoEVideoSyncImpl::GetPlayoutTimestamp(int channel,
52 voe::ChannelOwner ch = _shared->channel_manager().GetChannel(channel);
53 voe::Channel* channel_ptr = ch.channel();
56 "GetPlayoutTimestamp() failed to locate channel");
62 int VoEVideoSyncImpl::SetInitTimestamp(int channel, unsigned int timestamp) {
64 "SetInitTimestamp(channel=%d, timestamp=%lu)", channel,
71 voe::ChannelOwner ch = _shared->channel_manager().GetChannel(channel);
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/uicc/euicc/apdu/
ApduCommand.java 25 /** Channel of an APDU as defined in GlobalPlatform Card Specification v.2.3. */
26 public final int channel; field in class:ApduCommand
47 ApduCommand(int channel, int cla, int ins, int p1, int p2, int p3, String cmdHex) {
48 this.channel = channel;
59 return "ApduCommand(channel=" + channel + ", cla=" + cla + ", ins=" + ins + ", p1=" + p1
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
ClassicToken.java 42 protected int channel=DEFAULT_CHANNEL; field in class:ClassicToken
56 channel = oldToken.getChannel();
64 public ClassicToken(int type, String text, int channel) {
67 this.channel = channel;
99 return channel;
102 public void setChannel(int channel) {
103 this.channel = channel;
127 if ( channel>0 )
    [all...]
  /libcore/ojluni/src/main/java/java/nio/channels/
FileLock.java 43 * channel that was used to acquire it, or by the termination of the Java
63 * <p> A file-lock object records the file channel upon whose file the lock is
100 * <p> On some systems, closing a channel releases all locks held by the Java
102 * acquired via that channel or via another channel open on the same file. It
103 * is strongly recommended that, within a program, a unique channel be used to
121 private final Channel channel; field in class:FileLock
129 * @param channel
130 * The file channel upon whose file this lock is hel
209 public final FileChannel channel() { method in class:FileLock
    [all...]
  /external/e2fsprogs/lib/ext2fs/
inode_io.c 50 static errcode_t inode_open(const char *name, int flags, io_channel *channel);
51 static errcode_t inode_close(io_channel channel);
52 static errcode_t inode_set_blksize(io_channel channel, int blksize);
53 static errcode_t inode_read_blk(io_channel channel, unsigned long block,
55 static errcode_t inode_write_blk(io_channel channel, unsigned long block,
57 static errcode_t inode_flush(io_channel channel);
58 static errcode_t inode_write_byte(io_channel channel, unsigned long offset,
60 static errcode_t inode_read_blk64(io_channel channel,
62 static errcode_t inode_write_blk64(io_channel channel,
114 static errcode_t inode_open(const char *name, int flags, io_channel *channel)
    [all...]
  /external/mp4parser/isoparser/src/main/java/com/coremedia/iso/
ChannelHelper.java 30 public static ByteBuffer readFully(final ReadableByteChannel channel, long size) throws IOException {
32 if (channel instanceof FileChannel && size > 1024 * 1024) {
33 ByteBuffer bb = ((FileChannel) channel).map(FileChannel.MapMode.READ_ONLY, ((FileChannel) channel).position(), size);
34 ((FileChannel) channel).position(((FileChannel) channel).position() + size); method
38 readFully(channel, buf, buf.limit());
48 public static void readFully(final ReadableByteChannel channel, final ByteBuffer buf)
50 readFully(channel, buf, buf.remaining());
53 public static int readFully(final ReadableByteChannel channel, final ByteBuffer buf, final int length
    [all...]
  /external/webrtc/webrtc/voice_engine/test/auto_test/
voe_cpu_test.cc 54 int channel(-1);
65 channel = base->CreateChannel();
68 new VoiceChannelTransport(voe_network, channel));
73 CHECK(codec->SetRecPayloadType(channel, isac));
74 CHECK(codec->SetSendCodec(channel, isac));
76 CHECK(base->StartReceive(channel));
77 CHECK(base->StartPlayout(channel));
78 CHECK(base->StartSend(channel));
79 CHECK(file->StartPlayingFileAsMicrophone(channel, _mgr.AudioFilename(),
82 CHECK(codec->SetVADStatus(channel, true))
    [all...]
  /external/webrtc/talk/media/webrtc/
fakewebrtcvoiceengine.h 55 #define WEBRTC_CHECK_CHANNEL(channel) \
56 if (channels_.find(channel) == channels_.end()) return -1;
146 struct Channel {
147 explicit Channel()
226 uint32_t GetLocalSSRC(int channel) {
227 return channels_[channel]->send_ssrc;
229 bool GetPlayout(int channel) {
230 return channels_[channel]->playout;
232 bool GetSend(int channel) {
233 return channels_[channel]->send
    [all...]
  /external/webrtc/webrtc/modules/audio_coding/neteq/
audio_multi_vector_unittest.cc 49 // Write 100, 101, 102, ... for first channel.
50 // Write 200, 201, 202, ... for second channel.
88 for (size_t channel = 0; channel < num_channels_; ++channel) {
90 vec[channel][i] = static_cast<int16_t>(i);
92 const AudioVector& audio_vec = vec[channel];
109 for (size_t channel = 0; channel < vec.Channels(); ++channel) {
    [all...]
  /external/tensorflow/tensorflow/compiler/xla/service/
channel_tracker.cc 37 // Create a new channel handle with a unique value.
40 // Register a channel object associated with the handle.
41 Channel channel; local
42 channel.has_sender = false;
43 channel.receiver_count = 0;
44 opaque_to_channel_[new_handle.handle()] = channel;
68 return NotFound("channel handle not found: %lld", handle.handle());
70 Channel& channel = opaque_to_channel_[handle.handle()] local
85 Channel& channel = opaque_to_channel_[handle.handle()]; local
    [all...]
  /frameworks/base/services/tests/uiservicestests/src/com/android/server/notification/
NotificationChannelTest.java 44 NotificationChannel channel = local
47 channel.writeToParcel(parcel, 0);
50 assertEquals(channel, channel1);
55 NotificationChannel channel = new NotificationChannel("a", "ab", IMPORTANCE_DEFAULT); local
56 assertEquals(false, channel.isBlockableSystem());
57 channel.setBlockableSystem(true);
58 assertEquals(true, channel.isBlockableSystem());
63 NotificationChannel channel = new NotificationChannel("a", "ab", IMPORTANCE_DEFAULT); local
64 channel.setVibrationPattern(new long[0]);
69 channel.writeXml(serializer)
    [all...]
  /device/google/contexthub/firmware/os/platform/stm32/inc/plat/
i2c.h 27 uint8_t channel; member in struct:StmI2cDmaCfg
55 #define I2C1_DMA_RX_CFG_A { .channel = 1, .stream = 0 }
56 #define I2C1_DMA_RX_CFG_B { .channel = 1, .stream = 5 }
57 #define I2C1_DMA_TX_CFG_A { .channel = 0, .stream = 1 }
58 #define I2C1_DMA_TX_CFG_B { .channel = 1, .stream = 6 }
59 #define I2C1_DMA_TX_CFG_C { .channel = 1, .stream = 7 }
65 #define I2C2_DMA_RX_CFG_A { .channel = 7, .stream = 2 }
66 #define I2C2_DMA_RX_CFG_B { .channel = 7, .stream = 3 }
67 #define I2C2_DMA_TX_CFG { .channel = 7, .stream = 7 }
72 #define I2C3_DMA_RX_CFG_A { .channel = 1, .stream = 1
    [all...]
  /system/bt/test/suite/rfcomm/
rfcomm_unittest.cc 42 int channel; local
44 len = read(fd, &channel, sizeof(channel));
45 EXPECT_TRUE(len == sizeof(channel))
46 << "Channel not read from RFCOMM socket. Bytes read: " << len;
53 EXPECT_TRUE(channel == signal.channel)
54 << "Inconsistent channels returned: " << channel << " and "
55 << signal.channel;
83 int channel; local
    [all...]
  /libcore/ojluni/src/main/java/sun/nio/ch/
SelectionKeyImpl.java 41 final SelChImpl channel; // package-private field in class:SelectionKeyImpl
51 channel = ch;
55 public SelectableChannel channel() { method in class:SelectionKeyImpl
56 return (SelectableChannel)channel;
103 if ((ops & ~channel().validOps()) != 0)
105 channel.translateAndSetInterestOps(ops, this);
  /prebuilts/go/darwin-x86/test/syntax/
chan.go 11 } // ERROR "unexpected .*}.* in channel type|missing channel element type"
13 func Foo(y chan) { // ERROR "unexpected .*\).* in channel type|missing channel element type"
16 func Bar(x chan, y int) { // ERROR "unexpected comma in channel type|missing channel element type"
  /prebuilts/go/linux-x86/test/syntax/
chan.go 11 } // ERROR "unexpected .*}.* in channel type|missing channel element type"
13 func Foo(y chan) { // ERROR "unexpected .*\).* in channel type|missing channel element type"
16 func Bar(x chan, y int) { // ERROR "unexpected comma in channel type|missing channel element type"
  /system/bt/vendor_libs/test_vendor_lib/src/
sco_packet.cc 27 ScoPacket::ScoPacket(uint16_t channel,
30 {static_cast<uint8_t>(channel & 0xff),
31 static_cast<uint8_t>(((channel >> 8) & 0x0f) |
  /device/generic/goldfish/vibrator/
qemu.c 75 qemu_channel_open_qemud_pipe( QemuChannel* channel,
88 channel->is_qemud = 1;
89 channel->fd = fd;
94 qemu_channel_open_qemud( QemuChannel* channel,
124 channel->is_qemud = 1;
125 channel->fd = fd;
131 qemu_channel_open_qemud_old( QemuChannel* channel,
136 snprintf(channel->device, sizeof channel->device,
139 fd = socket_local_client( channel->device
290 static QemuChannel channel[1]; local
    [all...]
  /external/tensorflow/tensorflow/core/kernels/
mfcc_mel_filterbank.cc 25 // right side of a triangle for channel i, and the left side of the triangle
26 // for channel i+1. If you ask for so many channels that some of the
93 // each FFT bin, band_mapper tells us which channel this bin contributes to
95 // left side of the next channel's triangle response.
97 int channel = 0; local
103 while ((center_frequencies_[channel] < melf) &&
104 (channel < num_channels_)) {
105 ++channel;
107 band_mapper_[i] = channel - 1; // Can be == -1
113 // mel-channel center frequencies. This bin contributes weights_[i] to th
189 int channel = band_mapper_[i]; local
    [all...]

Completed in 625 milliseconds

12 3 4 5 6 7 8 91011>>