/external/webrtc/webrtc/voice_engine/ |
voe_audio_processing_impl.h | 34 int SetRxNsStatus(int channel, 38 int GetRxNsStatus(int channel, bool& enabled, NsModes& mode) override; 40 int SetRxAgcStatus(int channel, 44 int GetRxAgcStatus(int channel, bool& enabled, AgcModes& mode) override; 46 int SetRxAgcConfig(int channel, AgcConfig config) override; 48 int GetRxAgcConfig(int channel, AgcConfig& config) override; 66 int RegisterRxVadObserver(int channel, VoERxVadCallback& observer) override; 68 int DeRegisterRxVadObserver(int channel) override; 70 int VoiceActivityIndicator(int channel) override;
|
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;
|
/frameworks/base/core/java/com/android/internal/view/ |
InputBindResult.java | 36 * The input channel used to send input events to this IME. 38 public final InputChannel channel; field in class:InputBindResult 59 channel = _channel; 68 channel = InputChannel.CREATOR.createFromParcel(source); 70 channel = null; 94 if (channel != null) { 96 channel.writeToParcel(dest, flags); 123 return channel != null ? channel.describeContents() : 0;
|
/frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/ |
BidirectionalAsyncChannelServer.java | 32 * Provides an interface for the server side implementation of a bidirectional channel as described 49 AsyncChannel channel = mClients.get(msg.replyTo); 52 if (channel != null) { 54 channel.replyToMessage(msg, 58 channel = new AsyncChannel(); 59 mClients.put(msg.replyTo, channel); 60 channel.connected(context, this, msg.replyTo); 61 channel.replyToMessage(msg, AsyncChannel.CMD_CHANNEL_FULLY_CONNECTED, 66 channel.disconnect();
|
/libcore/ojluni/src/main/java/java/nio/channels/ |
DatagramChannel.java | 38 * A selectable channel for datagram-oriented sockets. 40 * <p> A datagram channel is created by invoking one of the {@link #open open} methods 41 * of this class. It is not possible to create a channel for an arbitrary, 42 * pre-existing datagram socket. A newly-created datagram channel is open but not 43 * connected. A datagram channel need not be connected in order for the {@link #send 44 * send} and {@link #receive receive} methods to be used. A datagram channel may be 47 * every send and receive operation. A datagram channel must be connected in 52 * <p> Once connected, a datagram channel remains connected until it is 53 * disconnected or closed. Whether or not a datagram channel is connected may 57 * setOption} method. A datagram channel to an Internet Protocol socket support [all...] |
/packages/apps/TV/src/com/android/tv/ |
MainActivityWrapper.java | 25 import com.android.tv.data.Channel; 73 * Notifies the current channel change. 75 void notifyCurrentChannelChange(@NonNull MainActivity caller, @Nullable Channel channel) { 78 listener.onCurrentChannelChange(channel); 121 * Listener for the current channel change in main activity. 125 * Called when the current channel changes. 127 void onCurrentChannelChange(@Nullable Channel channel);
|
/packages/apps/TV/src/com/android/tv/analytics/ |
StubTracker.java | 22 import com.android.tv.data.Channel; 45 public void sendChannelViewStart(Channel channel, boolean tunedByRecommendation) { } 48 public void sendChannelTuneTime(Channel channel, long durationMs) { } 51 public void sendChannelViewStop(Channel channel, long durationMs) { } 99 public void sendChannelVideoUnavailable(Channel channel, int reason) { }
|
/packages/apps/TV/src/com/android/tv/data/ |
Channel.java | 47 * A convenience class to create and insert channel entries into the database. 49 public final class Channel { 50 private static final String TAG = "Channel"; 77 // Columns must match what is read in Channel.fromCursor() 93 // Columns should match what is read in Channel.fromCursor() 112 * Creates {@code Channel} object from cursor. 117 public static Channel fromCursor(Cursor cursor) { 119 Channel channel = new Channel(); local 145 Channel channel = new Channel(); local 506 Channel channel = new Channel(); local [all...] |
/packages/apps/TV/src/com/android/tv/recommendation/ |
ChannelRecord.java | 23 import com.android.tv.data.Channel; 37 private Channel mChannel; 41 public ChannelRecord(Context context, Channel channel, boolean inputRemoved) { 43 mChannel = channel; 48 public Channel getChannel() { 52 public void setChannel(Channel channel, boolean inputRemoved) { 53 mChannel = channel;
|
Recommender.java | 24 import com.android.tv.data.Channel; 41 private static final Comparator<Pair<Channel, Double>> mChannelScoreComparator = 42 new Comparator<Pair<Channel, Double>>() { 44 public int compare(Pair<Channel, Double> lhs, Pair<Channel, Double> rhs) { 56 private List<Channel> mPreviousRecommendedChannels = new ArrayList<>(); 106 public List<Channel> recommendChannels() { 111 * Return the channel list of recommendation up to {@code n} or the number of channels. 112 * During the evaluation, this method updates the channel sort key of recommended channels. 119 public List<Channel> recommendChannels(int size) [all...] |
/external/autotest/server/site_tests/network_WiFi_SimpleConnect/ |
control.wifi_check5HT40 | 17 on 5 GHz channel (40MHz-channel with the second 20MHz chunk of the 40MHz 18 channel on the channel below the center channel).
|
/external/c-ares/ |
ares_options.c | 31 int ares_get_servers(ares_channel channel, 40 if (!channel) 43 for (i = 0; i < channel->nservers; i++) 63 srvr_curr->family = channel->servers[i].addr.family; 65 memcpy(&srvr_curr->addrV4, &channel->servers[i].addr.addrV4, 68 memcpy(&srvr_curr->addrV6, &channel->servers[i].addr.addrV6, 87 int ares_set_servers(ares_channel channel, 97 if (!channel) 100 ares__destroy_servers_state(channel); 110 channel->servers = malloc(num_srvrs * sizeof(struct server_state)) [all...] |
ares_process.c | 74 static void write_tcp_data(ares_channel channel, fd_set *write_fds, 76 static void read_tcp_data(ares_channel channel, fd_set *read_fds, 78 static void read_udp_packets(ares_channel channel, fd_set *read_fds, 80 static void advance_tcp_send_queue(ares_channel channel, int whichserver, 82 static void process_timeouts(ares_channel channel, struct timeval *now); 83 static void process_broken_connections(ares_channel channel, 85 static void process_answer(ares_channel channel, unsigned char *abuf, 88 static void handle_error(ares_channel channel, int whichserver, 90 static void skip_server(ares_channel channel, struct query *query, 92 static void next_server(ares_channel channel, struct query *query [all...] |
/external/webrtc/webrtc/modules/audio_coding/codecs/isac/main/source/ |
filterbank_tables.h | 28 /* The number of all-pass filter factors in an upper or lower channel*/ 34 /* The upper channel all-pass filter factors */ 37 /* The lower channel all-pass filter factors */ 40 /* The matrix for transforming the backward composite state to upper channel state */ 43 /* The matrix for transforming the backward composite state to lower channel state */
|
/external/webrtc/webrtc/modules/audio_coding/test/ |
TwoWayCommunication.h | 17 #include "webrtc/modules/audio_coding/test/Channel.h" 40 Channel* _channel_A2B; 41 Channel* _channel_B2A; 43 Channel* _channelRef_A2B; 44 Channel* _channelRef_B2A;
|
/frameworks/base/core/java/android/view/ |
InputChannel.java | 24 * An input channel specifies the file descriptors used to send input events to 62 * Creates an uninitialized input channel. 64 * another input channel into this one. 79 * Creates a new input channel pair. One channel should be provided to the input 81 * @param name The descriptive (non-unique) name of the channel pair. 82 * @return A pair of input channels. The first channel is designated as the 83 * server channel and should be used to publish input events. The second channel 84 * is designated as the client channel and should be used to consume input events [all...] |
/frameworks/wilhelm/src/android/ |
channels.c | 24 * Return the default OpenSL ES output channel mask (as used in SLDataFormat_PCM.channelMask) 25 * for the specified channel count. 27 * OpenSL ES makes no distinction between input and output channel masks, but 32 // FIXME channel mask is not yet implemented by Stagefright, so use a reasonable default 33 // that is computed from the channel count 39 // see explanation in data.c re: default channel mask for mono 63 * Return the default OpenSL ES input channel mask (as used in SLDataFormat_PCM.channelMask) 64 * for the specified channel count. 66 * OpenSL ES makes no distinction between input and output channel masks, but 88 * Get the number of active channels in an OpenSL ES channel mask [all...] |
/external/wpa_supplicant_8/wpa_supplicant/ |
offchannel.c | 2 * wpa_supplicant - Off-channel Action frame TX/RX 59 "Off-channel: Send Action callback (without_roc=%d pending_action_tx=%p pending_action_tx_done=%d)", 80 wpa_printf(MSG_DEBUG, "Off-channel: Pending Action frame TX " 90 * on the correct channel, but remain-on-channel cancel 93 wpa_printf(MSG_DEBUG, "Off-channel: Schedule " 94 "remain-on-channel to send Action frame"); 107 wpa_printf(MSG_DEBUG, "Off-channel: Failed to " 109 "channel (%u MHz) for Action Frame " 120 wpa_printf(MSG_DEBUG, "Off-channel: Sending pending Action frame to [all...] |
/packages/apps/TV/src/com/android/tv/ui/sidepanel/ |
CustomizeChannelListFragment.java | 30 import com.android.tv.data.Channel; 45 private static final String TRACKER_LABEL = "customize channel list"; 47 private final List<Channel> mChannels = new ArrayList<>(); 50 private long mLastFocusedChannelId = Channel.INVALID_ID; 54 private Channel.DefaultComparator mChannelComparator; 60 this(Channel.INVALID_ID); 71 mChannelComparator = new Channel.DefaultComparator(getActivity(), mInputManager); 82 // In order to send tune operation once for continuous channel up/down events, 83 // we only call the moveToChannel method on ACTION_UP event of channel switch keys. 88 if (mLastFocusedChannelId != Channel.INVALID_ID) 281 Channel channel = channelItem.getChannel(); local [all...] |
/external/antlr/antlr-3.4/runtime/ObjC/Framework/ |
ANTLRCommonTokenStream.m | 34 @synthesize channel; 48 + (ANTLRCommonTokenStream *)newANTLRCommonTokenStreamWithTokenSource:(id<ANTLRTokenSource>)theTokenSource Channel:(NSUInteger)aChannel 50 return [[ANTLRCommonTokenStream alloc] initWithTokenSource:(id<ANTLRTokenSource>)theTokenSource Channel:aChannel]; 57 channel = ANTLRTokenChannelDefault; 66 channel = ANTLRTokenChannelDefault; 71 - (id) initWithTokenSource:(id<ANTLRTokenSource>)theTokenSource Channel:(NSUInteger)aChannel 75 channel = aChannel; 91 /** Always leave index on an on-channel token. */ 97 while ( ((ANTLRCommonToken *)[tokens objectAtIndex:index]).channel != channel ) { [all...] |
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/ |
CommonTokenStream.java | 32 * and tokens are filtered for a certain channel (the parser will only 40 * is that this stream knows how to ignore off channel tokens. There may be 42 * whitespace and comments etc. to the parser on a hidden channel (i.e., 43 * you set $channel instead of calling skip() in lexer rules.) 49 /** Skip tokens on any channel but this one; this is how we skip whitespace... */ 50 protected int channel = Token.DEFAULT_CHANNEL; field in class:CommonTokenStream 58 public CommonTokenStream(TokenSource tokenSource, int channel) { 60 this.channel = channel; 63 /** Always leave p on an on-channel token. * [all...] |
/external/autotest/client/cros/audio/ |
audio_data.py | 53 @property channel: The number of channels. 54 @property channel_data: A list of lists containing samples in each channel. 55 E.g., The third sample in the second channel is 60 def __init__(self, binary, channel, sample_format): 66 @param channel: The number of channels. 69 self.channel = channel 70 self.channel_data = [[] for _ in xrange(self.channel)] 95 Reads one sample for each channel and repeats until the end of 105 channel_index = (channel_index + 1) % self.channel [all...] |
/device/huawei/angler/camera/QCamera2/stack/mm-camera-test/src/ |
mm_qcamera_preview.c | 40 mm_camera_channel_t *channel = NULL; local 52 /* find channel */ 55 channel = &pme->channels[i]; 60 if (NULL == channel) { 61 CDBG_ERROR("%s: Channel object is NULL ", __func__); 66 for (i = 0; i < channel->num_streams; i++) { 67 if (channel->streams[i].s_config.stream_info->stream_type == CAM_STREAM_TYPE_METADATA) { 68 p_stream = &channel->streams[i]; 122 mm_camera_channel_t *channel = NULL; local 134 /* find channel */ 197 mm_camera_channel_t *channel = NULL; local 592 mm_camera_channel_t *channel = NULL; local 654 mm_camera_channel_t *channel = NULL; local 696 mm_camera_channel_t *channel = local 710 mm_camera_channel_t *channel = NULL; local 808 mm_camera_channel_t *channel = local [all...] |
/device/lge/bullhead/camera/QCamera2/stack/mm-camera-test/src/ |
mm_qcamera_preview.c | 40 mm_camera_channel_t *channel = NULL; local 52 /* find channel */ 55 channel = &pme->channels[i]; 60 if (NULL == channel) { 61 CDBG_ERROR("%s: Channel object is NULL ", __func__); 66 for (i = 0; i < channel->num_streams; i++) { 67 if (channel->streams[i].s_config.stream_info->stream_type == CAM_STREAM_TYPE_METADATA) { 68 p_stream = &channel->streams[i]; 122 mm_camera_channel_t *channel = NULL; local 134 /* find channel */ 197 mm_camera_channel_t *channel = NULL; local 592 mm_camera_channel_t *channel = NULL; local 654 mm_camera_channel_t *channel = NULL; local 696 mm_camera_channel_t *channel = local 710 mm_camera_channel_t *channel = NULL; local 808 mm_camera_channel_t *channel = local [all...] |
/development/ndk/platforms/android-3/arch-arm/include/asm/ |
dma.h | 35 #define clear_dma_ff(channel) 37 #define set_dma_addr(channel, addr) __set_dma_addr(channel, bus_to_virt(addr))
|