Lines Matching refs:c
112 q = (p = url->c) + url->len; in PHP_INI_END()
191 if (bash && bash - url->c == 0) { in PHP_INI_END()
197 smart_str_appendl(dest, url->c, bash - url->c); in PHP_INI_END()
219 if (strncasecmp(ctx->arg.c, ctx->lookup_data, ctx->arg.len) == 0) in tag_arg()
276 if (!strncasecmp(ctx->tag.c, "form", sizeof("form") - 1)) { in handle_form()
279 if (doit && ctx->val.c && ctx->lookup_data && *ctx->lookup_data) { in handle_form()
280 char *e, *p = zend_memnstr(ctx->val.c, "://", sizeof("://") - 1, ctx->val.c + ctx->val.len); in handle_form()
282 e = memchr(p, '/', (ctx->val.c + ctx->val.len) - p); in handle_form()
284 e = ctx->val.c + ctx->val.len; in handle_form()
294 if (!strncasecmp(ctx->tag.c, "fieldset", sizeof("fieldset") - 1)) { in handle_form()
320 ctx->tag.c[i] = tolower((int)(unsigned char)ctx->tag.c[i]); in handle_tag()
321 if (zend_hash_find(ctx->tags, ctx->tag.c, ctx->tag.len, (void **) &ctx->lookup_data) == SUCCESS) in handle_tag()
347 YYCURSOR = ctx->buf.c; in xx_mainloop()
348 YYLIMIT = ctx->buf.c + ctx->buf.len; in xx_mainloop()
913 …scdebug(("stopped in state %d at pos %d (%d:%c) %d\n", STATE, YYCURSOR - ctx->buf.c, *YYCURSOR, *Y… in xx_mainloop()
917 if (rest) memmove(ctx->buf.c, start, rest); in xx_mainloop()
940 return buf.c; in php_url_scanner_adapt_single_url()
954 if (!ctx->result.c) { in url_adapt_ext()
959 smart_str_appendl(&ctx->result, ctx->buf.c, ctx->buf.len); in url_adapt_ext()
963 retval = ctx->result.c; in url_adapt_ext()
964 ctx->result.c = NULL; in url_adapt_ext()
1008 smart_str_appendl(&ctx->result, ctx->buf.c, ctx->buf.len); in php_url_scanner_output_handler()
1011 *handled_output = ctx->result.c; in php_url_scanner_output_handler()
1014 ctx->result.c = NULL; in php_url_scanner_output_handler()
1077 BG(url_adapt_state_ex).form_app.c = BG(url_adapt_state_ex).url_app.c = 0; in PHP_MINIT_FUNCTION()