HomeSort by relevance Sort by last modified time
    Searched refs:Channel (Results 51 - 75 of 347) sorted by null

1 23 4 5 6 7 8 91011>>

  /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/
NotificationService.java 50 import com.android.tv.data.Channel;
112 private Channel mPlayingChannel;
142 mNotificationChannels[i] = Channel.INVALID_ID;
176 public void onCurrentChannelChange(@Nullable Channel channel) {
178 mPlayingChannel = channel;
207 private void handleUpdateRecommendation(int notificationId, Channel channel) {
208 if (mNotificationChannels[notificationId] == Channel.INVALID_ID || !sendNotification(
209 channel.getId(), notificationId))
359 final Channel channel = cr.getChannel(); local
    [all...]
  /external/webrtc/webrtc/voice_engine/
voe_rtp_rtcp_impl.cc 18 #include "webrtc/voice_engine/channel.h"
48 int VoERTP_RTCPImpl::SetLocalSSRC(int channel, unsigned int ssrc) {
50 "SetLocalSSRC(channel=%d, %lu)", channel, ssrc);
55 voe::ChannelOwner ch = _shared->channel_manager().GetChannel(channel);
56 voe::Channel* channelPtr = ch.channel();
59 "SetLocalSSRC() failed to locate channel");
65 int VoERTP_RTCPImpl::GetLocalSSRC(int channel, unsigned int& ssrc) {
70 voe::ChannelOwner ch = _shared->channel_manager().GetChannel(channel);
    [all...]
channel_manager.cc 14 #include "webrtc/voice_engine/channel.h"
19 ChannelOwner::ChannelOwner(class Channel* channel)
20 : channel_ref_(new ChannelRef(channel)) {}
45 ChannelOwner::ChannelRef::ChannelRef(class Channel* channel)
46 : channel(channel), ref_count(1) {}
64 Channel* channel; local
101 Channel* channel = it->channel(); local
    [all...]
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_neteq_stats_impl.cc 16 #include "webrtc/voice_engine/channel.h"
48 int VoENetEqStatsImpl::GetNetworkStatistics(int channel,
54 voe::ChannelOwner ch = _shared->channel_manager().GetChannel(channel);
55 voe::Channel* channelPtr = ch.channel();
58 "GetNetworkStatistics() failed to locate channel");
66 int channel, AudioDecodingCallStats* stats) const {
71 voe::ChannelOwner ch = _shared->channel_manager().GetChannel(channel);
72 voe::Channel* channelPtr = ch.channel();
    [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...]
  /sdk/apps/SdkController/src/com/android/tools/sdkcontroller/lib/
Connection.java 29 import com.android.tools.sdkcontroller.lib.Channel;
49 * is done via "sensors" channel, multi-touch emulation is done via "multi-touch"
50 * channel, etc.
56 * its side (a channel) that implement functionality and exchange protocol required
65 * 3. Bind emulator connection with service-side channel via port name, provided by
84 * List of connected emulator sockets, pending for a channel to be registered.
86 * Emulator may connect to SDK controller before the app registers a channel
87 * for that connection. In this case (when app-side channel is not registered
89 * for the app-side channel to register.
99 private List<Channel> mChannels = new ArrayList<Channel>()
361 final Channel channel = getChannel(channel_name); local
    [all...]
  /libcore/ojluni/src/main/java/sun/nio/ch/
InheritedChannel.java 33 import java.nio.channels.Channel;
72 * Override the implCloseSelectableChannel for each channel type - this
129 private static void checkAccess(Channel c) {
140 * If standard inherited channel is connected to a socket then return a Channel
143 private static Channel createChannel() throws IOException {
147 // or redirected while we create the channel.
149 // the channel (closing one doesn't impact the other)
154 // create a channel so we release the file descriptor.
175 // Now create the channel. If the socket is a streams socket the
201 private static Channel channel = null; field in class:InheritedChannel
    [all...]
FileLockImpl.java 36 FileLockImpl(FileChannel channel, long position, long size, boolean shared)
38 super(channel, position, size, shared);
51 Channel ch = acquiredBy();
  /developers/samples/android/connectivity/wifidirect/DirectP2P/Application/src/main/java/com/example/android/wifidirectp2p/
WiFiDirectBroadcastReceiver.java 25 import android.net.wifi.p2p.WifiP2pManager.Channel;
35 private Channel channel; field in class:WiFiDirectBroadcastReceiver
40 * @param channel Wifi p2p channel
43 public WiFiDirectBroadcastReceiver(WifiP2pManager manager, Channel channel,
47 this.channel = channel;
78 manager.requestPeers(channel, (PeerListListener) activity.getFragmentManager(
    [all...]
  /development/samples/WiFiDirectDemo/src/com/example/android/wifidirect/
WiFiDirectBroadcastReceiver.java 25 import android.net.wifi.p2p.WifiP2pManager.Channel;
35 private Channel channel; field in class:WiFiDirectBroadcastReceiver
40 * @param channel Wifi p2p channel
43 public WiFiDirectBroadcastReceiver(WifiP2pManager manager, Channel channel,
47 this.channel = channel;
78 manager.requestPeers(channel, (PeerListListener) activity.getFragmentManager(
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
CommonTokenStream.cs 42 * and tokens are prefiltered for a certain channel (the parser will only
43 * see these tokens and cannot change the filter channel number during the
52 /** Skip tokens on any channel but this one; this is how we skip whitespace... */
64 public CommonTokenStream(ITokenSource tokenSource, int channel)
67 this._channel = channel;
70 public int Channel
92 /** Always leave p on an on-channel token. */
111 // skip off-channel tokens
133 // skip off-channel tokens
144 /** Given a starting index, return the index of the first on-channel
    [all...]
  /external/webrtc/webrtc/modules/audio_coding/test/
Channel.h 47 class Channel : public AudioPacketizationCallback {
50 Channel(int16_t chID = -1);
51 ~Channel();
TestRedFec.h 17 #include "webrtc/modules/audio_coding/test/Channel.h"
42 Channel* _channelA2B;
Channel.cc 11 #include "webrtc/modules/audio_coding/test/Channel.h"
22 int32_t Channel::SendData(FrameType frameType,
52 rtpInfo.type.Audio.channel = 1;
89 rtpInfo.type.Audio.channel = 1;
93 rtpInfo.type.Audio.channel = 2;
130 void Channel::CalcStatistics(WebRtcRTPHeader& rtpInfo, size_t payloadSize) {
225 Channel::Channel(int16_t chID)
267 Channel::~Channel() {
    [all...]
  /packages/apps/TV/src/com/android/tv/analytics/
SendChannelStatusRunnable.java 24 import com.android.tv.data.Channel;
32 * Periodically sends analytics data with the channel count.
61 //Start the recurring runnable after the channel DB is finished loading.
98 List<Channel> channelList = mChannelDataManager.getChannelList();
99 for (Channel channel : channelList) {
100 if (channel.isBrowsable()) {
  /sdk/apps/SdkController/src/com/android/tools/sdkcontroller/handlers/
MultiTouchChannel.java 23 import com.android.tools.sdkcontroller.lib.Channel;
32 public class MultiTouchChannel extends Channel {
58 super(service, Channel.MULTITOUCH_CHANNEL);
72 * Channel abstract implementation.
76 * This method is invoked when this channel is fully connected with its
88 * This method is invoked when this channel loses connection with its
  /external/llvm/lib/Target/AMDGPU/
AMDGPURegisterInfo.h 44 /// \returns the sub reg enum value for the given \p Channel
46 unsigned getSubRegFromChannel(unsigned Channel) const;
  /libcore/ojluni/src/main/java/java/nio/channels/
NetworkChannel.java 34 * A channel to a network socket.
36 * <p> A channel that implements this interface is a channel to a network
47 * channel upon which they are invoked. This allows method invocations to be
55 extends Channel
58 * Binds the channel's socket to a local address.
62 * bound until the channel is closed. If the {@code local} parameter has the
70 * @return This channel
77 * If the channel is closed
90 * Returns the socket address that this channel's socket is bound to, o
    [all...]
SelectableChannel.java 34 * A channel that can be multiplexed via a {@link Selector}.
39 * that represents the channel's registration with the selector.
41 * <p> Once registered with a selector, a channel remains registered until it
43 * allocated to the channel by the selector.
45 * <p> A channel cannot be deregistered directly; instead, the key representing
47 * the channel be deregistered during the selector's next selection operation.
49 * SelectionKey#cancel() cancel} method. All of a channel's keys are cancelled
50 * implicitly when the channel is closed, whether by invoking its {@link
51 * Channel#close close} method or by interrupting a thread blocked in an I/O
52 * operation upon the channel
    [all...]
  /external/replicaisland/src/com/replica/replicaisland/
ButtonAnimationComponent.java 27 private ChannelSystem.Channel mChannel;
78 public void setChannel(ChannelSystem.Channel channel) {
79 mChannel = channel;
  /external/webrtc/webrtc/modules/audio_coding/neteq/
sync_buffer.h 37 // Adds |length| zeros to the beginning of each channel. Removes
45 // Inserts |length| zeros into each channel at index |position|. The size of
47 // elements in each channel will be purged.
50 // Overwrites each channel in this SyncBuffer with values taken from
53 // channel. The size of the SyncBuffer is kept constant. That is, if |length|
66 // Reads |requested_len| samples from each channel and writes them interleaved
79 const AudioVector& Channel(size_t n) const { return *channels_[n]; }
80 AudioVector& Channel(size_t n) { return *channels_[n]; }
  /packages/apps/TV/tests/unit/src/com/android/tv/dvr/
RecordingTaskTest.java 38 import com.android.tv.data.Channel;
81 Channel channel = createTestChannel(); local
82 ScheduledRecording r = createRecording(channel);
83 RecordingTask task = createRecordingTask(r, channel);
84 String inputId = channel.getInputId();
85 when(mMockSessionManager.canAcquireDvrSession(inputId, channel)).thenReturn(true);
95 verify(mMockSessionManager).canAcquireDvrSession(inputId, channel);
97 verify(mMockTvRecordingClient).tune(eq(inputId), eq(channel.getUri()));
103 private static Channel createTestChannel()
109 Channel channel = createTestChannel(); local
128 Channel channel = createTestChannel(); local
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
evntprov.h 59 UCHAR Channel;
191 UCHAR Channel,
199 EventDescriptor->Channel = Channel;
251 return (EventDescriptor->Channel);
324 UCHAR Channel)
326 EventDescriptor->Channel = Channel;

Completed in 1671 milliseconds

1 23 4 5 6 7 8 91011>>