Lines Matching refs:varname
63 static void normalize_protected_variable(char *varname) /* {{{ */ in normalize_protected_variable() argument
65 char *s = varname, *index = NULL, *indexend = NULL, *p; in normalize_protected_variable()
73 if (s != varname) { in normalize_protected_variable()
74 memmove(varname, s, strlen(s)+1); in normalize_protected_variable()
77 for (p = varname; *p && *p != '['; p++) { in normalize_protected_variable()
87 index = strchr(varname, '['); in normalize_protected_variable()
121 static void add_protected_variable(char *varname) /* {{{ */ in add_protected_variable() argument
123 normalize_protected_variable(varname); in add_protected_variable()
124 zend_hash_str_add_empty_element(&PG(rfc1867_protected_variables), varname, strlen(varname)); in add_protected_variable()
128 static bool is_protected_variable(char *varname) /* {{{ */ in is_protected_variable() argument
130 normalize_protected_variable(varname); in is_protected_variable()
131 return zend_hash_str_exists(&PG(rfc1867_protected_variables), varname, strlen(varname)); in is_protected_variable()