allowed_tags     1094 ext/standard/file.c 	char *allowed_tags=NULL;
allowed_tags     1097 ext/standard/file.c 	if (zend_parse_parameters(ZEND_NUM_ARGS(), "r|ls", &fd, &bytes, &allowed_tags, &allowed_tags_len) == FAILURE) {
allowed_tags     1122 ext/standard/file.c 	retval_len = php_strip_tags(retval, actual_len, &stream->fgetss_state, allowed_tags, allowed_tags_len);
allowed_tags      173 ext/standard/filters.c 	const char *allowed_tags;
allowed_tags      179 ext/standard/filters.c static int php_strip_tags_filter_ctor(php_strip_tags_filter *inst, const char *allowed_tags, size_t allowed_tags_len, int persistent)
allowed_tags      181 ext/standard/filters.c 	if (allowed_tags != NULL) {
allowed_tags      182 ext/standard/filters.c 		if (NULL == (inst->allowed_tags = pemalloc(allowed_tags_len, persistent))) {
allowed_tags      185 ext/standard/filters.c 		memcpy((char *)inst->allowed_tags, allowed_tags, allowed_tags_len);
allowed_tags      188 ext/standard/filters.c 		inst->allowed_tags = NULL;
allowed_tags      198 ext/standard/filters.c 	if (inst->allowed_tags != NULL) {
allowed_tags      199 ext/standard/filters.c 		pefree((void *)inst->allowed_tags, inst->persistent);
allowed_tags      220 ext/standard/filters.c 		bucket->buflen = php_strip_tags(bucket->buf, bucket->buflen, &(inst->state), inst->allowed_tags, inst->allowed_tags_len);
allowed_tags     4475 ext/standard/string.c 	char *allowed_tags=NULL;
allowed_tags     4485 ext/standard/string.c 		allowed_tags = Z_STRVAL_P(allow);
allowed_tags     4490 ext/standard/string.c 	ZSTR_LEN(buf) = php_strip_tags_ex(ZSTR_VAL(buf), ZSTR_LEN(str), NULL, allowed_tags, allowed_tags_len, 0);