/external/webrtc/webrtc/voice_engine/include/ |
voe_external_media.h | 31 virtual void Process(int channel, 56 // media for the specified |channel| and |type|. 58 int channel, 63 // media for the specified |channel| and |type|. 64 virtual int DeRegisterExternalMediaProcessing(int channel, 67 // Pulls an audio frame from the specified |channel| for external mixing. 71 virtual int GetAudioFrame(int channel, 76 virtual int SetExternalMixing(int channel, bool enable) = 0;
|
voe_base.h | 16 // - Multi-channel support (mixing, sending to multiple destinations etc.). 54 virtual void CallbackOnError(int channel, int errCode) = 0; 139 // Creates a new channel and allocates the required resources for it. 140 // One can use |config| to configure the channel. Currently that is used for 142 // Returns channel ID or -1 in case of an error. 146 // Deletes an existing channel and releases the utilized resources. 148 virtual int DeleteChannel(int channel) = 0; 151 // incoming RTP/RTCP packets on the specified |channel|. 152 virtual int StartReceive(int channel) = 0; 154 // Stops receiving incoming RTP/RTCP packets on the specified |channel| [all...] |
/frameworks/base/telephony/java/android/telephony/ |
IccOpenLogicalChannelResponse.java | 28 * Indicates an invalid channel. 33 * Possible status values returned by open channel command. 35 * STATUS_NO_ERROR: Open channel command returned successfully. 38 * STATUS_UNKNOWN_ERROR: Unknown error in open channel command. 54 public IccOpenLogicalChannelResponse(int channel, int status, byte[] selectResponse) { 55 mChannel = channel; 76 * @return the channel id. 128 return "Channel: " + mChannel + " Status: " + mStatus;
|
/hardware/libhardware/include/hardware/ |
bt_sock.h | 37 int channel; member in struct:__anon31236 54 * Listen to a RFCOMM UUID or channel. It returns the socket fd from which 56 * If neither a UUID nor a channel is provided, a channel will be allocated 57 * and a service record can be created providing the channel number to 63 const uint8_t* service_uuid, int channel, int* sock_fd, int flags, int callingUid); 66 * Connect to a RFCOMM UUID channel of remote device, It returns the socket fd from which 72 int channel, int* sock_fd, int flags, int callingUid);
|
/hardware/qcom/camera/QCamera2/stack/mm-camera-test/src/ |
mm_qcamera_rdi.c | 91 mm_camera_channel_t *channel, 142 stream = mm_app_add_stream(test_obj, channel); 176 rc = mm_app_config_stream(test_obj, channel, stream, &stream->s_config); 192 mm_camera_channel_t *channel, 202 stream = mm_app_add_stream(test_obj, channel); 233 rc = mm_app_config_stream(test_obj, channel, stream, &stream->s_config); 244 mm_camera_channel_t *channel = NULL; local 247 channel = mm_app_add_channel(test_obj, 252 if (NULL == channel) { 253 LOGE(" add channel failed") 314 mm_camera_channel_t *channel = NULL; local 336 mm_camera_channel_t *channel = local [all...] |
/prebuilts/go/darwin-x86/src/os/signal/ |
example_test.go | 14 // Set up channel on which to send signal notifications. 15 // We must use a buffered channel or risk missing the signal
|
/prebuilts/go/linux-x86/src/os/signal/ |
example_test.go | 14 // Set up channel on which to send signal notifications. 15 // We must use a buffered channel or risk missing the signal
|
/system/bt/vendor_libs/test_vendor_lib/include/ |
test_channel_transport.h | 27 // Manages communications between test channel and the controller. Mirrors the 28 // HciTransport for the test channel. 35 // Waits for a connection request from the test channel program and 42 // Because it imposes a different flow of work, the test channel must be 46 // Turns the test channel off for use in circumstances where an error occurs 47 // and leaving the channel on would crash Bluetooth (e.g. if the test channel 49 // channel enabled).
|
/tools/test/connectivity/acts/tests/google/wifi/ |
WifiScannerTests.config | 4 "radio0": {"settings": {"channel": 1}, "wifi-iface" : [{"ssid": "Test_1", "key": "hahahaha", "encryption": "psk2"},{"ssid": "Test_1.1", "key": "hahahaha", "encryption": "psk2"}, 6 "radio1": {"settings": {"channel": 40}, "wifi-iface" : [{"ssid": "Test_40", "key": "hahahaha", "encryption": "psk2"},{"ssid": "Test_40.1", "key": "hahahaha", "encryption": "psk2"}, 10 "radio0": {"settings": {"channel": 6}, "wifi-iface" : [{"ssid": "Test_6", "key": "hahahaha", "encryption": "psk"}, {"ssid": "Test_6.1", "key": "hahahaha", "encryption": "psk2"}, 12 "radio1": {"settings": {"channel": 40}, "wifi-iface" : [{"ssid": "Test_40", "key": "hahahaha", "encryption": "psk"}, {"ssid": "Test_40.1", "key": "hahahaha", "encryption": "psk2"}, 16 "radio0": {"settings": {"channel": 10}, "wifi-iface" : [{"ssid": "Test_10", "key": "hahahaha", "encryption": "psk2"}, {"ssid": "Test_10.1", "key": "hahahaha", "encryption": "psk2"}, 18 "radio1": {"settings": {"channel": 44}, "wifi-iface" : [{"ssid": "Test_44", "key": "hahahaha", "encryption": "psk2"}, {"ssid": "Test_44.1", "key": "hahahaha", "encryption": "psk2"}, 22 "radio0": {"settings": {"channel": 11}, "wifi-iface" : [{"ssid": "Test_11", "key": "hahahaha", "encryption": "psk2"}, {"ssid": "Test_11.1", "key": "hahahaha", "encryption": "psk2"}, 24 "radio1": {"settings": {"channel": 149}, "wifi-iface" : [{"ssid": "Test_149", "key": "hahahaha", "encryption": "psk2"}, {"ssid": "Test_149.1", "key": "hahahaha", "encryption": "psk2"},
|
/libcore/ojluni/src/main/java/java/nio/channels/ |
FileChannel.java | 37 * A channel for reading, writing, mapping, and manipulating a file. 39 * <p> A file channel is a {@link SeekableByteChannel} that is connected to 58 * position in a file in a way that does not affect the channel's current 71 * some other channel</i>}, and {@link #transferFrom <i>vice 82 * {@link Channel#close close} method may be invoked at any time, as specified 83 * by the {@link Channel} interface. Only one operation that involves the 84 * channel's position or can change its file's size may be in progress at any 102 * <p> A file channel can be obtained from an 106 * that object's <tt>getChannel</tt> method, which returns a file channel that 107 * is connected to the same underlying file. Where the file channel is obtaine [all...] |
Channel.java | 35 * <p> A channel represents an open connection to an entity such as a hardware 40 * <p> A channel is either open or closed. A channel is open upon creation, 41 * and once closed it remains closed. Once a channel is closed, any attempt to 43 * to be thrown. Whether or not a channel is open may be tested by invoking 56 public interface Channel extends Closeable { 59 * Tells whether or not this channel is open. </p> 61 * @return <tt>true</tt> if, and only if, this channel is open 66 * Closes this channel. 68 * <p> After a channel is closed, any further attempt to invoke I/ [all...] |
ReadableByteChannel.java | 33 * A channel that can read bytes. 35 * <p> Only one read operation upon a readable channel may be in progress at 36 * any given time. If one thread initiates a read operation upon a channel 40 * the type of the channel. </p> 48 public interface ReadableByteChannel extends Channel { 51 * Reads a sequence of bytes from this channel into the given buffer. 53 * <p> An attempt is made to read up to <i>r</i> bytes from the channel, 68 * nature and state of the channel. A socket channel in non-blocking mode, 70 * from the socket's input buffer; similarly, a file channel cannot rea [all...] |
/external/autotest/server/cros/ap_configurators/ |
ap_spec_unittest.py | 23 self.assertEquals(spec.channel, ap_spec.DEFAULT_2GHZ_CHANNEL) 30 self.assertEquals(spec.channel, ap_spec.DEFAULT_2GHZ_CHANNEL) 37 self.assertEquals(spec.channel, ap_spec.DEFAULT_5GHZ_CHANNEL) 45 self.assertEquals(spec.channel, ap_spec.DEFAULT_2GHZ_CHANNEL) 52 self.assertEquals(spec.channel, ap_spec.DEFAULT_5GHZ_CHANNEL) 59 self.assertEquals(spec.channel, ap_spec.DEFAULT_2GHZ_CHANNEL) 63 """Test setting only a 2GHz channel.""" 64 spec = ap_spec.APSpec(channel=ap_spec.DEFAULT_2GHZ_CHANNEL) 70 """Test setting only a 5GHz channel.""" 71 spec = ap_spec.APSpec(channel=ap_spec.DEFAULT_5GHZ_CHANNEL [all...] |
/libcore/ojluni/src/main/java/java/nio/channels/spi/ |
AbstractSelectableChannel.java | 35 * <p> This class defines methods that handle the mechanics of channel 37 * blocking mode of this channel as well as its current set of selection keys. 54 // The provider that created this channel 57 // Keys that have been created by registering this channel with selectors. 58 // They are saved because if this channel is closed the keys must be 81 * Returns the provider that created this channel. 83 * @return The provider that created this channel 163 * Registers this channel with the given selector, returning a selection key. 165 * <p> This method first verifies that this channel is open and that the 168 * <p> If this channel is already registered with the given selector the [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...] |
/packages/apps/TV/src/com/android/tv/data/ |
ChannelLogoFetcher.java | 78 * Fetch the channel logos from TMS data and insert them into TvProvider. 114 private static final class LoadChannelTask extends AsyncDbTask<Void, Void, List<Channel>> { 122 protected List<Channel> doInBackground(Void... arg) { 123 // Load channels which doesn't have channel logos. 136 List<Channel> channels = new ArrayList<>(); 142 channels.add(new Channel.Builder().setId(c.getLong(0)) 151 protected void onPostExecute(List<Channel> channels) { 170 private final List<Channel> mChannels; 172 public FetchLogoTask(Context context, List<Channel> channels) { 180 if (DEBUG) Log.d(TAG, "Fetching the channel logos has been canceled") [all...] |
/external/webrtc/webrtc/voice_engine/ |
voe_base_impl.cc | 22 #include "webrtc/voice_engine/channel.h" 61 // Deliver callback (-1 <=> no channel dependency) 77 // Deliver callback (-1 <=> no channel dependency) 128 // No need to go through the APM, demultiplex the data to each VoE channel, 154 voe::Channel* channel_ptr = ch.channel(); 412 if (channel_owner->channel()->SetEngineInformation( 419 "CreateChannel() failed to associate engine and channel." 420 " Destroying channel."); 422 channel_owner->channel()->ChannelId()) [all...] |
/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/JavaScript/src/org/antlr/runtime/ |
CommonToken.js | 5 this.channel = 0; // org.antlr.runtime.CommonToken.DEFAULT_CHANNEL 18 this.channel = oldToken.getChannel(); 27 this.channel = 0; // org.antlr.runtime.CommonToken.DEFAULT_CHANNEL 31 this.channel = arguments[2]; 81 return this.channel; 84 setChannel: function(channel) { 85 this.channel = channel; 126 if ( this.channel>0 ) { 127 channelStr=",channel="+this.channel [all...] |
/system/bt/stack/avdt/ |
avdt_ad.c | 42 ** Description Derives the TCID from the channel type and SCB. 70 ** Description Derives the channel type from the TCID. 73 ** Returns Channel type value. 87 ** only media channel : tcid=1,2,3,4,5,6... type=1,1,1,1,1,1... 126 ** Description Find adaption layer transport channel table entry matching 130 ** Returns Pointer to matching entry. For control channel it returns 162 /* if control channel, tcid always zero */ 172 /* if other channel, tcid is always > zero */ 197 ** Description Find adaption layer transport channel table entry by LCID. 224 ** Description This function retrieves the transport channel table entr [all...] |
/system/update_engine/ |
common_service_unittest.cc | 72 SetTargetChannel("stable-channel", true, _)) 74 EXPECT_TRUE(common_service_.SetChannel(&error_, "stable-channel", true)); 85 SetTargetChannel("beta-channel", true, _)) 88 EXPECT_TRUE(common_service_.SetChannel(&error_, "beta-channel", true)); 97 SetTargetChannel("foo-channel", true, _)).WillOnce(Return(false)); 99 EXPECT_FALSE(common_service_.SetChannel(&error_, "foo-channel", true)); 108 string channel; local 110 &error_, true /* get_current_channel */, &channel)); 112 EXPECT_EQ("current", channel); 115 &error_, false /* get_current_channel */, &channel)); [all...] |
/external/opencv3/3rdparty/openexr/IlmImf/ |
ImfMultiView.h | 53 // views in an image (see ImfStandardAttributes.h), and channel names 56 // layer.view.channel 95 // Given the name of a channel, return the name of the view to 96 // which it belongs. Returns the empty string ("") if the channel 100 std::string viewFromChannelName (const std::string &channel, 105 // Return whether channel1 and channel2 are the same channel but 106 // viewed in different views. (Return false if either channel 130 // Given the name of a channel, return a list of the same channel 140 // Given the name of a channel in one view, return the correspondin [all...] |
/external/c-ares/ |
ares_search.c | 33 ares_channel channel; member in struct:search_query 52 static int single_domain(ares_channel channel, const char *name, char **s); 54 void ares_search(ares_channel channel, const char *name, int dnsclass, 65 status = single_domain(channel, name, &s); 73 ares_query(channel, s, dnsclass, type, callback, arg); 87 squery->channel = channel; 111 /* If ndots is at least the channel ndots threshold (usually 1), 115 if (ndots >= channel->ndots) 120 ares_query(channel, name, dnsclass, type, search_callback, squery) 147 ares_channel channel = squery->channel; local [all...] |
/packages/apps/TV/src/com/android/tv/menu/ |
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...] |