OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:uc_mgr
(Results
1 - 4
of
4
) sorted by null
/hardware/qcom/audio/legacy/libalsa-intf/
alsa_ucm.h
190
* \param
uc_mgr
Use case manager (may be NULL - card list)
214
int snd_use_case_get_list(snd_use_case_mgr_t *
uc_mgr
,
221
* \param
uc_mgr
Use case manager
272
int snd_use_case_get(snd_use_case_mgr_t *
uc_mgr
,
278
* \param
uc_mgr
Use case manager
287
int snd_use_case_geti(snd_use_case_mgr_t *
uc_mgr
,
293
* \param
uc_mgr
Use case manager
313
int snd_use_case_set(snd_use_case_mgr_t *
uc_mgr
,
319
* \param
uc_mgr
Returned use case manager pointer
323
int snd_use_case_mgr_open(snd_use_case_mgr_t **
uc_mgr
, const char *card_name)
[
all
...]
alsa_ucm.c
100
*
uc_mgr
- UCM structure pointer or NULL for card list
105
int snd_use_case_get_list(snd_use_case_mgr_t *
uc_mgr
,
117
pthread_mutex_lock(&
uc_mgr
->card_ctxt_ptr->card_lock);
118
if ((
uc_mgr
->snd_card_index >= (int)MAX_NUM_CARDS) ||
119
(
uc_mgr
->snd_card_index < 0) || (
uc_mgr
->card_ctxt_ptr == NULL)) {
121
pthread_mutex_unlock(&
uc_mgr
->card_ctxt_ptr->card_lock);
126
while(strncmp(
uc_mgr
->card_ctxt_ptr->verb_list[index],
129
uc_mgr
->card_ctxt_ptr->verb_list[index]);
132
*list = (char ***)
uc_mgr
->card_ctxt_ptr->verb_list
2126
snd_use_case_mgr_t **
uc_mgr
= (snd_use_case_mgr_t **)&
uc_mgr
_ptr;
local
[
all
...]
alsaucm_test.c
48
snd_use_case_mgr_t *
uc_mgr
;
variable
110
if (
uc_mgr
) {
111
snd_use_case_mgr_close(
uc_mgr
);
112
uc_mgr
= NULL;
201
if (
uc_mgr
) {
202
snd_use_case_mgr_close(
uc_mgr
);
203
uc_mgr
= NULL;
206
err = snd_use_case_mgr_open(&
uc_mgr
, identifier);
211
snd_use_case_mgr_wait_for_parsing(
uc_mgr
);
231
if (!
uc_mgr
) {
[
all
...]
msm8960_use_cases.h
296
static int snd_ucm_parse_verb(snd_use_case_mgr_t **
uc_mgr
, const char *file_name, int index);
298
int snd_use_case_mgr_wait_for_parsing(snd_use_case_mgr_t *
uc_mgr
);
299
int snd_use_case_set_case(snd_use_case_mgr_t *
uc_mgr
, const char *identifier,
301
static int get_usecase_type(snd_use_case_mgr_t *
uc_mgr
, const char *usecase);
302
static int parse_single_config_format(snd_use_case_mgr_t **
uc_mgr
, char *current_str, int num_verbs);
308
static int snd_ucm_parse(snd_use_case_mgr_t **
uc_mgr
);
309
static int snd_ucm_parse_section(snd_use_case_mgr_t **
uc_mgr
, char **cur_str, char **nxt_str, int verb_index, int ctrl_list_type);
315
static int snd_ucm_print(snd_use_case_mgr_t *
uc_mgr
);
316
static void snd_ucm_free_mixer_list(snd_use_case_mgr_t **
uc_mgr
);
Completed in 27 milliseconds