HomeSort by relevance Sort by last modified time
    Searched full:channel (Results 51 - 75 of 6114) sorted by null

1 23 4 5 6 7 8 91011>>

  /hardware/qcom/msm8994/original-kernel-headers/linux/
msm_audio_aac.h 46 /* Primary channel on both left and right channels */
48 /* Secondary channel on both left and right channels */
50 /* Primary channel on right channel and 2nd on left channel */
52 /* 2nd channel on right channel and primary on left channel */
  /hardware/qcom/msm8996/original-kernel-headers/linux/
msm_audio_aac.h 46 /* Primary channel on both left and right channels */
48 /* Secondary channel on both left and right channels */
50 /* Primary channel on right channel and 2nd on left channel */
52 /* 2nd channel on right channel and primary on left channel */
  /hardware/qcom/msm8x84/original-kernel-headers/linux/
msm_audio_aac.h 46 /* Primary channel on both left and right channels */
48 /* Secondary channel on both left and right channels */
50 /* Primary channel on right channel and 2nd on left channel */
52 /* 2nd channel on right channel and primary on left channel */
  /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/e2fsprogs/lib/ext2fs/
ext2_io.h 42 errcode_t (*read_error)(io_channel channel,
49 errcode_t (*write_error)(io_channel channel,
74 errcode_t (*open)(const char *name, int flags, io_channel *channel);
75 errcode_t (*close)(io_channel channel);
76 errcode_t (*set_blksize)(io_channel channel, int blksize);
77 errcode_t (*read_blk)(io_channel channel, unsigned long block,
79 errcode_t (*write_blk)(io_channel channel, unsigned long block,
81 errcode_t (*flush)(io_channel channel);
82 errcode_t (*write_byte)(io_channel channel, unsigned long offset,
84 errcode_t (*set_option)(io_channel channel, const char *option
    [all...]
unix_io.c 99 static errcode_t unix_open(const char *name, int flags, io_channel *channel);
100 static errcode_t unix_close(io_channel channel);
101 static errcode_t unix_set_blksize(io_channel channel, int blksize);
102 static errcode_t unix_read_blk(io_channel channel, unsigned long block,
104 static errcode_t unix_write_blk(io_channel channel, unsigned long block,
106 static errcode_t unix_flush(io_channel channel);
107 static errcode_t unix_write_byte(io_channel channel, unsigned long offset,
109 static errcode_t unix_set_option(io_channel channel, const char *option,
111 static errcode_t unix_get_stats(io_channel channel, io_stats *stats)
113 static void reuse_cache(io_channel channel, struct unix_private_data *data
    [all...]
undo_io.c 63 /* The backing io channel */
73 static errcode_t undo_open(const char *name, int flags, io_channel *channel);
74 static errcode_t undo_close(io_channel channel);
75 static errcode_t undo_set_blksize(io_channel channel, int blksize);
76 static errcode_t undo_read_blk64(io_channel channel, unsigned long long block,
78 static errcode_t undo_write_blk64(io_channel channel, unsigned long long block,
80 static errcode_t undo_read_blk(io_channel channel, unsigned long block,
82 static errcode_t undo_write_blk(io_channel channel, unsigned long block,
84 static errcode_t undo_flush(io_channel channel);
85 static errcode_t undo_write_byte(io_channel channel, unsigned long offset
143 io_channel channel; local
    [all...]
  /prebuilts/go/darwin-x86/doc/play/
sieve.go 7 // Send the sequence 2, 3, 4, ... to channel 'ch'.
10 ch <- i // Send 'i' to channel 'ch'.
14 // Copy the values from channel 'in' to channel 'out',
27 ch := make(chan int) // Create a new channel.
  /prebuilts/go/linux-x86/doc/play/
sieve.go 7 // Send the sequence 2, 3, 4, ... to channel 'ch'.
10 ch <- i // Send 'i' to channel 'ch'.
14 // Copy the values from channel 'in' to channel 'out',
27 ch := make(chan int) // Create a new channel.
  /external/webrtc/webrtc/voice_engine/
voe_external_media_impl.cc 15 #include "webrtc/voice_engine/channel.h"
54 int channel,
58 "RegisterExternalMediaProcessing(channel=%d, type=%d, "
60 channel, type, &processObject);
68 voe::ChannelOwner ch = shared_->channel_manager().GetChannel(channel);
69 voe::Channel* channelPtr = ch.channel();
74 "channel");
93 int channel,
96 "DeRegisterExternalMediaProcessing(channel=%d)", channel)
    [all...]
voe_volume_control_impl.cc 15 #include "webrtc/voice_engine/channel.h"
199 int VoEVolumeControlImpl::SetInputMute(int channel, bool enable) {
201 "SetInputMute(channel=%d, enable=%d)", channel, enable);
207 if (channel == -1) {
211 // Mute after demultiplexing <=> affects one channel only
212 voe::ChannelOwner ch = _shared->channel_manager().GetChannel(channel);
213 voe::Channel* channelPtr = ch.channel();
216 "SetInputMute() failed to locate channel");
    [all...]
voe_video_sync_impl.h 24 int SetMinimumPlayoutDelay(int channel, int delayMs) override;
26 int GetDelayEstimate(int channel,
30 int GetLeastRequiredDelayMs(int channel) const override;
32 int SetInitTimestamp(int channel, unsigned int timestamp) override;
34 int SetInitSequenceNumber(int channel, short sequenceNumber) override;
36 int GetPlayoutTimestamp(int channel, unsigned int& timestamp) override;
38 int GetRtpRtcp(int channel,
  /external/chromium-trace/catapult/third_party/apiclient/googleapiclient/
channel.py 0 """Channel notifications support.
3 Classes and functions to support channel subscriptions and notifications
10 - Storing the Channel between calls is up to the caller.
13 Example setting up a channel:
15 # Create a new channel that gets notifications via webhook.
16 channel = new_webhook_channel("https://example.com/my_web_hook")
18 # Store the channel, keyed by 'channel.id'. Store it before calling the
24 bucket="some_bucket_id", body=channel.body()).execute()
25 channel.update(resp
    [all...]
  /frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/
RttServiceTest.java 90 // Create and connect a bi-directional async channel.
92 BidirectionalAsyncChannel channel = new BidirectionalAsyncChannel(); local
93 channel.connect(mLooper.getLooper(), mRttServiceImpl.getMessenger(),
96 channel.assertConnected();
97 return channel;
100 private void sendRangingRequestFailed(BidirectionalAsyncChannel channel, Handler handler,
102 Message message = sendRangingRequest(channel, handler, clientKey, params);
109 private Message sendRangingRequest(BidirectionalAsyncChannel channel, Handler handler,
115 channel.sendMessage(message);
123 private void sendEnableResponderSucceed(BidirectionalAsyncChannel channel,
177 BidirectionalAsyncChannel channel = connectChannel(handler); local
186 BidirectionalAsyncChannel channel = connectChannel(handler); local
196 BidirectionalAsyncChannel channel = connectChannel(handler); local
207 BidirectionalAsyncChannel channel = connectChannel(handler); local
222 BidirectionalAsyncChannel channel = connectChannel(handler); local
231 BidirectionalAsyncChannel channel = connectChannel(handler); local
242 BidirectionalAsyncChannel channel = connectChannel(handler); local
257 BidirectionalAsyncChannel channel = connectChannel(handler); local
270 BidirectionalAsyncChannel channel = connectChannel(handler); local
    [all...]
  /frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/jni/
colorspace.cpp 30 uint8 channel[4]; member in union:Rgba
33 // Channel index constants
48 color.channel[kRed] = clamp(y + static_cast<int>(1.402 * v));
49 color.channel[kGreen] = clamp(y - static_cast<int>(0.344 * u + 0.714 * v));
50 color.channel[kBlue] = clamp(y + static_cast<int>(1.772 * u));
51 color.channel[kAlpha] = 0xFF;
103 color_out.channel[kRed] = color_in.channel[kGreen];
104 color_out.channel[kGreen] = color_in.channel[kBlue]
    [all...]
  /device/google/contexthub/firmware/inc/platform/stm32f4xx/
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...]
  /external/autotest/client/cros/chameleon/
chameleon_usb_audio.py 11 This method also sets the channel map of the link based on the channel
16 'file_type', 'sample_format', 'channel' and 'rate'.
21 'channel': 2,
29 channel_number = playback_configs['channel']
39 This method also sets the channel map of the link based on the channel
44 'file_type', 'sample_format', 'channel' and 'rate'.
49 'channel': 2,
56 channel_number = capture_configs['channel']
    [all...]
  /external/replicaisland/src/com/replica/replicaisland/
ChannelSystem.java 24 private FixedSizeArray<Channel> mChannels;
25 private Channel mSearchDummy;
30 mChannels = new FixedSizeArray<Channel>(CHANNEL_COUNT);
32 mSearchDummy = new Channel();
35 mChannels.add(new Channel());
51 public Channel registerChannel(String name) {
52 Channel result = null;
56 // Add a new channel.
57 assert mRegisteredChannelCount < CHANNEL_COUNT : "Channel pool exhausted!";
72 public class Channel {
    [all...]
  /hardware/libhardware_legacy/qemu/
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...]
  /libcore/ojluni/src/main/java/java/nio/channels/
SocketChannel.java 37 * A selectable channel for stream-oriented connecting sockets.
39 * <p> A socket channel is created by invoking one of the {@link #open open}
40 * methods of this class. It is not possible to create a channel for an arbitrary,
41 * pre-existing socket. A newly-created socket channel is open but not yet
43 * channel will cause a {@link NotYetConnectedException} to be thrown. A
44 * socket channel can be connected by invoking its {@link #connect connect}
45 * method; once connected, a socket channel remains connected until it is
46 * closed. Whether or not a socket channel is connected may be determined by
50 * channel may be created and the process of establishing the link to the
57 * to the asynchronous close operation specified in the {@link Channel} class
    [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...]
  /system/connectivity/shill/
mock_ares.h 32 MOCK_METHOD1(Destroy, void(ares_channel channel));
33 MOCK_METHOD5(GetHostByName, void(ares_channel channel,
38 MOCK_METHOD3(GetSock, int(ares_channel channel,
44 MOCK_METHOD3(ProcessFd, void(ares_channel channel,
47 MOCK_METHOD2(SetLocalDev, void(ares_channel channel,
49 MOCK_METHOD3(Timeout, struct timeval* (ares_channel channel,
52 MOCK_METHOD2(SetServersCsv, int(ares_channel channel,
shill_ares.h 34 virtual void Destroy(ares_channel channel);
37 virtual void GetHostByName(ares_channel channel,
44 virtual int GetSock(ares_channel channel,
54 virtual void ProcessFd(ares_channel channel,
59 virtual void SetLocalDev(ares_channel channel, const char* local_dev_name);
62 virtual struct timeval* Timeout(ares_channel channel,
67 virtual int SetServersCsv(ares_channel channel, const char* servers);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/pulse/
channelmap.h 31 /** \page channelmap Channel Maps
35 * Channel maps provide a way to associate channels in a stream with a
37 * make sure their channel order is identical to the final output.
41 * A channel map consists of an array of \ref pa_channel_position values,
42 * one for each channel. This array is stored together with a channel count
47 * for standard channel mappings:
49 * \li pa_channel_map_init_mono() - Create a channel map with only mono audio.
51 * \li pa_channel_map_init_auto() - Create a standard channel map for a specific number of channels
53 * pa_channel_map_init_auto() but synthesize a channel map if n
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/pulse/
channelmap.h 31 /** \page channelmap Channel Maps
35 * Channel maps provide a way to associate channels in a stream with a
37 * make sure their channel order is identical to the final output.
41 * A channel map consists of an array of \ref pa_channel_position values,
42 * one for each channel. This array is stored together with a channel count
47 * for standard channel mappings:
49 * \li pa_channel_map_init_mono() - Create a channel map with only mono audio.
51 * \li pa_channel_map_init_auto() - Create a standard channel map for a specific number of channels
53 * pa_channel_map_init_auto() but synthesize a channel map if n
    [all...]

Completed in 2692 milliseconds

1 23 4 5 6 7 8 91011>>