/external/autotest/server/cros/network/ |
frame_sender.py | 11 def __init__(self, router, frame_type, channel, ssid_prefix=None, 17 @param channel: int targeted channel. 27 self._channel = channel 29 hostap_config.HostapConfig.get_frequency_for_channel(channel))
|
/external/webrtc/talk/media/base/ |
hybriddataengine.h | 56 DataMediaChannel* channel = NULL; local 58 channel = first_->CreateChannel(data_channel_type); 60 if (!channel && second_) { 61 channel = second_->CreateChannel(data_channel_type); 63 return channel;
|
/packages/apps/TV/src/com/android/tv/dvr/ui/ |
DvrRecordConflictFragment.java | 14 import com.android.tv.data.Channel; 47 Channel channel = channelDataManager.getChannel(r.getChannelId()); local 48 if (channel == null) { 51 sb.append(channel.getDisplayName())
|
/packages/apps/TV/src/com/android/tv/util/ |
PipInputManager.java | 28 import com.android.tv.data.Channel; 109 public void onCurrentChannelUnavailable(Channel channel) { } 121 public void onChannelChanged(Channel previousChannel, Channel currentChannel) { 124 // Channel change between channels for tuner inputs. 252 * Returns an PIP input corresponding to {@code channel}. 254 public PipInput getPipInput(Channel channel) { 255 if (channel == null) [all...] |
/packages/apps/TV/tests/common/src/com/android/tv/testing/testinput/ |
ChannelState.java | 26 * Versioned state information for a channel. 31 * The video track a channel has by default. 35 * The video track a channel has by default. 39 * The channel is "tuned" and video available. 94 * An unmodifiable list of TvTrackInfo for a channel, suitable for {@link
|
/prebuilts/tools/common/m2/repository/io/grpc/grpc-auth/0.13.2/ |
grpc-auth-0.13.2.jar | |
/system/bt/bta/av/ |
bta_av_cfg.c | 66 }; /* AVDTP audio transport channel flush timeout */ 101 /* the MTU for the AVRCP browsing channel */ 111 512, /* AVRCP MTU at L2CAP for control channel */ 113 48, /* AVRCP MTU at L2CAP for control channel */ 115 BTA_AV_MAX_RC_BR_MTU, /* AVRCP MTU at L2CAP for browsing channel */ 118 672, /* AVDTP signaling channel MTU at L2CAP */ 119 BTA_AV_MAX_A2DP_MTU, /* AVDTP audio transport channel MTU at L2CAP */ 120 bta_av_audio_flush_to, /* AVDTP audio transport channel flush timeout */ 121 6, /* AVDTP audio channel max data queue size */ 122 BTA_AV_MAX_VDP_MTU, /* AVDTP video transport channel MTU at L2CAP * [all...] |
/system/connectivity/apmanager/ |
device.cc | 180 bool Device::GetHTCapability(uint16_t channel, string* ht_cap) { 181 // Get the band capability based on the channel. 183 if (!GetBandCapability(channel, &band_cap)) { 184 LOG(ERROR) << "No band capability found for channel " << channel; 194 // Supported channel width set. 197 // Determine secondary channel is below or above the primary. 199 if (!GetHTSecondaryChannelLocation(channel, &above)) { 200 LOG(ERROR) << "Unable to determine secondary channel location for " 201 << "channel " << channel [all...] |
device.h | 92 // Get HT and VHT capability string based on the operating channel. 94 // exist for the band the given |channel| is in, false otherwise. 95 virtual bool GetHTCapability(uint16_t channel, std::string* ht_cap); 96 virtual bool GetVHTCapability(uint16_t channel, std::string* vht_cap); 110 // Get the HT secondary channel location base on the primary channel. 111 // Return true and set the output |above| flag if channel is valid, 113 static bool GetHTSecondaryChannelLocation(uint16_t channel, bool* above); 119 // Get the capability for the band the given |channel| is in. Return true 121 // band the given |channel| is in, false otherwise [all...] |
/packages/apps/TV/src/com/android/tv/ |
MainActivity.java | 84 import com.android.tv.data.Channel; 284 private Channel mPipChannel; 308 // keeping the channel unblocking status while TV view is shrunken. 311 private Channel mChannelBeforeShrunkenTvView; 312 private Channel mPipChannelBeforeShrunkenTvView; 370 // Do not update channel banner by this notification 375 Channel channel = mTvView.getCurrentChannel(); 376 if (channel != null && channel.getId() == channelId) 960 Channel channel = Channel.createPassthroughChannel(channelUri); local 964 Channel channel = mChannelDataManager.getChannel(channelId); local 1126 Channel channel = mTvView.getCurrentChannel(); local 1279 final Channel channel = returnChannel; local 1741 final Channel channel = mChannelTuner.getCurrentChannel(); local [all...] |
/external/c-ares/ |
ares_query.c | 72 static struct query* find_query_by_id(ares_channel channel, unsigned short id) 80 list_head = &(channel->queries_by_qid[qid % ARES_QID_TABLE_SIZE]); 97 static unsigned short generate_unique_id(ares_channel channel) 102 id = ares__generate_new_id(&channel->id_key); 103 } while (find_query_by_id(channel, id)); 108 void ares_query(ares_channel channel, const char *name, int dnsclass, 116 rd = !(channel->flags & ARES_FLAG_NORECURSE); 117 status = ares_mkquery(name, dnsclass, type, channel->next_id, rd, &qbuf, 126 channel->next_id = generate_unique_id(channel); [all...] |
/external/e2fsprogs/lib/ext2fs/ |
nt_io.c | 222 static errcode_t nt_open(const char *name, int flags, io_channel *channel); 223 static errcode_t nt_close(io_channel channel); 224 static errcode_t nt_set_blksize(io_channel channel, int blksize); 225 static errcode_t nt_read_blk(io_channel channel, unsigned long block, 227 static errcode_t nt_write_blk(io_channel channel, unsigned long block, 229 static errcode_t nt_flush(io_channel channel); 1075 nt_open(const char *name, int flags, io_channel *channel) 1093 // Allocate channel handle 1179 *channel = io; 1221 nt_close(io_channel channel) [all...] |
/external/e2fsprogs/misc/ |
e2undo.c | 39 static int check_filesystem(TDB_CONTEXT *tdb, io_channel channel) 47 io_channel_set_blksize(channel, SUPERBLOCK_OFFSET); 48 retval = io_channel_read_blk64(channel, 1, -SUPERBLOCK_SIZE, &super); 95 static int set_blk_size(TDB_CONTEXT *tdb, io_channel channel) 115 io_channel_set_blksize(channel, block_size); 125 io_channel channel; local 180 IO_FLAG_EXCLUSIVE | IO_FLAG_RW, &channel); 187 if (!force && check_filesystem(tdb, channel)) { 191 if (set_blk_size(tdb, channel)) { 211 retval = io_channel_write_blk64(channel, blk_num [all...] |
/packages/apps/Bluetooth/src/com/android/bluetooth/opp/ |
BluetoothOppPreference.java | 44 * This class cache Bluetooth device name and channel locally. Its a temp 118 Integer channel = null; local 120 channel = mChannels.get(key); 122 " as " + channel); 124 return (channel != null) ? channel : -1; 137 public void setChannel(BluetoothDevice remoteDevice, int uuid, int channel) { 139 + channel); 140 if (channel != getChannel(remoteDevice, uuid)) { 143 ed.putInt(key, channel); [all...] |
/device/generic/goldfish/qemud/ |
qemud.c | 33 * - the special channel index 0 is used by the emulator and qemud only. 34 * other channel numbers correspond to clients. More specifically, 43 * internal unique channel number > 0, then sends a connection 44 * initiation request to the emulator (i.e. through channel 0): 49 * number corresponding to the channel number. 51 * * in case of success, the emulator responds through channel 0 60 * send the following through channel 0: 72 * * any command sent through channel 0 to the emulator that is 300 #define MAX_EVENTS (MAX_CHANNELS+1) /* each channel + the serial fd */ 647 int channel; member in struct:Packet 1230 int channel; member in struct:Client 1439 int channel = hex2int(p->data+11, 2); local 1455 int channel = hex2int(p->data+11, 2); local 1466 int channel = hex2int(p->data+11, 2); local 1545 int len, channel; local [all...] |
/external/wpa_supplicant_8/src/p2p/ |
p2p_go_neg.c | 66 p2p_info(p2p, "Invalid peer Channel List"); 71 os_memcpy(cl->channel, pos, cl->channels); 177 p2p->cfg->channel); 319 p2p_dbg(p2p, "Omit Operating Channel attribute"); 368 * p2p_reselect_channel - Re-select operating channel based on peer information 370 * @intersection: Support channel list intersection from local and peer 372 * This function is used to re-select the best channel after having received 373 * information from the peer to allow supported channel lists to be intersected. 374 * This can be used to improve initial channel selection done in 393 p2p_dbg(p2p, "Pick own channel preference (reg_class %u channel %u) from intersection" [all...] |
/external/autotest/server/site_tests/network_WiFi_RoamSuspendEndToEnd/ |
network_WiFi_RoamSuspendEndToEnd.py | 27 def _config_ap(self, channel, mode, ssid=None): 30 @param channel: int Wifi channel to conduct test on. 35 ap_config = hostap_config.HostapConfig(channel=channel, mode=mode, 70 # Configure first AP with channel 5 and mode G and default ssid. 79 # Configure second AP with channel 149, mode N and same ssid as before.
|
/external/webrtc/webrtc/modules/audio_processing/aecm/ |
aecm_defines.h | 49 /* Channel parameters */ 51 /* far end energy to compare channel estimates. */ 52 #define MIN_MSE_DIFF 29 /* The ratio between adapted and stored channel to */ 55 #define RESOLUTION_CHANNEL16 12 /* W16 Channel in Q-RESOLUTION_CHANNEL16. */ 56 #define RESOLUTION_CHANNEL32 28 /* W32 Channel in Q-RESOLUTION_CHANNEL. */ 58 /* to update channel. */ 61 #define RESOLUTION_SUPGAIN 8 /* Channel in Q-(RESOLUTION_SUPGAIN). */
|
/external/webrtc/webrtc/tools/e2e_quality/audio/ |
audio_e2e_harness.cc | 48 int channel = base->CreateChannel(); local 49 ASSERT_NE(-1, channel); 52 new VoiceChannelTransport(network, channel)); 68 ASSERT_EQ(0, codec->SetSendCodec(channel, codec_params)); 93 ASSERT_EQ(0, base->StartReceive(channel)); 94 ASSERT_EQ(0, base->StartPlayout(channel)); 95 ASSERT_EQ(0, base->StartSend(channel));
|
/external/webrtc/webrtc/voice_engine/include/ |
voe_network.h | 59 // specified |channel|. Returns -1 in case of an error, 0 otherwise. 60 virtual int RegisterExternalTransport(int channel, Transport& transport) = 0; 63 // specified |channel|. Returns -1 in case of an error, 0 otherwise. 64 virtual int DeRegisterExternalTransport(int channel) = 0; 70 virtual int ReceivedRTPPacket(int channel, 73 virtual int ReceivedRTPPacket(int channel, 84 virtual int ReceivedRTCPPacket(int channel,
|
/packages/apps/TV/res/values/ |
arrays.xml | 29 <!-- The category strings to be displayed in the channel guide for LMP. 48 <!-- The category strings to be displayed in the channel guide for LMP MR1. 78 <item>Customize your channel line-up</item> 88 <!-- Refer to @string/settings_channel_source_item_setup for "Channel sources" menu 90 <item>Set up your newly installed channel sources to customize your channel list. 91 \nChoose the Channel sources within the Settings menu to get started.</item>
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/drm/ |
nouveau_drm.h | 34 int channel; member in struct:drm_nouveau_channel_alloc 48 int channel; member in struct:drm_nouveau_channel_free 52 int channel; member in struct:drm_nouveau_grobj_alloc 58 uint32_t channel; member in struct:drm_nouveau_notifierobj_alloc 65 int channel; member in struct:drm_nouveau_gpuobj_free 139 uint32_t channel; member in struct:drm_nouveau_gem_pushbuf 149 uint32_t channel; member in struct:drm_nouveau_gem_pushbuf_call
|
/system/update_engine/ |
image_properties_android.cc | 38 // Prefs used to store the target channel and powerwash settings. 39 const char kPrefsImgPropChannelName[] = "img-prop-channel-name"; 71 // Brillo images don't have a channel assigned. We stored the name of the 72 // channel where we got the image from in prefs at the time of the update, so 73 // we use that as the current channel if available. During provisioning, there 74 // is no value assigned, so we default to the "stable-channel". 81 current_channel = "stable-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/antlr/antlr-3.4/tool/src/test/java/org/antlr/test/ |
TestAutoAST.java | 43 "WS : (' '|'\\n') {$channel=HIDDEN;} ;\n"; 56 "WS : (' '|'\\n') {$channel=HIDDEN;} ;\n"; 69 "WS : (' '|'\\n') {$channel=HIDDEN;} ;\n"; 82 "WS : (' '|'\\n') {$channel=HIDDEN;} ;\n"; 95 "WS : (' '|'\\n') {$channel=HIDDEN;} ;\n"; 108 "WS : (' '|'\\n') {$channel=HIDDEN;} ;\n"; 121 "WS : (' '|'\\n') {$channel=HIDDEN;} ;\n"; 134 "WS : (' '|'\\n') {$channel=HIDDEN;} ;\n"; 147 "WS : (' '|'\\n') {$channel=HIDDEN;} ;\n"; 160 "WS : (' '|'\\n') {$channel=HIDDEN;} ;\n" [all...] |