Lines Matching refs:dummy

57 static const char *real_value_hnd(cmd_parms *cmd, void *dummy, const char *name, const char *value,…  in real_value_hnd()  argument
59 php_conf_rec *d = dummy; in real_value_hnd()
62 …phpapdebug((stderr, "Getting %s=%s for %p (%d)\n", name, value, dummy, zend_hash_num_elements(&d->… in real_value_hnd()
77 static const char *php_apache_value_handler(cmd_parms *cmd, void *dummy, const char *name, const ch… in php_apache_value_handler() argument
79 return real_value_hnd(cmd, dummy, name, value, PHP_INI_PERDIR); in php_apache_value_handler()
82 static const char *php_apache_admin_value_handler(cmd_parms *cmd, void *dummy, const char *name, co… in php_apache_admin_value_handler() argument
84 return real_value_hnd(cmd, dummy, name, value, PHP_INI_SYSTEM); in php_apache_admin_value_handler()
87 static const char *real_flag_hnd(cmd_parms *cmd, void *dummy, const char *arg1, const char *arg2, i… in real_flag_hnd() argument
98 return real_value_hnd(cmd, dummy, arg1, bool_val, status); in real_flag_hnd()
101 static const char *php_apache_flag_handler(cmd_parms *cmd, void *dummy, const char *name, const cha… in php_apache_flag_handler() argument
103 return real_flag_hnd(cmd, dummy, name, value, PHP_INI_PERDIR); in php_apache_flag_handler()
106 static const char *php_apache_admin_flag_handler(cmd_parms *cmd, void *dummy, const char *name, con… in php_apache_admin_flag_handler() argument
108 return real_flag_hnd(cmd, dummy, name, value, PHP_INI_SYSTEM); in php_apache_admin_flag_handler()
184 void apply_config(void *dummy) in apply_config() argument
186 php_conf_rec *d = dummy; in apply_config()
224 void *create_php_config(apr_pool_t *p, char *dummy) in create_php_config() argument
228 phpapdebug((stderr, "Creating new config (%p) for %s\n", newx, dummy)); in create_php_config()