Lines Matching refs:p

177 	const zend_ini_entry *p = ini_entry;  in zend_register_ini_entries()  local
197 while (p->name) { in zend_register_ini_entries()
199 …if (zend_hash_add(directives, p->name, p->name_length, (void*)p, sizeof(zend_ini_entry), (void **)… in zend_register_ini_entries()
204 if ((zend_get_configuration_directive(p->name, p->name_length, &default_value)) == SUCCESS) { in zend_register_ini_entries()
216 p++; in zend_register_ini_entries()
229 static int zend_ini_refresh_cache(zend_ini_entry *p, int stage TSRMLS_DC) /* {{{ */ in zend_ini_refresh_cache() argument
231 if (p->on_modify) { in zend_ini_refresh_cache()
232 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()
549 zend_bool *p; in ZEND_INI_MH() local
558 p = (zend_bool *) (base+(size_t) mh_arg1); in ZEND_INI_MH()
561 *p = (zend_bool) 1; in ZEND_INI_MH()
564 *p = (zend_bool) 1; in ZEND_INI_MH()
567 *p = (zend_bool) 1; in ZEND_INI_MH()
570 *p = (zend_bool) atoi(new_value); in ZEND_INI_MH()
578 long *p; in ZEND_INI_MH() local
587 p = (long *) (base+(size_t) mh_arg1); in ZEND_INI_MH()
589 *p = zend_atol(new_value, new_value_length); in ZEND_INI_MH()
596 long *p, tmp; in ZEND_INI_MH() local
610 p = (long *) (base+(size_t) mh_arg1); in ZEND_INI_MH()
611 *p = tmp; in ZEND_INI_MH()
619 double *p; in ZEND_INI_MH() local
628 p = (double *) (base+(size_t) mh_arg1); in ZEND_INI_MH()
630 *p = zend_strtod(new_value, NULL); in ZEND_INI_MH()
637 char **p; in ZEND_INI_MH() local
646 p = (char **) (base+(size_t) mh_arg1); in ZEND_INI_MH()
648 *p = new_value; in ZEND_INI_MH()
655 char **p; in ZEND_INI_MH() local
668 p = (char **) (base+(size_t) mh_arg1); in ZEND_INI_MH()
670 *p = new_value; in ZEND_INI_MH()