Lines Matching refs:varname
85 static void normalize_protected_variable(char *varname) /* {{{ */ in normalize_protected_variable() argument
87 char *s = varname, *index = NULL, *indexend = NULL, *p; in normalize_protected_variable()
95 if (s != varname) { in normalize_protected_variable()
96 memmove(varname, s, strlen(s)+1); in normalize_protected_variable()
99 for (p = varname; *p && *p != '['; p++) { in normalize_protected_variable()
109 index = strchr(varname, '['); in normalize_protected_variable()
143 static void add_protected_variable(char *varname) /* {{{ */ in add_protected_variable() argument
145 normalize_protected_variable(varname); in add_protected_variable()
146 zend_hash_str_add_empty_element(&PG(rfc1867_protected_variables), varname, strlen(varname)); in add_protected_variable()
150 static bool is_protected_variable(char *varname) /* {{{ */ in is_protected_variable() argument
152 normalize_protected_variable(varname); in is_protected_variable()
153 return zend_hash_str_exists(&PG(rfc1867_protected_variables), varname, strlen(varname)); in is_protected_variable()