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

12 3 4 5 6 7 8 91011>>

  /packages/apps/TV/usbtuner/src/com/android/usbtuner/data/
TunerChannel.java 22 import com.android.usbtuner.data.Channel;
23 import com.android.usbtuner.data.Channel.TunerChannelProto;
40 * A class that represents a single channel accessible through a tuner.
58 ATSC_SERVICE_TYPE_NAMES[Channel.SERVICE_TYPE_ATSC_RESERVED];
60 ATSC_SERVICE_TYPE_NAMES[Channel.SERVICE_TYPE_ATSC_DIGITAL_TELEVISION];
72 private TunerChannel(VctItem channel, int programNumber, List<PmtItem> pmtItems, int type) {
74 if (channel == null) {
81 mProto.shortName = channel.getShortName();
82 if (channel.getLongName() != null) {
83 mProto.longName = channel.getLongName()
    [all...]
  /external/webrtc/webrtc/voice_engine/
channel.cc 11 #include "webrtc/voice_engine/channel.h"
195 explicit VoERtcpObserver(Channel* owner) : owner_(owner) {}
242 Channel* owner_;
248 Channel::SendData(FrameType frameType,
256 "Channel::SendData(frameType=%u, payloadType=%u, timeStamp=%u,"
285 "Channel::SendData() failed to send data to RTP/RTCP module");
296 Channel::InFrameType(FrameType frame_type)
299 "Channel::InFrameType(frame_type=%d)", frame_type);
307 Channel::OnRxVadDetected(int vadDecision)
318 bool Channel::SendRtp(const uint8_t* data
3460 Channel* channel = associate_send_channel_.channel(); local
4080 Channel* channel = associate_send_channel_.channel(); local
    [all...]
channel_proxy.h 30 class Channel;
32 // This class provides the "view" of a voe::Channel that we need to implement
36 // voe::Channel class.
71 Channel* channel() const;
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...]
  /external/opencv3/3rdparty/openexr/IlmImf/
ImfChannelList.cpp 39 // class Channel
54 Channel::Channel (PixelType t, int xs, int ys, bool pl):
65 Channel::operator == (const Channel &other) const
75 ChannelList::insert (const char name[], const Channel &channel)
78 THROW (Iex::ArgExc, "Image channel name cannot be an empty string.");
80 _map[name] = channel;
85 ChannelList::insert (const string &name, const Channel &channel
    [all...]
  /packages/apps/TV/src/com/android/tv/ui/sidepanel/
ChannelCheckItem.java 24 import com.android.tv.data.Channel;
34 private Channel mChannel;
39 public void onChannelRemoved(Channel channel) { }
42 public void onChannelUpdated(Channel channel) {
43 mChannel = channel;
55 public ChannelCheckItem(Channel channel,
58 super(channel.getDisplayName(), "")
    [all...]
  /packages/apps/TV/tests/unit/src/com/android/tv/
BaseMainActivityTestCase.java 23 import com.android.tv.data.Channel;
69 * Tune to {@code channel}.
71 * @param channel the channel to tune to.
73 protected void tuneToChannel(final Channel channel) {
79 mActivity.tuneToChannel(channel);
99 * Tune to the channel with {@code name}.
101 * @param name the name of the channel to find.
104 Channel c = findChannelWithName(name)
    [all...]
  /external/jetty/src/java/org/eclipse/jetty/server/nio/
InheritedChannelConnector.java 22 import java.nio.channels.Channel;
30 * inherit from a channel provided by the system. If there is no inherited
31 * channel available, or if the inherited channel provided not usable, then
56 Channel channel = System.inheritedChannel(); local
57 if ( channel instanceof ServerSocketChannel )
58 _acceptChannel = (ServerSocketChannel)channel;
60 LOG.warn("Unable to use System.inheritedChannel() [" +channel+ "]. Trying a new ServerSocketChannel at " + getHost() + ":" + getPort());
  /external/webrtc/webrtc/modules/audio_coding/test/
iSACTest.h 20 #include "webrtc/modules/audio_coding/test/Channel.h"
57 rtc::scoped_ptr<Channel> _channel_A2B;
58 rtc::scoped_ptr<Channel> _channel_B2A;
SpatialAudio.h 17 #include "webrtc/modules/audio_coding/test/Channel.h"
39 Channel* _channel;
  /libcore/ojluni/src/main/java/java/nio/channels/
FileLock.java 40 * channel that was used to acquire it, or by the termination of the Java
60 * <p> A file-lock object records the file channel upon whose file the lock is
97 * <p> On some systems, closing a channel releases all locks held by the Java
99 * acquired via that channel or via another channel open on the same file. It
100 * is strongly recommended that, within a program, a unique channel be used to
118 private final Channel channel; field in class:FileLock
126 * @param channel
127 * The file channel upon whose file this lock is hel
168 public final FileChannel channel() { method in class:FileLock
    [all...]
  /packages/apps/TV/src/com/android/tv/menu/
SetupCardView.java 23 import com.android.tv.data.Channel;
28 public class SetupCardView extends BaseCardView<Channel> {
ChannelsRowAdapter.java 31 import com.android.tv.data.Channel;
43 public class ChannelsRowAdapter extends ItemListRowView.ItemListAdapter<Channel> {
110 // Always send the label "Channels" because the channel ID or name or number might be
113 getMainActivity().tuneToChannel((Channel) view.getTag());
165 List<Channel> channelList = new ArrayList<>();
166 Channel dummyChannel = new Channel.Builder().build();
173 Channel currentChannel = ((MainActivity) mContext).getCurrentChannel();
176 && currentChannel.getAppLinkType(mContext) != Channel.APP_LINK_TYPE_NONE;
219 private List<Channel> getRecentChannels()
231 Channel channel = mRecommender.getChannel(channelId); local
    [all...]
ChannelsPosterPrefetcher.java 30 import com.android.tv.data.Channel;
100 List<Channel> channelList = mChannelsAdapter.getItemList();
102 for (Channel channel : channelList) {
106 if (!Channel.isValid(channel)) {
109 channel.prefetchImage(mContext, Channel.LOAD_IMAGE_TYPE_CHANNEL_LOGO,
111 Program program = mProgramDataManager.getCurrentProgram(channel.getId());
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
IToken.cs 59 int Channel {
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
IToken.cs 65 int Channel
  /external/mesa3d/src/gallium/drivers/radeon/
R600RegisterInfo.h 42 /// getHWRegChan - get the HW encoding for a register's channel.
50 /// Channel (e.g. getSubRegFromChannel(0) -> AMDGPU::sel_x)
51 unsigned getSubRegFromChannel(unsigned Channel) const;
56 /// getHWRegChanGen - Generated function returns a register's channel
  /development/samples/WiFiDirectServiceDiscovery/src/com/example/android/wifidirect/discovery/
WiFiDirectBroadcastReceiver.java 27 import android.net.wifi.p2p.WifiP2pManager.Channel;
37 private Channel channel; field in class:WiFiDirectBroadcastReceiver
42 * @param channel Wifi p2p channel
45 public WiFiDirectBroadcastReceiver(WifiP2pManager manager, Channel channel,
49 this.channel = channel;
77 manager.requestConnectionInfo(channel,
    [all...]
  /external/opencv/otherlibs/highgui/
grfmt_exr.h 80 const Channel *m_red;
81 const Channel *m_green;
82 const Channel *m_blue;
  /external/opencv3/modules/imgcodecs/src/
grfmt_exr.hpp 91 const Channel *m_red;
92 const Channel *m_green;
93 const Channel *m_blue;
  /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/recommendation/
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...]
  /packages/apps/TV/usbtuner/src/com/android/usbtuner/
ChannelScanFileParser.java 21 import com.android.usbtuner.data.Channel;
43 return new ScanChannel(Channel.TYPE_TUNER, frequency, modulation, null);
47 return new ScanChannel(Channel.TYPE_FILE, frequency, "file:", filename);
61 * @param is {@link InputStream} of a scan file. Each line matches one channel.
  /packages/apps/TV/tests/unit/src/com/android/tv/recommendation/
RecommenderTest.java 23 import com.android.tv.data.Channel;
45 private final Comparator<Channel> CHANNEL_SORT_KEY_COMPARATOR = new Comparator<Channel>() {
47 public int compare(Channel lhs, Channel rhs) {
56 // mChannels_1 ~ mChannels_4. They are sorted by channel id in increasing order.
70 private Channel mChannel_1;
71 private Channel mChannel_2;
72 private Channel mChannel_3;
73 private Channel mChannel_4
    [all...]
  /packages/apps/TV/src/com/android/tv/ui/sidepanel/parentalcontrols/
ChannelsBlockedFragment.java 32 import com.android.tv.data.Channel;
49 private final List<Channel> mChannels = new ArrayList<>();
50 private long mLastFocusedChannelId = Channel.INVALID_ID;
72 // In order to send tune operation once for continuous channel up/down events,
73 // we only call the moveToChannel method on ACTION_UP event of channel switch keys.
78 if (mLastFocusedChannelId != Channel.INVALID_ID) {
118 Collections.sort(mChannels, new Comparator<Channel>() {
120 public int compare(Channel lhs, Channel rhs) {
130 for (Channel channel : mChannels)
    [all...]

Completed in 1195 milliseconds

12 3 4 5 6 7 8 91011>>