Lines Matching refs:p

179 	const zend_ini_entry *p = ini_entry;  in zend_register_ini_entries()  local
199 while (p->name) { in zend_register_ini_entries()
201 …if (zend_hash_add(directives, p->name, p->name_length, (void*)p, sizeof(zend_ini_entry), (void **)… in zend_register_ini_entries()
206 if ((zend_get_configuration_directive(p->name, p->name_length, &default_value)) == SUCCESS) { in zend_register_ini_entries()
218 p++; in zend_register_ini_entries()
231 static int zend_ini_refresh_cache(zend_ini_entry *p, int stage TSRMLS_DC) /* {{{ */ in zend_ini_refresh_cache() argument
233 if (p->on_modify) { in zend_ini_refresh_cache()
234 p->on_modify(p, p->value, p->value_length, p->mh_arg1, p->mh_arg2, p->mh_arg3, stage TSRMLS_CC); in zend_ini_refresh_cache()
551 zend_bool *p; in ZEND_INI_MH() local
560 p = (zend_bool *) (base+(size_t) mh_arg1); in ZEND_INI_MH()
563 *p = (zend_bool) 1; in ZEND_INI_MH()
566 *p = (zend_bool) 1; in ZEND_INI_MH()
569 *p = (zend_bool) 1; in ZEND_INI_MH()
572 *p = (zend_bool) atoi(new_value); in ZEND_INI_MH()
580 long *p; in ZEND_INI_MH() local
589 p = (long *) (base+(size_t) mh_arg1); in ZEND_INI_MH()
591 *p = zend_atol(new_value, new_value_length); in ZEND_INI_MH()
598 long *p, tmp; in ZEND_INI_MH() local
612 p = (long *) (base+(size_t) mh_arg1); in ZEND_INI_MH()
613 *p = tmp; in ZEND_INI_MH()
621 double *p; in ZEND_INI_MH() local
630 p = (double *) (base+(size_t) mh_arg1); in ZEND_INI_MH()
632 *p = zend_strtod(new_value, NULL); in ZEND_INI_MH()
639 char **p; in ZEND_INI_MH() local
648 p = (char **) (base+(size_t) mh_arg1); in ZEND_INI_MH()
650 *p = new_value; in ZEND_INI_MH()
657 char **p; in ZEND_INI_MH() local
670 p = (char **) (base+(size_t) mh_arg1); in ZEND_INI_MH()
672 *p = new_value; in ZEND_INI_MH()