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

1 2 3 4 5 6 7 8 91011>>

  /system/update_engine/
omaha_request_params.cc 51 // This list has to be sorted from least stable to most stable channel.
52 "canary-channel",
53 "dev-channel",
54 "beta-channel",
55 "stable-channel",
70 // Sanity check the channel names.
72 image_props_.current_channel = "stable-channel";
77 LOG(INFO) << "Running from channel " << image_props_.current_channel;
100 LOG(INFO) << "Disabling deltas as a channel change to "
104 // For now, disable delta updates if the current channel is different fro
    [all...]
omaha_request_params_unittest.cc 109 "CHROMEOS_RELEASE_TRACK=dev-channel\n"
121 EXPECT_EQ("dev-channel", out.target_channel());
131 "CHROMEOS_RELEASE_TRACK=dev-channel\n"
144 EXPECT_EQ("dev-channel", out.target_channel());
153 "CHROMEOS_RELEASE_TRXCK=dev-channel"));
161 // By default, if no channel is set, we should track the stable-channel.
162 EXPECT_EQ("stable-channel", out.target_channel());
170 "CHROMEOS_RELEASE_TRXCK=dev-channel"));
178 EXPECT_EQ("stable-channel", out.target_channel())
    [all...]
  /external/wpa_supplicant_8/wpa_supplicant/
wpas_kay.c 66 static int wpas_get_receive_lowest_pn(void *wpa_s, u32 channel,
69 return wpa_drv_get_receive_lowest_pn(wpa_s, channel, an, lowest_pn);
73 static int wpas_get_transmit_next_pn(void *wpa_s, u32 channel,
76 return wpa_drv_get_transmit_next_pn(wpa_s, channel, an, next_pn);
80 static int wpas_set_transmit_next_pn(void *wpa_s, u32 channel,
83 return wpa_drv_set_transmit_next_pn(wpa_s, channel, an, next_pn);
87 static int wpas_get_available_receive_sc(void *wpa_s, u32 *channel)
89 return wpa_drv_get_available_receive_sc(wpa_s, channel);
107 static int wpas_create_receive_sc(void *wpa_s, u32 channel,
112 return wpa_drv_create_receive_sc(wpa_s, channel, sci->addr, sci->port
    [all...]
  /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...]
  /hardware/qcom/camera/QCamera2/stack/mm-camera-test/src/
mm_qcamera_preview.c 49 mm_camera_channel_t *channel = NULL; local
61 /* find channel */
64 channel = &pme->channels[i];
69 if (NULL == channel) {
70 LOGE("Channel object is NULL ");
75 for (i = 0; i < channel->num_streams; i++) {
76 if (channel->streams[i].s_config.stream_info->stream_type == CAM_STREAM_TYPE_METADATA) {
77 p_stream = &channel->streams[i];
138 mm_camera_channel_t *channel = NULL; local
144 /* find channel */
252 mm_camera_channel_t *channel = NULL; local
327 mm_camera_channel_t *channel = NULL; local
900 mm_camera_channel_t *channel = NULL; local
970 mm_camera_channel_t *channel = NULL; local
1023 mm_camera_channel_t *channel = local
1037 mm_camera_channel_t *channel = NULL; local
1134 mm_camera_channel_t *channel = local
    [all...]
  /libcore/ojluni/src/main/java/java/nio/channels/
SeekableByteChannel.java 32 * A byte channel that maintains a current <i>position</i> and allows the
35 * <p> A seekable byte channel is connected to an entity, typically a file,
38 * {@link #position(long) <i>modified</i>}. The channel also provides access to
39 * the current <i>size</i> of the entity to which the channel is connected. The
45 * channel upon which they are invoked. This allows method invocations to be
57 * Reads a sequence of bytes from this channel into the given buffer.
59 * <p> Bytes are read starting at this channel's current position, and
68 * Writes a sequence of bytes to this channel from the given buffer.
70 * <p> Bytes are written starting at this channel's current position.
72 * the channel is connected is grown, if necessary, to accommodate th
    [all...]
NetworkChannel.java 34 * A channel to a network socket.
36 * <p> A channel that implements this interface is a channel to a network
47 * channel upon which they are invoked. This allows method invocations to be
55 extends Channel
58 * Binds the channel's socket to a local address.
62 * bound until the channel is closed. If the {@code local} parameter has the
70 * @return This channel
77 * If the channel is closed
90 * Returns the socket address that this channel's socket is bound to, o
    [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...]
  /packages/apps/TV/usbtuner/src/com/android/usbtuner/tvinput/
EventDetector.java 51 // To prevent channel duplication
74 public void onEitItemParsed(VctItem channel, List<EitItem> items) {
75 TunerChannel tunerChannel = mChannelMap.get(channel.getProgramNumber());
78 + channel.getProgramNumber());
80 int channelSourceId = channel.getSourceId();
82 // Source id 0 is useful for cases where a cable operator wishes to define a channel for
89 // If at least a one caption track have been found in EIT items for the given channel,
118 public void onVctItemParsed(VctItem channel, List<PmtItem> pmtItems) {
120 Log.d(TAG, "onVctItemParsed VCT " + channel);
125 // tuner channel
    [all...]
  /external/jetty/src/java/org/eclipse/jetty/client/
SelectConnector.java 70 SocketChannel channel = null; local
73 channel = SocketChannel.open();
75 channel.socket().setTcpNoDelay(true);
79 channel.socket().connect(address.toSocketAddress(), _httpClient.getConnectTimeout());
80 channel.configureBlocking(false);
81 _selectorManager.register( channel, destination );
85 channel.configureBlocking(false);
86 channel.connect(address.toSocketAddress());
87 _selectorManager.register(channel,destination);
88 ConnectTimeout connectTimeout = new ConnectTimeout(channel,destination)
214 private final SocketChannel channel; field in class:SelectConnector.ConnectTimeout
    [all...]
  /external/webrtc/webrtc/voice_engine/test/auto_test/
voe_cpu_test.cc 54 int channel(-1);
65 channel = base->CreateChannel();
68 new VoiceChannelTransport(voe_network, channel));
73 CHECK(codec->SetRecPayloadType(channel, isac));
74 CHECK(codec->SetSendCodec(channel, isac));
76 CHECK(base->StartReceive(channel));
77 CHECK(base->StartPlayout(channel));
78 CHECK(base->StartSend(channel));
79 CHECK(file->StartPlayingFileAsMicrophone(channel, _mgr.AudioFilename(),
82 CHECK(codec->SetVADStatus(channel, true))
    [all...]
  /external/wpa_supplicant_8/src/ap/
dfs.c 60 * channel for CSA, unless they are available for immediate use.
80 * The tables contain first valid channel number based on channel width.
81 * We will also choose this first channel as the control one.
215 wpa_printf(MSG_DEBUG, "Adding channel: %d", chan->chan);
263 /* Return start channel idx we will use for mode->channels[idx] */
268 int channel_no = iface->conf->channel;
335 mode->num_channels, channel_no, iface->conf->channel,
341 wpa_printf(MSG_DEBUG, "Available channel: %d",
350 /* At least one channel have radar flag *
354 struct hostapd_channel_data *channel; local
374 struct hostapd_channel_data *channel; local
403 struct hostapd_channel_data *channel; local
621 struct hostapd_channel_data *channel; local
648 struct hostapd_channel_data *channel; local
781 struct hostapd_channel_data *channel; local
822 struct hostapd_channel_data *channel; local
    [all...]
  /external/webrtc/webrtc/modules/audio_coding/codecs/isac/fix/test/QA/
runiSACfixfloat.txt 23 for channel in $CHANNELFILES
27 $ISACFIXFLOAT $INDIR/$channel -m 1 -PLC $INDIR/"$file" $OUTDIR/flfx$index1"$file" >> $LOGFILE
28 $ISACFIXFLOAT $INDIR/$channel -m 2 -PLC $INDIR/"$file" $OUTDIR/fxfl$index1"$file" >> $LOGFILE
38 $ISACFIXFLOAT $INDIR/$channel -m 1 -NB 1 $INDIR/"$file" $OUTDIR/flfxnb1_$index1"$file" >> $LOGFILE
39 $ISACFIXFLOAT $INDIR/$channel -m 2 -NB 1 $INDIR/"$file" $OUTDIR/fxflnb1_$index1"$file" >> $LOGFILE
40 $ISACFIXFLOAT $INDIR/$channel -m 1 -NB 2 -PLC $INDIR/"$file" $OUTDIR/flfxnb2_$index1"$file" >> $LOGFILE
41 $ISACFIXFLOAT $INDIR/$channel -m 2 -NB 2 -PLC $INDIR/"$file" $OUTDIR/fxflnb2_$index1"$file" >> $LOGFILE
  /external/webrtc/webrtc/modules/audio_coding/codecs/isac/main/test/QA/
runiSACfixfloat.txt 23 for channel in $CHANNELFILES
27 $ISACFIXFLOAT $INDIR/$channel -m 1 -PLC $INDIR/"$file" $OUTDIR/flfx$index1"$file" >> $LOGFILE
28 $ISACFIXFLOAT $INDIR/$channel -m 2 -PLC $INDIR/"$file" $OUTDIR/fxfl$index1"$file" >> $LOGFILE
38 $ISACFIXFLOAT $INDIR/$channel -m 1 -NB 1 $INDIR/"$file" $OUTDIR/flfxnb1_$index1"$file" >> $LOGFILE
39 $ISACFIXFLOAT $INDIR/$channel -m 2 -NB 1 $INDIR/"$file" $OUTDIR/fxflnb1_$index1"$file" >> $LOGFILE
40 $ISACFIXFLOAT $INDIR/$channel -m 1 -NB 2 -PLC $INDIR/"$file" $OUTDIR/flfxnb2_$index1"$file" >> $LOGFILE
41 $ISACFIXFLOAT $INDIR/$channel -m 2 -NB 2 -PLC $INDIR/"$file" $OUTDIR/fxflnb2_$index1"$file" >> $LOGFILE
  /packages/apps/TV/usbtuner/res/values-tl/
strings.xml 24 <string name="ut_select_channel_map" msgid="5007263088526410938">"Piliin ang pinagmulan ng iyong channel"</string>
28 <string name="ut_rescan_needed" msgid="6652963050118174284">"Na-update kamakailan ang USB tuner software. Paki-scan muli ang mga channel."</string>
30 <string name="ut_setup_breadcrumb" msgid="3057650688133018018">"Pag-setup ng tuner ng channel"</string>
31 <string name="ut_setup_new_title" msgid="4919412630138697597">"Pag-setup ng USB tuner ng channel"</string>
32 <string name="ut_setup_new_description" msgid="3950618124169419729">"I-verify na nakasaksak at nakakonekta ang USB tuner sa pinagmumulan ng signal ng TV.\n\nKung gumagamit ka ng isang over-the-air na antenna, maaaring kailanganin mong ayusin ang pagkakalagay o ang direksyon nito upang masagap ang pinakamaraming channel. Upang makasagap ng mas maraming channel, ilagay ito sa isang mataas na lugar na malapit sa bintana."</string>
35 <item msgid="7745727658174773453">"Walang makitang channel"</item>
37 <string name="ut_setup_again_title" msgid="7493163856853246710">"Gusto mo bang muling patakbuhin ang pag-setup ng channel?"</string>
38 <string name="ut_setup_again_description" msgid="6974243332718382952">"Kapag isinagawa mo ito, maaalis ang mga channel na nakita mula sa USB tuner at muli itong mag-ii-scan ng mga bagong channel.\n\nI-verify na nakasaksak at nakakonekta ang USB tuner sa pinagmumulan ng signal ng TV.\n\nKung g (…)
    [all...]
  /prebuilts/go/darwin-x86/src/time/
tick.go 9 // A Ticker holds a channel that delivers `ticks' of a clock
12 C <-chan Time // The channel on which the ticks are delivered.
16 // NewTicker returns a new Ticker containing a channel that will send the
25 // Give the channel a 1-element time buffer.
43 // Stop does not close the channel, to prevent a read from the channel succeeding
50 // channel only. While Tick is useful for clients that have no need to shut down
  /prebuilts/go/linux-x86/src/time/
tick.go 9 // A Ticker holds a channel that delivers `ticks' of a clock
12 C <-chan Time // The channel on which the ticks are delivered.
16 // NewTicker returns a new Ticker containing a channel that will send the
25 // Give the channel a 1-element time buffer.
43 // Stop does not close the channel, to prevent a read from the channel succeeding
50 // channel only. While Tick is useful for clients that have no need to shut down
  /system/bt/stack/mcap/
mca_int.h 34 /* INT initiates the L2CAP channel */
58 UINT16 peer_mtu; /* Transport channel L2CAP MTU of the peer */
79 /* control channel states */
90 /* control channel events */
99 MCA_CCB_DL_OPEN_EVT, /* data channel open. */
100 MCA_CCB_LL_OPEN_EVT, /* Lower layer open. This event is sent when the lower layer channel is open. */
101 MCA_CCB_LL_CLOSE_EVT, /* Lower layer close. This event is sent when the lower layer channel is closed. */
103 MCA_CCB_RSP_TOUT_EVT /* time out for waiting the message response on the control channel */
119 /* data channel states */
123 MCA_DCB_OPENING_ST, /* create/reconnect sequence is successful, waiting for data channel connection *
    [all...]
  /frameworks/base/media/jni/soundpool/
SoundPool.cpp 101 void SoundPool::addToRestartList(SoundChannel* channel)
105 mRestart.push_back(channel);
110 void SoundPool::addToStopList(SoundChannel* channel)
114 mStop.push_back(channel);
134 SoundChannel* channel; local
135 ALOGV("Getting channel from stop list");
137 channel = *iter;
140 if (channel != 0) {
142 channel->stop();
149 SoundChannel* channel; local
254 SoundChannel* channel; local
290 SoundChannel* channel = NULL; local
343 SoundChannel* channel = findChannel(channelID); local
354 SoundChannel* channel = &mChannelPool[i]; local
363 SoundChannel* channel = findChannel(channelID); local
374 SoundChannel* channel = &mChannelPool[i]; local
383 SoundChannel* channel = findChannel(channelID); local
396 SoundChannel* channel = findChannel(channelID); local
406 SoundChannel* channel = findChannel(channelID); local
416 SoundChannel* channel = findChannel(channelID); local
426 SoundChannel* channel = findChannel(channelID); local
858 SoundChannel* channel = static_cast<SoundChannel*>((void *)((unsigned long)user & ~1)); local
    [all...]
  /external/autotest/server/cros/ap_configurators/
trendnet692gr_ap_configurator.py 152 def _set_channel(self, channel):
153 position = self._get_channel_popup_position(channel)
154 channel_choices_2GHZ = ['2412MHz (Channel 1)', '2417MHz (Channel 2)',
155 '2422MHz (Channel 3)', '2427MHz (Channel 4)',
156 '2432MHz (Channel 5)', '2437MHz (Channel 6)',
157 '2442MHz (Channel 7)', '2447MHz (Channel 8)'
    [all...]
  /frameworks/base/docs/html/training/tv/tif/
channel.jd 1 page.title=Working with Channel Data
15 <li><a href="#update">Update Channel Data</a></li>
25 <p>Your TV input must provide Electronic Program Guide (EPG) data for at least one channel in its
28 channel and program data on the system database with these considerations in mind.</p>
44 <p>The Android TV system database maintains records of channel data for TV inputs. In your setup
45 activity, for each of your channels, you must map your channel data to the following fields of the
50 channel</li>
51 <li>{@link android.media.tv.TvContract.Channels#COLUMN_DISPLAY_NUMBER} - the displayed channel
54 <li>{@link android.media.tv.TvContract.Channels#COLUMN_SERVICE_TYPE} - the channel's service type</li>
55 <li>{@link android.media.tv.TvContract.Channels#COLUMN_TYPE} - the channel's broadcast standar
    [all...]
  /packages/apps/TV/usbtuner/res/values/
strings.xml 30 <string name="ut_select_channel_map">Select your channel source</string>
33 <!-- Message that says TV failed to change to a channel (or tune) -->
35 <!-- Message that says TV failed to change(or tune) to a channel which has no title -->
41 <!-- Message that says audio of the current channel is not available due to TV device
45 <string name="ut_setup_breadcrumb">Channel tuner setup</string>
46 <!-- Title for USB tuner main setup menu when no channel exists -->
47 <string name="ut_setup_new_title">USB channel tunner setup</string>
48 <!-- Description for USB tuner main setup menu when no channel exists -->
53 <!-- Menu items for USB tuner main setup menu when no channel exists -->
60 <!-- Title for USB tuner main setup menu when channel exists already --
    [all...]
  /packages/apps/TV/tests/func/src/com/android/tv/tests/ui/
LiveChannelsTestCase.java 80 * Send the keys for the channel number of {@code channel} and press the DPAD
83 * <p>Usually this will tune to the given channel.
85 protected void pressKeysForChannel(ChannelInfo channel) {
86 UiDeviceUtils.pressKeys(mDevice, channel.number);
92 * Update the channel state to {@code data} then tune to that channel.
94 * @param data the state to update the channel with.
95 * @param channel the channel to tune t
    [all...]
  /external/llvm/lib/Target/NVPTX/
cl_common_defines.h 8 // Channel order
36 CLK_SNORM_INT8 = 0x10D0, // four channel RGBA unorm8
37 CLK_SNORM_INT16 = 0x10D1, // four channel RGBA unorm16
38 CLK_UNORM_INT8 = 0x10D2, // four channel RGBA unorm8
39 CLK_UNORM_INT16 = 0x10D3, // four channel RGBA unorm16
40 CLK_HALF_FLOAT = 0x10DD, // four channel RGBA half
41 CLK_FLOAT = 0x10DE, // four channel RGBA float
58 __CLK_UNORM_INT8888, // four channel ARGB unorm8
59 __CLK_UNORM_INT8888R, // four channel BGRA unorm8
  /external/mesa3d/src/gallium/drivers/r600/
r600_formats.h 93 /* Find the first non-VOID channel. */
95 if (desc->channel[i].type != UTIL_FORMAT_TYPE_VOID)
103 (desc->channel[i].size == 64 &&
104 desc->channel[i].type == UTIL_FORMAT_TYPE_FLOAT) ||
105 desc->channel[i].type == UTIL_FORMAT_TYPE_FIXED)
108 /* No scaled/norm formats with 32 bits per channel. */
109 if (desc->channel[i].size == 32 &&
110 (desc->channel[i].type == UTIL_FORMAT_TYPE_SIGNED ||
111 desc->channel[i].type == UTIL_FORMAT_TYPE_UNSIGNED))

Completed in 420 milliseconds

1 2 3 4 5 6 7 8 91011>>