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

12 3 4 5 6 7

  /device/linaro/bootloader/edk2/MdeModulePkg/Bus/Scsi/ScsiDiskDxe/
ScsiDisk.h 72 UINT32 Channel;
666 @param[out] IdeChannel Pointer to the Ide Channel number. Primary or secondary.
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Debug/
RemoteDebugEventSocketListener.cs 52 Socket channel = null; field in class:Antlr.Runtime.Debug.RemoteDebugEventSocketListener
70 int channel; field in class:Antlr.Runtime.Debug.RemoteDebugEventSocketListener.ProxyToken
77 public ProxyToken(int index, int type, int channel,
81 this.channel = channel;
124 public int Channel {
126 return channel;
129 channel = value;
170 if (channel != TokenChannels.Default) {
171 channelStr = ",channel=" + channel
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Debug/
RemoteDebugEventSocketListener.cs 55 Socket channel = null; field in class:Antlr.Runtime.Debug.RemoteDebugEventSocketListener
74 int channel; field in class:Antlr.Runtime.Debug.RemoteDebugEventSocketListener.ProxyToken
82 public ProxyToken( int index, int type, int channel,
87 this.channel = channel;
142 public int Channel
146 return channel;
150 channel = value;
204 if ( channel != TokenChannels.Default )
206 channelStr = ",channel=" + channel
    [all...]
  /external/libmojo/mojo/edk/system/
channel.h 21 // Channel provides a thread-safe interface to read and write arbitrary
22 // delimited messages over an underlying I/O channel, optionally transferring
24 class Channel : public base::RefCountedThreadSafe<Channel> {
30 // A message to be written to a channel.
183 // Delegate methods are called from the I/O task runner with which the Channel
184 // was created (see Channel::Create).
196 // Notify that an error has occured and the Channel will cease operation.
200 // Creates a new Channel around a |platform_handle|, taking ownership of the
202 // Note that ShutDown() MUST be called on the Channel some time befor
    [all...]
  /external/mesa3d/src/mesa/main/
format_parser.py 45 class Channel:
46 """Describes a color channel."""
101 """Returns the datatype corresponding to a channel type and size"""
108 channels in another. Each channel in the destination format is
111 * SWIZZLE_X: The first channel in the source format
112 * SWIZZLE_Y: The second channel in the source format
113 * SWIZZLE_Z: The third channel in the source format
114 * SWIZZLE_W: The fourth channel in the source format
117 * SWIZZLE_NONE: No data available for this channel
124 channels maps to the first luminance-alpha channel and the alpha channe
    [all...]
  /external/webrtc/webrtc/modules/audio_coding/test/
Channel.h 47 class Channel : public AudioPacketizationCallback {
50 Channel(int16_t chID = -1);
51 ~Channel();
  /external/webrtc/webrtc/p2p/base/
turnserver.cc 44 // The first two bits of a channel data message are 0b01.
73 // Encapsulates a TURN channel binding.
74 // The object is created when a channel bind request is received by an
76 class TurnServerAllocation::Channel : public rtc::MessageHandler {
78 Channel(rtc::Thread* thread, int id,
80 ~Channel();
86 sigslot::signal1<Channel*> SignalDestroyed;
196 // Fail if the packet is too small to even contain a channel header.
208 // This is a channel message; let the allocation handle it.
730 // Check that channel id is valid
771 Channel* channel = FindChannel(channel_id); local
788 Channel* channel = FindChannel(addr); local
    [all...]
  /external/llvm/include/llvm/ExecutionEngine/Orc/
OrcRemoteTargetServer.h 41 OrcRemoteTargetServer(ChannelT &Channel, SymbolLookupFtor SymbolLookup,
44 : Channel(Channel), SymbolLookup(std::move(SymbolLookup)),
53 : Channel(Other.Channel), SymbolLookup(std::move(Other.SymbolLookup)),
66 return handle<CallIntVoid>(Channel, *this, &ThisT::handleCallIntVoid);
68 return handle<CallMain>(Channel, *this, &ThisT::handleCallMain);
70 return handle<CallVoidVoid>(Channel, *this, &ThisT::handleCallVoidVoid);
72 return handle<CreateRemoteAllocator>(Channel, *this,
76 Channel, *this, &ThisT::handleCreateIndirectStubsOwner)
    [all...]
OrcRemoteTargetClient.h 45 : Channel(Other.Channel), ExistingError(std::move(Other.ExistingError)),
588 /// Channel is the ChannelT instance to communicate on. It is assumed that
589 /// the channel is ready to be read from and written to.
590 static Expected<OrcRemoteTargetClient> Create(ChannelT &Channel) {
592 OrcRemoteTargetClient H(Channel, Err);
606 return callSTHandling<CallIntVoid>(Channel, Listen, Addr);
619 return callSTHandling<CallMain>(Channel, Listen, Addr, Args);
631 return callSTHandling<CallVoidVoid>(Channel, Listen, Addr);
640 if (auto Err = callST<CreateRemoteAllocator>(Channel, Id)
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
evntprov.h 82 UCHAR Channel;
157 ev->Channel = ch;
165 return ev->Channel;
198 ev->Channel = ch;
  /device/linaro/bootloader/edk2/MdeModulePkg/Bus/Ata/AtaAtapiPassThru/
IdeMode.c 867 The steps to get IDE i/o port registers' base addresses for each channel
876 | Channel | Registers | Registers |
889 | Channel | Registers | Registers |
955 // Calculate IDE primary channel I/O register base address.
985 // Calculate IDE secondary channel I/O register base address.
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Bus/Pci/IdeBusPei/
AtapiPeim.c 517 This function is used to enumerate Atatpi device in Ide channel.
563 // Get four channels (primary or secondary Pata, Sata Channel) Command and Control Regs Base address.
594 // Pata & Sata, Primary & Secondary channel, Master & Slave device
688 UINT8 Channel;
700 Channel = (UINT8) (DevicePosition / 2);
703 ASSERT (Channel < MAX_IDE_CHANNELS);
705 StatusRegister = AtapiBlkIoDev->IdeIoPortReg[Channel].Reg.Status;
706 HeadRegister = AtapiBlkIoDev->IdeIoPortReg[Channel].Head;
707 CommandRegister = AtapiBlkIoDev->IdeIoPortReg[Channel].Reg.Command;
708 ErrorRegister = AtapiBlkIoDev->IdeIoPortReg[Channel].Reg1.Error;
    [all...]
  /device/linaro/bootloader/edk2/OvmfPkg/Library/QemuBootOrderLib/
QemuBootOrderLib.c 783 // | | | channel (port) number
794 // channel (port) number
796 UINT64 Channel;
800 OfwNode[FirstNonBridge + 1].UnitAddress, &Channel,
813 Channel
889 SubstringEq (OfwNode[FirstNonBridge + 1].DriverName, "channel") &&
895 // /pci@i0cf8/scsi@7[,3]/channel@0/disk@2,3
899 // | | channel (unused, fixed 0)
    [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...]
  /frameworks/support/tv-provider/src/android/support/media/tv/
Channel.java 39 * <p>This class makes it easy to insert or retrieve a channel from the system content provider,
42 * <p>Usage example when inserting a channel:
44 * Channel channel = new Channel.Builder()
45 * .setDisplayName("Channel Name")
46 * .setDescription("Channel description")
50 * Uri channelUri = getContentResolver().insert(Channels.CONTENT_URI, channel.toContentValues());
53 * <p>Usage example when retrieving a channel:
55 * Channel channel
    [all...]
  /packages/apps/TV/src/com/android/tv/ui/
ChannelBannerView.java 54 import com.android.tv.data.Channel;
67 * A view to render channel banner.
74 * Show all information at the channel banner.
79 * Lock program details at the channel banner.
86 * Lock channel information at the channel banner.
87 * This is used when a channel is locked so we only want to show input information.
119 private Channel mCurrentChannel;
307 * @return the previous lock type of the channel banner.
321 * Sets the content rating that blocks the current watched channel for displaying it in th
435 Channel channel = mMainActivity.getCurrentChannel(); local
    [all...]
  /sdk/apps/SdkController/src/com/android/tools/sdkcontroller/lib/
Channel.java 38 * Essentially, Channel is an implementation of a particular emulated functionality,
40 * SDK controller. For instance, "sensors" is a channel that emulates sensors,
42 * is a channel that supports multi-touch emulation, and transfers multi-touch
45 * Besides connection with the emulator, each channel may contain one or more UI
49 * - Providing a way to register / unregister a UI component with the channel.
55 public abstract class Channel {
134 /** Name for a channel that handles sensors emulation */
136 /** Name for a channel that handles multi-touch emulation */
140 * Types of messages internally used by Channel class.
166 /** Channel name ("sensors", "multi-touch", etc.) *
    [all...]
  /sdk/hierarchyviewer/src/com/android/hierarchyviewer/ui/util/
PsdFile.java 292 final Channel[] mChannelInfo = new Channel[mChannelCount];
321 mChannelInfo[0] = new Channel(Channel.ID_ALPHA, length);
322 mChannelInfo[1] = new Channel(Channel.ID_RED, length);
323 mChannelInfo[2] = new Channel(Channel.ID_GREEN, length);
324 mChannelInfo[3] = new Channel(Channel.ID_BLUE, length)
    [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.h 160 class Channel:
175 virtual ~Channel();
176 static int32_t CreateChannel(Channel*& channel,
181 Channel(int32_t channelId,
448 // Demultiplex the data to the channel's |_audioFrame|. The difference
458 // Associate to a send channel.
459 // Used for obtaining RTT for a receive-only channel.
460 void set_associate_send_channel(const ChannelOwner& channel) {
461 assert(_channelId != channel.channel()->ChannelId())
    [all...]
  /external/openssh/
channels.h 41 /* Definitions for channel types. */
45 #define SSH_CHANNEL_OPEN 4 /* normal open two-way channel */
61 #define SSH_CHANNEL_MUX_PROXY 20 /* proxy channel for mux-slave */
66 struct Channel;
67 typedef struct Channel Channel;
71 typedef int channel_infilter_fn(struct Channel *, char *, int);
73 typedef u_char *channel_outfilter_fn(struct Channel *, u_char **, u_int *);
75 /* Channel success/failure callbacks */
76 typedef void channel_confirm_cb(int, struct Channel *, void *)
    [all...]
  /packages/apps/TV/src/com/android/tv/data/
Channel.java 44 * A convenience class to create and insert channel entries into the database.
46 public final class Channel {
47 private static final String TAG = "Channel";
55 * Compares the channel numbers of channels which belong to the same input.
57 public static final Comparator<Channel> CHANNEL_NUMBER_COMPARATOR = new Comparator<Channel>() {
59 public int compare(Channel lhs, Channel rhs) {
84 // Columns must match what is read in Channel.fromCursor()
105 * Channel number delimiter between major and minor parts
117 Channel channel = new Channel(); local
552 Channel channel = new Channel(); local
    [all...]
  /packages/apps/TV/src/com/android/tv/guide/
ProgramTableAdapter.java 57 import com.android.tv.data.Channel;
302 // Members of Channel Header
303 private Channel mChannel;
384 // The bottom-left of the last channel header view will have a rounded corner.
390 private void onBindChannel(Channel channel) {
391 if (DEBUG) Log.d(TAG, "onBindChannel " + channel);
393 mChannel = channel;
396 if (channel == null) {
404 String displayNumber = channel.getDisplayNumber()
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ddk/
ide.h 177 ULONG Channel;
205 IN ULONG Channel);
  /device/linaro/bootloader/edk2/MdePkg/Include/Protocol/
WiFi.h 235 /// Indicates the minimum time in TU to spend on each channel when scanning. If zero,
240 /// Indicates the maximum time in TU to spend on each channel when scanning. If zero,
270 /// Indicates the lowest channel number in the subband. It has a positive integer
556 /// Indicates the operating class value for the operating channel.
560 /// Indicates the operating channel.
562 UINT8 Channel;
646 /// The first channel number in a subband of supported channels.
664 /// Indicates one or more tuples of (first channel, number of channels).
    [all...]

Completed in 1518 milliseconds

12 3 4 5 6 7