HomeSort by relevance Sort by last modified time
    Searched refs:channel (Results 476 - 500 of 2925) sorted by null

<<11121314151617181920>>

  /external/webrtc/webrtc/modules/audio_coding/test/
opus_test.h 20 #include "webrtc/modules/audio_coding/test/Channel.h"
34 void Run(TestPackStereo* channel,
  /external/webrtc/webrtc/voice_engine/test/auto_test/fakes/
fake_media_process.h 18 virtual void Process(int channel,
  /external/wpa_supplicant_8/src/ap/
ap_list.h 25 int channel; member in struct:ap_info
  /frameworks/base/services/core/java/com/android/server/wm/
AlertWindowNotification.java 158 NotificationChannel channel = mNotificationManager.getNotificationChannel(mNotificationTag); local
159 if (channel != null) {
162 channel = new NotificationChannel(mNotificationTag, nameChannel, IMPORTANCE_MIN);
163 channel.enableLights(false);
164 channel.enableVibration(false);
165 channel.setBlockableSystem(true);
166 channel.setGroup(sChannelGroup.getId());
167 channel.setBypassDnd(true);
168 mNotificationManager.createNotificationChannel(channel);
  /frameworks/native/libs/vr/libpdx/private/pdx/
service_endpoint.h 14 class Channel;
27 Channel* channel{nullptr};
49 // Set the channel context for the given channel.
50 virtual Status<void> SetChannel(int channel_id, Channel* channel) = 0;
52 // Close a channel, signaling the client file object and freeing the channel
53 // id. Once closed, the client side of the channel always returns the erro
    [all...]
  /hardware/qcom/camera/msm8998/QCamera2/stack/mm-camera-test/src/
mm_qcamera_video.c 38 mm_camera_channel_t *channel = NULL; local
50 /* find channel */
53 channel = &pme->channels[i];
58 if (NULL == channel) {
59 LOGE("Channel object is NULL ");
64 for (i = 0; i < channel->num_streams; i++) {
65 if (channel->streams[i].s_config.stream_info->stream_type == CAM_STREAM_TYPE_METADATA) {
66 p_stream = &channel->streams[i];
128 mm_camera_channel_t *channel = NULL; local
134 /* find channel */
242 mm_camera_channel_t *channel = NULL; local
538 mm_camera_channel_t *channel = NULL; local
    [all...]
  /libcore/ojluni/src/main/java/sun/nio/ch/
Invoker.java 46 // Per-thread object with reference to channel group and a counter for
93 * Returns true if the current thread is in a channel group's thread pool
100 * Returns true if the current thread is in the given channel's thread
164 * Invokes the handler. If the current thread is in the channel group's
168 static <V,A> void invoke(AsynchronousChannel channel,
178 if ((thisGroupAndInvokeCount.group() == ((Groupable)channel).group()))
191 invokeIndirectly(channel, handler, attachment, result, exc);
193 // channel group shutdown; fallback to invoking directly
206 * Invokes the handler indirectly via the channel group's thread pool.
208 static <V,A> void invokeIndirectly(AsynchronousChannel channel,
    [all...]
  /packages/apps/Settings/src/com/android/settings/notification/
SoundPreferenceController.java 114 protected static boolean hasValidSound(NotificationChannel channel) {
115 return channel != null
116 && channel.getSound() != null && !Uri.EMPTY.equals(channel.getSound());
  /packages/apps/TV/src/com/android/tv/menu/
ChannelsPosterPrefetcher.java 32 import com.android.tv.data.api.Channel;
97 Channel channel = item.getChannel(); local
98 if (!ChannelImpl.isValid(channel)) {
101 channel.prefetchImage(
103 Channel.LOAD_IMAGE_TYPE_CHANNEL_LOGO,
106 Program program = mProgramDataManager.getCurrentProgram(channel.getId());
  /packages/apps/TV/src/com/android/tv/ui/
InputBannerView.java 28 import com.android.tv.data.api.Channel;
74 Channel channel = mainActivity.getCurrentChannel(); local
75 if (channel == null || !channel.isPassthrough()) {
79 mainActivity.getTvInputManagerHelper().getTvInputInfo(channel.getInputId());
  /packages/apps/TV/src/com/android/tv/ui/sidepanel/parentalcontrols/
ChannelsBlockedFragment.java 34 import com.android.tv.data.api.Channel;
50 private final List<Channel> mChannels = new ArrayList<>();
51 private long mLastFocusedChannelId = Channel.INVALID_ID;
76 // In order to send tune operation once for continuous channel up/down
78 // we only call the moveToChannel method on ACTION_UP event of channel
84 if (mLastFocusedChannelId != Channel.INVALID_ID) {
135 new Comparator<Channel>() {
137 public int compare(Channel lhs, Channel rhs) {
148 for (Channel channel : mChannels)
    [all...]
  /packages/apps/TV/tuner/src/com/android/tv/tuner/source/
TsDataSourceManager.java 23 import com.android.tv.tuner.data.nano.Channel;
71 * @param channel to play or record
73 * @return {@link TsDataSource} which will provide the specified channel stream
76 Context context, TunerChannel channel, EventDetector.EventListener eventListener) {
77 if (channel.getType() == Channel.TunerType.TYPE_FILE) {
83 if (streamer.startStream(channel)) {
91 context, channel, eventListener, mId, !mIsRecording && mKeepTuneStatus);
  /system/chre/apps/wifi_offload/include/chre/apps/wifi_offload/
channel_histogram.h 27 * A class to keep scan count for each channel. It provides an indexer to access
28 * each channel's scan count with channel number.
40 /* Gets the scaled scan count for a given channel number. All scan counts are
49 bool IncrementScanCountForChannelForTest(uint8_t channel,
  /system/update_engine/
omaha_request_params.h 202 // download channel.
218 // Permanently changes the release channel to |channel|. Performs a
221 // there's a channel change pending already. This is to serialize all the
222 // channel changes done by the user in order to avoid having to solve
225 virtual bool SetTargetChannel(const std::string& channel,
229 // Updates the download channel for this particular attempt from the current
230 // value of target channel. This method takes a "snapshot" of the current
231 // value of target channel and uses it for all subsequent Omaha requests for
246 void set_current_channel(const std::string& channel) {
    [all...]
  /tools/test/connectivity/acts/tests/google/bt/audio_lab/
BtChameleonTest.py 63 channel, audio_to_play):
93 channel=channel,
152 channel = audio_channel_mode_8
162 channel=channel,
213 channel = audio_channel_mode_8
222 channel=channel,
  /tools/test/connectivity/acts/tests/sample/
ConfigurableAccessPointTest.py 37 channel=6, ssid='ImagineYourNetworkHere')
  /frameworks/native/libs/vr/libpdx/
service.cpp 15 std::shared_ptr<Channel> Channel::GetFromMessageInfo(const MessageInfo& info) {
16 return info.channel ? info.channel->shared_from_this()
17 : std::shared_ptr<Channel>();
24 channel_{Channel::GetFromMessageInfo(info)},
379 int flags, const std::shared_ptr<Channel>& channel, int* channel_id) {
382 return svc->PushChannel(this, flags, channel, channel_id);
389 Service* service, int flags, const std::shared_ptr<Channel>& channel
    [all...]
  /external/adhd/scripts/mic_testing/frontend/
analysis.js 20 * Audio channel class
61 this.channel = [];
63 this.channel.push(new AudioChannel(buffers[i]));
150 tdLeft.bgColor = curveBuffer[index].channel[0].curveColor;
153 if (curveBuffer[index].channel.length > 1) {
160 tdRight.bgColor = curveBuffer[index].channel[1].curveColor;
175 * @param {int,string} channel index.
177 this.setVisible = function(checkbox, id, channel) {
179 if (channel == 'all') {
180 for (var i = 0; i < curveBuffer[index].channel.length; i++)
    [all...]
  /external/antlr/antlr-3.4/runtime/Ruby/test/functional/ast-output/
hetero-nodes.rb 24 WS : (' '|'\n') {$channel=HIDDEN;} ;
43 WS : (' '|'\n') {$channel=HIDDEN;} ;
62 WS : (' '|'\n') {$channel=HIDDEN;} ;
81 WS : (' '|'\n') {$channel=HIDDEN;} ;
101 WS : (' '|'\n') {$channel=HIDDEN;} ;
121 WS : (' '|'\n') {$channel=HIDDEN;} ;
141 WS : (' '|'\n') {$channel=HIDDEN;} ;
161 WS : (' '|'\n') {$channel=HIDDEN;} ;
181 WS : (' '|'\n') {$channel=HIDDEN;} ;
214 WS : (' '|'\n') {$channel=HIDDEN;}
    [all...]
  /external/ImageMagick/www/api/
channel.php 55 <p class="text-center"><a href="channel.php#ChannelFxImage">ChannelFxImage</a> &bull; <a href="channel.php#CombineImages">CombineImages</a> &bull; <a href="channel.php#GetImageAlphaChannel">GetImageAlphaChannel</a> &bull; <a href="channel.php#SeparateImage">SeparateImage</a> &bull; <a href="channel.php#SeparateImages">SeparateImages</a> &bull; <a href="channel.php#SetImageAlphaChannel">SetImageAlphaChannel</a></p>
59 <p>ChannelFxImage() applies a channel expression to the specified image. The expression consists of one or more channels, either mnemonic or numeric (e.g. red, 1), separated by actions as follows:</p>
64 <dd> &lt;=&gt; exchange two channels (e.g. red&lt;=&gt;blue) =&gt; copy one channel to another channel (e.g. red=&gt;green) = assign a constant value to a channel (e.g. red=50) , write new image channels in the specified order (e.g. red, green) | ad (…)
    [all...]
  /external/libxaac/decoder/drc_src/
impd_drc_shape_filter.c 243 const WORD32 channel, FLOAT32* audio_in, WORD32 start, WORD32 end) {
258 .audio_in_state_1[channel] -
261 .audio_out_state_1[channel];
262 shape_filter_block->shape_filter[j].audio_in_state_1[channel] = tmp;
263 shape_filter_block->shape_filter[j].audio_out_state_1[channel] =
273 .audio_in_state_1[channel] +
276 .audio_in_state_2[channel] -
279 .audio_out_state_1[channel] -
282 .audio_out_state_2[channel];
283 shape_filter_block->shape_filter[j].audio_in_state_2[channel]
    [all...]
  /development/samples/WiFiDirectServiceDiscovery/src/com/example/android/wifidirect/discovery/
WiFiServiceDiscoveryActivity.java 15 import android.net.wifi.p2p.WifiP2pManager.Channel;
65 private Channel channel; field in class:WiFiServiceDiscoveryActivity
98 channel = manager.initialize(this, getMainLooper(), null);
118 if (manager != null && channel != null) {
119 manager.removeGroup(channel, new ActionListener() {
144 manager.addLocalService(channel, service, new ActionListener() {
168 manager.setDnsSdResponseListeners(channel,
217 manager.addServiceRequest(channel, serviceRequest,
230 manager.discoverServices(channel, new ActionListener()
    [all...]
  /external/ImageMagick/MagickCore/
fx.c 51 #include "MagickCore/channel.h"
260 % o channel: the channel type.
368 PixelChannel channel=GetPixelChannelChannel(image,i); local
369 PixelTrait traits=GetPixelChannelTraits(image,channel);
370 PixelTrait noise_traits=GetPixelChannelTraits(noise_image,channel);
377 SetPixelChannel(noise_image,channel,p[i],q);
380 SetPixelChannel(noise_image,channel,ClampToQuantum(
3166 PixelChannel channel=GetPixelChannelChannel(image,i); local
3371 PixelChannel channel=GetPixelChannelChannel(image,i); local
3596 PixelChannel channel=GetPixelChannelChannel(morph_image,i); local
3800 PixelChannel channel=GetPixelChannelChannel(image,i); local
3823 PixelChannel channel=GetPixelChannelChannel(image,i); local
3852 PixelChannel channel=GetPixelChannelChannel(image,i); local
3876 PixelChannel channel=GetPixelChannelChannel(image,i); local
3903 PixelChannel channel=GetPixelChannelChannel(image,i); local
4558 PixelChannel channel=GetPixelChannelChannel(image,i); local
4721 PixelChannel channel=GetPixelChannelChannel(image,i); local
5220 PixelChannel channel=GetPixelChannelChannel(image,i); local
5433 PixelChannel channel=GetPixelChannelChannel(image,i); local
5837 channel; local
    [all...]
  /libcore/luni/src/test/java/libcore/java/nio/channels/
DatagramChannelTest.java 175 // Assert that we can read back the option from the channel...
198 DatagramChannel channel = DatagramChannel.open(); local
199 channel.bind(socketAddress);
201 ((InetSocketAddress)(channel.getLocalAddress())).getAddress());
202 assertTrue(((InetSocketAddress)(channel.getLocalAddress())).getPort() > 0);
205 channel.bind(socketAddress);
211 ((InetSocketAddress)(channel.getLocalAddress())).getPort());
217 channel.close();
220 channel.bind(socketAddress);
242 try (DatagramChannel channel = DatagramChannel.open(StandardProtocolFamily.INET))
    [all...]
  /packages/apps/TV/src/com/android/tv/recommendation/
NotificationService.java 50 import com.android.tv.data.api.Channel;
107 private Channel mPlayingChannel;
131 mNotificationChannels[i] = Channel.INVALID_ID;
165 public void onCurrentChannelChange(@Nullable Channel channel) {
167 mPlayingChannel = channel;
199 private void handleUpdateRecommendation(int notificationId, Channel channel) {
200 if (mNotificationChannels[notificationId] == Channel.INVALID_ID
201 || !sendNotification(channel.getId(), notificationId))
355 final Channel channel = cr.getChannel(); local
    [all...]

Completed in 707 milliseconds

<<11121314151617181920>>