Lines Matching defs:auto_switch
39 "auto_switch=<Switch between hsp and a2dp profile? (0 - never, 1 - media.role=phone, 2 - heuristic> "
44 "auto_switch",
51 uint32_t auto_switch;
225 if (u->auto_switch != 2)
420 u->auto_switch = 1;
422 if (pa_modargs_get_value(ma, "auto_switch", NULL)) {
425 /* auto_switch originally took a boolean value, let's keep
427 if (pa_modargs_get_value_boolean(ma, "auto_switch", &auto_switch_bool) >= 0) {
429 u->auto_switch = 1;
431 u->auto_switch = 0;
433 } else if (pa_modargs_get_value_u32(ma, "auto_switch", &u->auto_switch) < 0) {
434 pa_log("Failed to parse auto_switch argument.");
459 if (u->auto_switch) {