Searched refs:persistent_script (Results 1 – 5 of 5) sorted by relevance
/PHP-5.6/ext/opcache/ |
H A D | ZendAccelerator.c | 1100 if (persistent_script && !persistent_script->corrupted) { in zend_accel_invalidate() 1543 if (!persistent_script) { 1591 if (persistent_script && persistent_script->corrupted) { 1592 persistent_script = NULL; 1664 if (!persistent_script) { 1685 if (!persistent_script) { 1944 if (persistent_script && !persistent_script->corrupted) { 2073 if (persistent_script && !persistent_script->corrupted) { 2078 return estrndup(persistent_script->full_path, persistent_script->full_path_len); 2095 return estrndup(persistent_script->full_path, persistent_script->full_path_len); [all …]
|
H A D | zend_accelerator_util_funcs.c | 86 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() 1003 *op_array = persistent_script->main_op_array; 1022 persistent_script->full_path) { [all …]
|
H A D | zend_accelerator_util_funcs.h | 32 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 D | zend_accelerator_module.c | 322 zend_persistent_script *persistent_script; in filename_is_in_cache() local 328 persistent_script = zend_accel_hash_find(&ZCSG(hash), filename, filename_len + 1); in filename_is_in_cache() 329 if (persistent_script) { in filename_is_in_cache() 330 return !persistent_script->corrupted && in filename_is_in_cache() 332 validate_timestamp_and_record(persistent_script, &handle TSRMLS_CC) == SUCCESS); in filename_is_in_cache() 337 persistent_script = zend_accel_hash_find(&ZCSG(hash), key, key_length + 1); in filename_is_in_cache() 338 return persistent_script && !persistent_script->corrupted && in filename_is_in_cache() 340 validate_timestamp_and_record(persistent_script, &handle TSRMLS_CC) == SUCCESS); in filename_is_in_cache()
|
H A D | ZendAccelerator.h | 341 int validate_timestamp_and_record(zend_persistent_script *persistent_script, zend_file_handle *fil… 343 int zend_accel_script_optimize(zend_persistent_script *persistent_script TSRMLS_DC);
|
Completed in 20 milliseconds