Searched refs:channel (Results 1 - 2 of 2) sorted by relevance

/system/netd/
H A DSoftapController.cpp120 int channel = AP_CHANNEL_DEFAULT; local
126 ALOGE("softap <wlan iface> <SSID> <hidden/broadcast> <channel> <wpa2?-psk|open> <passphrase>");
134 channel = atoi(argv[5]);
135 if (channel <= 0)
136 channel = AP_CHANNEL_DEFAULT;
142 argv[2], argv[3], channel, hidden);
/system/core/include/system/
H A Daudio.h419 audio_channel_mask_t channel_mask; // channel mask
499 static inline bool audio_is_input_channel(audio_channel_mask_t channel) argument
501 if ((channel & ~AUDIO_CHANNEL_IN_ALL) == 0)
502 return channel != 0;
507 static inline bool audio_is_output_channel(audio_channel_mask_t channel) argument
509 if ((channel & ~AUDIO_CHANNEL_OUT_ALL) == 0)
510 return channel != 0;
515 /* Derive an output channel mask from a channel count.
516 * This is to be used when the content channel mas
[all...]

Completed in 172 milliseconds