Lines Matching refs:form_app
428 if (ZSTR_LEN(ctx->form_app.s) > 0) {
440 smart_str_append_smart_str(&ctx->result, &ctx->form_app);
780 smart_str_appends(&url_state->form_app, "<input type=\"hidden\" name=\"");
781 smart_str_append_smart_str(&url_state->form_app, &hname);
782 smart_str_appends(&url_state->form_app, "\" value=\"");
783 smart_str_append_smart_str(&url_state->form_app, &hvalue);
784 smart_str_appends(&url_state->form_app, "\" />");
816 if (url_state->form_app.s) {
817 ZSTR_LEN(url_state->form_app.s) = 0;
846 smart_str form_app = {0};
881 smart_str_appends(&form_app, "<input type=\"hidden\" name=\"");
882 smart_str_append_smart_str(&form_app, &hname);
883 smart_str_appends(&form_app, "\" value=\"");
884 smart_str_0(&form_app);
925 start = (char *) php_memnstr(ZSTR_VAL(url_state->form_app.s),
926 ZSTR_VAL(form_app.s), ZSTR_LEN(form_app.s),
927 ZSTR_VAL(url_state->form_app.s) + ZSTR_LEN(url_state->form_app.s));
935 limit = ZSTR_VAL(url_state->form_app.s) + ZSTR_LEN(url_state->form_app.s);
936 end = start + ZSTR_LEN(form_app.s);
946 ZSTR_LEN(url_state->form_app.s) - (end - ZSTR_VAL(url_state->form_app.s)));
947 ZSTR_LEN(url_state->form_app.s) -= end - start;
948 ZSTR_VAL(url_state->form_app.s)[ZSTR_LEN(url_state->form_app.s)] = '\0';
952 smart_str_free(&form_app);
1003 smart_str_free(&BG(url_adapt_session_ex).form_app);
1012 smart_str_free(&BG(url_adapt_output_ex).form_app);