HomeSort by relevance Sort by last modified time
    Searched refs:channelType (Results 1 - 11 of 11) sorted by null

  /frameworks/base/core/java/android/bluetooth/
BluetoothHealthAppConfiguration.java 60 channelType) {
64 mChannelType = channelType;
148 int channelType = in.readInt();
150 channelType);
BluetoothHealth.java 164 * @param channelType The channel type. Will be one of
172 int channelType, BluetoothHealthCallback callback) {
174 if (!isEnabled() || !checkAppParam(name, role, channelType, callback)) return result;
179 new BluetoothHealthAppConfiguration(name, dataType, role, channelType);
261 BluetoothHealthAppConfiguration config, int channelType) {
265 return mService.connectChannelToSink(device, config, channelType);
555 private boolean checkAppParam(String name, int role, int channelType,
558 (channelType != CHANNEL_TYPE_RELIABLE &&
559 channelType != CHANNEL_TYPE_STREAMING &&
560 channelType != CHANNEL_TYPE_ANY) || callback == null)
    [all...]
IBluetoothHealth.aidl 36 int channelType);
  /external/aac/libPCMutils/include/
pcmutils_lib.h 258 AUDIO_CHANNEL_TYPE channelType[],
  /packages/apps/Bluetooth/src/com/android/bluetooth/hdp/
HealthService.java 161 halRole + " name: " + appConfig.getName() + " channeltype: " +
361 BluetoothHealthAppConfiguration config, int channelType) {
364 return service.connectChannelToSink(device, config, channelType);
432 BluetoothHealthAppConfiguration config, int channelType) {
434 return connectChannel(device, config, channelType);
573 BluetoothHealthAppConfiguration config, int channelType) {
579 HealthChannel chan = new HealthChannel(device, config, channelType);
736 private int convertChannelTypeToHal(int channelType) {
737 if (channelType == BluetoothHealth.CHANNEL_TYPE_RELIABLE) return CHANNEL_TYPE_RELIABLE;
738 if (channelType == BluetoothHealth.CHANNEL_TYPE_STREAMING) return CHANNEL_TYPE_STREAMING
    [all...]
  /external/aac/libPCMutils/src/
pcmutils_lib.cpp 273 const AUDIO_CHANNEL_TYPE channelType[], /* in */
283 FDK_ASSERT(channelType != NULL);
296 switch (channelType[ch]) {
400 AUDIO_CHANNEL_TYPE channelType[], /* out */
409 FDK_ASSERT(channelType != NULL);
415 FDKmemclear(channelType, PCM_DMX_MAX_CHANNELS*sizeof(AUDIO_CHANNEL_TYPE));
440 channelType[0] = ACT_FRONT;
477 channelType[ch] = type;
761 AUDIO_CHANNEL_TYPE channelType[],
813 channelType,
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/platform/audio/
AudioBus.cpp 100 AudioChannel* AudioBus::channelByType(unsigned channelType)
108 if (channelType == ChannelMono || channelType == ChannelLeft)
113 switch (channelType) {
120 switch (channelType) {
129 switch (channelType) {
139 switch (channelType) {
  /external/aac/libAACdec/src/
aacdecoder.h 183 AUDIO_CHANNEL_TYPE channelType[(6)]; /*!< Audio channel type of each output audio channel (from 0 upto numChannels). */
aacdecoder.cpp 727 self->streamInfo.pChannelType = self->channelType;
    [all...]
aacdecoder_lib.cpp 869 self->channelType[0] = ACT_FRONT;
870 self->channelType[1] = ACT_FRONT;
891 self->channelType,
  /external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/channel/
ChannelManager.java 1137 String channelType = tr.readString();
1142 if ("x11".equals(channelType))
1186 if ("forwarded-tcpip".equals(channelType))
1247 log.warning("The peer tried to open an unsupported channel type (" + channelType + ")");
    [all...]

Completed in 794 milliseconds