Lines Matching +full:use +full:- +full:case
2 * Copyright (c) 2010-2011 Atheros Communications Inc.
4 * Permission to use, copy, modify, and/or distribute this software for any
12 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
14 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
57 switch (_info->type) { \
58 case MCI_GPM_COEX_PROFILE_RFCOMM:\
59 _mci->num_other_acl++; \
61 case MCI_GPM_COEX_PROFILE_A2DP: \
62 _mci->num_a2dp++; \
63 if (!_info->edr) \
64 _mci->num_bdr++; \
66 case MCI_GPM_COEX_PROFILE_HID: \
67 _mci->num_hid++; \
69 case MCI_GPM_COEX_PROFILE_BNEP: \
70 _mci->num_pan++; \
72 case MCI_GPM_COEX_PROFILE_VOICE: \
73 case MCI_GPM_COEX_PROFILE_A2DPVO:\
74 _mci->num_sco++; \
82 switch (_info->type) { \
83 case MCI_GPM_COEX_PROFILE_RFCOMM:\
84 _mci->num_other_acl--; \
86 case MCI_GPM_COEX_PROFILE_A2DP: \
87 _mci->num_a2dp--; \
88 if (!_info->edr) \
89 _mci->num_bdr--; \
91 case MCI_GPM_COEX_PROFILE_HID: \
92 _mci->num_hid--; \
94 case MCI_GPM_COEX_PROFILE_BNEP: \
95 _mci->num_pan--; \
97 case MCI_GPM_COEX_PROFILE_VOICE: \
98 case MCI_GPM_COEX_PROFILE_A2DPVO:\
99 _mci->num_sco--; \
106 #define NUM_PROF(_mci) (_mci->num_other_acl + _mci->num_a2dp + \
107 _mci->num_hid + _mci->num_pan + _mci->num_sco)