Lines Matching refs:xml_menu

850 																switch_ivr_menu_t ** menu_stack, switch_xml_t xml_menus, switch_xml_t xml_menu)  in switch_ivr_menu_stack_xml_build()  argument
854 if (xml_menu_ctx != NULL && menu_stack != NULL && xml_menu != NULL) { in switch_ivr_menu_stack_xml_build()
855 …const char *menu_name = switch_xml_attr_soft(xml_menu, "name"); /* if the attr doesn't exist, retu… in switch_ivr_menu_stack_xml_build()
856 …const char *greet_long = switch_xml_attr(xml_menu, "greet-long"); /* if the attr doesn't exist, re… in switch_ivr_menu_stack_xml_build()
857 …const char *greet_short = switch_xml_attr(xml_menu, "greet-short"); /* if the attr doesn't exist, … in switch_ivr_menu_stack_xml_build()
858 …const char *invalid_sound = switch_xml_attr(xml_menu, "invalid-sound"); /* if the attr doesn't exi… in switch_ivr_menu_stack_xml_build()
859 …const char *exit_sound = switch_xml_attr(xml_menu, "exit-sound"); /* if the attr doesn't exist, re… in switch_ivr_menu_stack_xml_build()
860 …const char *transfer_sound = switch_xml_attr(xml_menu, "transfer-sound"); /* if the attr doesn't e… in switch_ivr_menu_stack_xml_build()
861 …const char *timeout = switch_xml_attr_soft(xml_menu, "timeout"); /* if the attr doesn't exist, ret… in switch_ivr_menu_stack_xml_build()
862 …const char *max_failures = switch_xml_attr_soft(xml_menu, "max-failures"); /* if the attr doesn't … in switch_ivr_menu_stack_xml_build()
863 const char *max_timeouts = switch_xml_attr_soft(xml_menu, "max-timeouts"); in switch_ivr_menu_stack_xml_build()
864 const char *exec_on_max_fail = switch_xml_attr(xml_menu, "exec-on-max-failures"); in switch_ivr_menu_stack_xml_build()
865 const char *exec_on_max_timeout = switch_xml_attr(xml_menu, "exec-on-max-timeouts"); in switch_ivr_menu_stack_xml_build()
866 const char *confirm_macro = switch_xml_attr(xml_menu, "confirm-macro"); in switch_ivr_menu_stack_xml_build()
867 const char *confirm_key = switch_xml_attr(xml_menu, "confirm-key"); in switch_ivr_menu_stack_xml_build()
868 const char *tts_engine = switch_xml_attr(xml_menu, "tts-engine"); in switch_ivr_menu_stack_xml_build()
869 const char *tts_voice = switch_xml_attr(xml_menu, "tts-voice"); in switch_ivr_menu_stack_xml_build()
870 const char *confirm_attempts = switch_xml_attr_soft(xml_menu, "confirm-attempts"); in switch_ivr_menu_stack_xml_build()
871 const char *digit_len = switch_xml_attr_soft(xml_menu, "digit-len"); in switch_ivr_menu_stack_xml_build()
872 const char *inter_timeout = switch_xml_attr_soft(xml_menu, "inter-digit-timeout"); in switch_ivr_menu_stack_xml_build()
873 const char *pin = switch_xml_attr_soft(xml_menu, "pin"); in switch_ivr_menu_stack_xml_build()
874 const char *prompt_pin_file = switch_xml_attr_soft(xml_menu, "pin-file"); in switch_ivr_menu_stack_xml_build()
875 const char *bad_pin_file = switch_xml_attr_soft(xml_menu, "bad-pin-file"); in switch_ivr_menu_stack_xml_build()
938 …for (xml_kvp = switch_xml_child(xml_menu, "entry"); xml_kvp != NULL && status == SWITCH_STATUS_SUC… in switch_ivr_menu_stack_xml_build()
957 if ((xml_menu = switch_xml_find_child(xml_menus, "menu", "name", param)) != NULL) { in switch_ivr_menu_stack_xml_build()
958 status = switch_ivr_menu_stack_xml_build(xml_menu_ctx, menu_stack, xml_menus, xml_menu); in switch_ivr_menu_stack_xml_build()