Searched defs:directives (Results 1 - 3 of 3) sorted by relevance

/PHP_5_5/Zend/
H A Dzend_ini.c182 HashTable *directives = registered_zend_ini_directives; local
187 * then we should not touch the global directives table,
194 if (directives != EG(ini_directives)) {
195 directives = EG(ini_directives);
201 if (zend_hash_add(directives, p->name, p->name_length, (void*)p, sizeof(zend_ini_entry), (void **) &hashed_ini_entry) == FAILURE) {
/PHP_5_5/ext/opcache/
H A Dzend_accelerator_module.c578 zval *directives,*version,*blacklist; local
591 /* directives */
592 MAKE_STD_ZVAL(directives);
593 array_init(directives);
594 add_assoc_bool(directives, "opcache.enable", ZCG(enabled));
595 add_assoc_bool(directives, "opcache.enable_cli", ZCG(accel_directives).enable_cli);
596 add_assoc_bool(directives, "opcache.use_cwd", ZCG(accel_directives).use_cwd);
597 add_assoc_bool(directives, "opcache.validate_timestamps", ZCG(accel_directives).validate_timestamps);
598 add_assoc_bool(directives, "opcache.inherited_hack", ZCG(accel_directives).inherited_hack);
599 add_assoc_bool(directives, "opcach
[all...]
/PHP_5_5/main/
H A Dmain.c2245 /* Check for deprecated directives */
2251 const char *directives[16]; /* Remember to change this if the number of directives change */ member in struct:__anon1
2252 } directives[2] = { local
2289 const char **p = directives[i].directives;
2295 zend_error(directives[i].error_level, directives[i].phrase, *p);

Completed in 8 milliseconds