Home
last modified time | relevance | path

Searched refs:persistent_script (Results 1 – 5 of 5) sorted by relevance

/PHP-5.5/ext/opcache/
H A DZendAccelerator.c1071 if (persistent_script && !persistent_script->corrupted) { in zend_accel_invalidate()
1510 if (!persistent_script) {
1558 if (persistent_script && persistent_script->corrupted) {
1559 persistent_script = NULL;
1609 if (!persistent_script) {
1630 if (!persistent_script) {
1867 if (persistent_script && !persistent_script->corrupted) {
1996 if (persistent_script && !persistent_script->corrupted) {
2001 return estrndup(persistent_script->full_path, persistent_script->full_path_len);
2018 return estrndup(persistent_script->full_path, persistent_script->full_path_len);
[all …]
H A Dzend_accelerator_util_funcs.c86 return persistent_script; in create_persistent_script()
142 persistent_script->function_table.pDestructor = NULL; in free_persistent_script()
143 persistent_script->class_table.pDestructor = NULL; in free_persistent_script()
146 zend_hash_destroy(&persistent_script->function_table); in free_persistent_script()
147 zend_hash_destroy(&persistent_script->class_table); in free_persistent_script()
149 if (persistent_script->full_path) { in free_persistent_script()
150 efree(persistent_script->full_path); in free_persistent_script()
153 efree(persistent_script); in free_persistent_script()
936 *op_array = persistent_script->main_op_array;
955 persistent_script->full_path) {
[all …]
H A Dzend_accelerator_util_funcs.h32 void free_persistent_script(zend_persistent_script *persistent_script, int destroy_elements);
37 zend_op_array* zend_accel_load_script(zend_persistent_script *persistent_script, int from_shared_me…
H A Dzend_accelerator_module.c314 zend_persistent_script *persistent_script; in filename_is_in_cache() local
320 persistent_script = zend_accel_hash_find(&ZCSG(hash), filename, filename_len + 1); in filename_is_in_cache()
321 if (persistent_script) { in filename_is_in_cache()
322 return !persistent_script->corrupted && in filename_is_in_cache()
324 validate_timestamp_and_record(persistent_script, &handle TSRMLS_CC) == SUCCESS); in filename_is_in_cache()
329 persistent_script = zend_accel_hash_find(&ZCSG(hash), key, key_length + 1); in filename_is_in_cache()
330 return persistent_script && !persistent_script->corrupted && in filename_is_in_cache()
332 validate_timestamp_and_record(persistent_script, &handle TSRMLS_CC) == SUCCESS); in filename_is_in_cache()
H A DZendAccelerator.h333 int validate_timestamp_and_record(zend_persistent_script *persistent_script, zend_file_handle *fil…

Completed in 69 milliseconds