Searched defs:script (Results 1 - 7 of 7) sorted by relevance
| /PHP_TRUNK/sapi/caudium/ |
| H A D | caudium.c | 109 /* Defines to get to the data supplied when the script is started. */ 561 * "executes" the script 701 struct pike_string *script; local 709 get_all_args("PHP5.Interpreter->run", args, "%S%m%O%*", &script, 715 add_ref(script); 719 THIS->filename = script;
|
| /PHP_TRUNK/sapi/roxen/ |
| H A D | roxen.c | 78 /* Defines to get to the data supplied when the script is started. */ 154 /* To avoid executing a PHP script from a PHP callback, which would 156 * php-script is the same as the current thread, it fails. 511 * php_roxen_hash_environment() populates the php script environment 513 * the HTTP header data, so that a script can access these. 571 * "executes" the script 612 struct pike_string *script, *ind; local 620 php_error(E_WARNING, "PHP5.Interpreter->run: Tried to run a PHP-script from a PHP " 622 get_all_args("PHP5.Interpreter->run", args, "%S%m%O%*", &script, 633 THIS->filename = script [all...] |
| /PHP_TRUNK/ext/pcre/pcrelib/ |
| H A D | pcre_internal.h | 62 "configure" script ensures this, but not everybody uses "configure". */ 83 script prevents both being selected, but not everybody uses "configure". */ 2710 pcre_uint8 script; /* ucp_Arabic, etc. */ member in struct:__anon7 2736 #define UCD_SCRIPT(ch) GET_UCD(ch)->script
|
| /PHP_TRUNK/ext/opcache/ |
| H A D | zend_accelerator_module.c | 52 ZEND_ARG_INFO(0, script) 471 zend_persistent_script *script; local 477 script = (zend_persistent_script *)cache_entry->data; 481 add_assoc_stringl(persistent_script_report, "full_path", script->full_path, script->full_path_len, 1); 482 add_assoc_long(persistent_script_report, "hits", script->dynamic_members.hits); 483 add_assoc_long(persistent_script_report, "memory_consumption", script->dynamic_members.memory_consumption); 484 ta = localtime(&script->dynamic_members.last_used); 489 add_assoc_long(persistent_script_report, "last_used_timestamp", script->dynamic_members.last_used); 491 add_assoc_long(persistent_script_report, "timestamp", (long)script [all...] |
| H A D | zend_persist.c | 668 zend_persistent_script *zend_accel_script_persist(zend_persistent_script *script, char **key, unsigned int key_length TSRMLS_DC) argument 671 zend_hash_persist(&script->function_table, (zend_persist_func_t) zend_persist_op_array, sizeof(zend_op_array) TSRMLS_CC); 672 zend_accel_persist_class_table(&script->class_table TSRMLS_CC); 673 zend_persist_op_array_ex(&script->main_op_array, script TSRMLS_CC); 675 zend_accel_store(script->full_path, script->full_path_len + 1); 676 zend_accel_store(script, sizeof(zend_persistent_script)); 678 return script; 681 int zend_accel_script_persistable(zend_persistent_script *script) argument [all...] |
| /PHP_TRUNK/ext/opcache/Optimizer/ |
| H A D | zend_optimizer.c | 119 zend_persistent_script *script,
154 optimize_func_calls(op_array, script TSRMLS_CC);
184 zend_persistent_script *script,
228 zend_optimize(op_array, script, constants TSRMLS_CC);
270 int zend_accel_script_optimize(zend_persistent_script *script TSRMLS_DC)
275 zend_accel_optimize(&script->main_op_array, script, &constants TSRMLS_CC);
277 p = script->function_table.pListHead;
280 zend_accel_optimize(op_array, script, &constants TSRMLS_CC);
284 p = script 118 zend_optimize(zend_op_array *op_array, zend_persistent_script *script, HashTable **constants TSRMLS_DC) argument 183 zend_accel_optimize(zend_op_array *op_array, zend_persistent_script *script, HashTable **constants TSRMLS_DC) argument [all...] |
| /PHP_TRUNK/Zend/ |
| H A D | zend_language_scanner.c | 283 static const zend_encoding *zend_multibyte_detect_utf_encoding(const unsigned char *script, size_t script_size TSRMLS_DC) argument 290 p = script; 291 while ((p-script) < script_size) { 292 p = memchr(p, 0, script_size-(p-script)-2); 306 p = script; 307 while ((p-script) < script_size) { 365 /* script contains NULL bytes -> auto-detection */ 471 /* both script and internal encodings are incompatible w/ flex */ 518 zend_error_noreturn(E_COMPILE_ERROR, "Could not convert the script from the detected " 686 zend_error_noreturn(E_COMPILE_ERROR, "Could not convert the script fro [all...] |
Completed in 17 milliseconds