| /PHP_TRUNK/ext/skeleton/ |
| H A D | skeleton.php | 14 $function = 'confirm_' . $module . '_compiled'; variable 16 $str = $function($module);
|
| /PHP_TRUNK/sapi/fpm/fpm/ |
| H A D | fpm_php_trace.c | 72 long function; local 77 if (0 > fpm_trace_get_long(execute_data + offsetof(zend_execute_data, function_state.function), &l)) { 81 function = l; 83 if (valid_ptr(function)) { 84 if (0 > fpm_trace_get_strz(buf, buf_size, function + offsetof(zend_function, common.function_name))) {
|
| H A D | zlog.c | 101 void zlog_ex(const char *function, int line, int flags, const char *fmt, ...) /* {{{ */ argument 133 len += snprintf(buf, buf_size, "[%s] %s(), line %d: ", level_names[flags & ZLOG_LEVEL_MASK], function, line); 146 len += snprintf(buf + len, buf_size - len, "%s: pid %d, %s(), line %d: ", level_names[flags & ZLOG_LEVEL_MASK], getpid(), function, line); 148 len += snprintf(buf + len, buf_size - len, "%s: %s(), line %d: ", level_names[flags & ZLOG_LEVEL_MASK], function, line);
|
| /PHP_TRUNK/scripts/dev/generate-phpt/src/ |
| H A D | generate-phpt.php | 60 $function = new gtFunction($name); variable 61 $function->setArgumentNames(); 62 $function->setArgumentLists(); 63 $function->setInitialisationStatements(); 73 $testCase->setFunction($function); 86 $testCase->setFunction($function); 101 $testCaseContainer->setFunction($function);
|
| H A D | gtFunction.php | 4 * Class reperesents a single PHP function. 12 * Set the name of the name of the function 16 public function __construct($functionName) { 22 * Get the names of function argments and initialise mandatory and optional argument arrays 25 public function setArgumentNames() { 26 $function= new ReflectionFunction($this->functionName); variable 28 foreach ($function->getParameters() as $i => $param) { 39 * Return the name of the function 43 public function getName() {
|
| /PHP_TRUNK/scripts/dev/generate-phpt/src/setup/preconditions/ |
| H A D | gtIsValidFunction.php | 4 * Check that the function name is valid 9 public function check( $clo) { 11 $function = $clo->getOption('f'); variable 13 if( in_array( $function, $functions['internal'] ) ) { 21 public function getMessage() {
|
| /PHP_TRUNK/scripts/dev/generate-phpt/src/testcase/ |
| H A D | gtVariationContainerFunction.php | 8 protected $function; variable 11 public function __construct($osl) { 16 * Sets function being tested 18 * @param gtFunction $function 20 public function setFunction(gtFunction $function) { 21 $this->function = $function; variable 29 public function constructAll() { 32 $numberOfArguments = count($this->function [all...] |
| /PHP_TRUNK/ext/dba/ |
| H A D | dba_db4.c | 51 const char *function = get_active_function_name(TSRMLS_C); local 52 if (function && (!strcmp(function,"dba_popen") || !strcmp(function,"dba_open"))
|
| /PHP_TRUNK/ext/pdo/ |
| H A D | php_pdo_driver.h | 96 PDO_FETCH_FUNC, /* fetch into function and return its result */ 286 to prefix the function names using the PDO driver name; this will 453 /* if true, the handle has been closed and will not function anymore */ 616 zval *function; member in struct:_pdo_stmt_t::__anon144::__anon146 636 /* For the convenience of drivers, this function will parse a data source
|
| /PHP_TRUNK/ext/soap/ |
| H A D | php_sdl.c | 41 static void delete_function(void *function); 42 static void delete_function_persistent(void *function); 905 sdlFunctionPtr function; local 946 function = emalloc(sizeof(sdlFunction)); 947 memset(function, 0, sizeof(sdlFunction)); 948 function->functionName = estrdup((char*)op_name->children->content); 980 function->bindingAttributes = (void *)soapFunctionBinding; 991 function->requestParameters = wsdl_message(&ctx, message->children->content); 996 function->requestName = estrdup(name->children->content); 1000 function 3532 sdlFunctionPtr function = *((sdlFunctionPtr*)data); local 3571 sdlFunctionPtr function = *((sdlFunctionPtr*)data); local [all...] |
| H A D | soap.c | 38 sdlFunctionPtr function; member in struct:_soapHeader 49 static void function_to_string(sdlFunctionPtr function, smart_str *buf); 55 static void soap_server_fault_ex(sdlFunctionPtr function, zval* fault, soapHeader* hdr TSRMLS_DC); 57 static sdlParamPtr get_param(sdlFunctionPtr function, char *param_name, int index, int); 62 static xmlDocPtr serialize_response_call(sdlFunctionPtr function, char *function_name,char *uri,zval *ret, soapHeader *headers, int version TSRMLS_DC); 63 static xmlDocPtr serialize_function_call(zval *this_ptr, sdlFunctionPtr function, char *function_name, char *uri, zval **arguments, int arg_count, int version, HashTable *soap_headers TSRMLS_DC); 1247 php_error_docref(NULL TSRMLS_CC, E_WARNING, "Tried to set persistence when you are using you SOAP SERVER in function mode, no persistence needed"); 1415 php_error_docref(NULL TSRMLS_CC, E_WARNING, "Tried to add a function that isn't a string"); 1424 php_error_docref(NULL TSRMLS_CC, E_WARNING, "Tried to add a non existant function '%s'", Z_STRVAL_PP(tmp_function)); 1446 php_error_docref(NULL TSRMLS_CC, E_WARNING, "Tried to add a non existant function ' 1492 sdlFunctionPtr function; local 2053 soap_server_fault_ex(sdlFunctionPtr function, zval* fault, soapHeader *hdr TSRMLS_DC) argument 2613 do_soap_call(zval* this_ptr, char* function, int function_len, int arg_count, zval** real_args, zval* return_value, char* location, char* soap_action, char* call_uri, HashTable* soap_headers, zval* output_headers TSRMLS_DC) argument 2837 char *function, *location=NULL, *soap_action = NULL, *uri = NULL; local 2957 sdlFunctionPtr *function; local 3286 deserialize_parameters(xmlNodePtr params, sdlFunctionPtr function, int *num_params, zval ***parameters TSRMLS_DC) argument 3383 sdlFunctionPtr function; local 3415 sdlFunctionPtr function; local 3672 serialize_response_call2(xmlNodePtr body, sdlFunctionPtr function, char *function_name, char *uri, zval *ret, int version, int main TSRMLS_DC) argument 3775 serialize_response_call(sdlFunctionPtr function, char *function_name, char *uri, zval *ret, soapHeader* headers, int version TSRMLS_DC) argument 4129 serialize_function_call(zval *this_ptr, sdlFunctionPtr function, char *function_name, char *uri, zval **arguments, int arg_count, int version, HashTable *soap_headers TSRMLS_DC) argument 4414 get_param(sdlFunctionPtr function, char *param_name, int index, int response) argument 4531 function_to_string(sdlFunctionPtr function, smart_str *buf) argument [all...] |
| /PHP_TRUNK/ext/filter/ |
| H A D | filter.c | 37 void (*function)(PHP_INPUT_FILTER_PARAM_DECL); member in struct:filter_list_entry 391 filter_func.function(*value, flags, options, charset TSRMLS_CC); 435 case PARSE_STRING: /* PARSE_STRING is used by parse_str() function */ 776 * the function: normally when validation fails false is returned, and 849 * the function: normally when validation fails false is returned, and
|
| /PHP_TRUNK/ext/pcre/ |
| H A D | php_pcre.c | 858 static int preg_do_repl_func(zval *function, char *subject, int *offsets, char **subpat_names, int count, char **result TSRMLS_DC) argument 861 zval **args[1]; /* Argument to pass to function */ 876 if (call_user_function_ex(EG(function_table), NULL, function, &retval_ptr, 1, args, 0, NULL TSRMLS_CC) == SUCCESS && retval_ptr) { 883 php_error_docref(NULL TSRMLS_CC, E_WARNING, "Unable to call custom replacement function"); 1017 function-returned string */ 1032 *eval_result, /* Result of eval or custom function */ 1120 /* Use custom function to get replacement string and its length. */ 1159 /* If evaluating or using custom function, copy result to the buffer 1350 /* Get function parameters and do error-checking. */ 1468 /* Get function parameter [all...] |
| /PHP_TRUNK/Zend/ |
| H A D | zend_API.c | 44 /* this function doesn't check for too many parameters */ 120 /* this function doesn't check for too many parameters */ 770 zend_function *active_function = EG(current_execute_data)->function_state.function; 790 zend_function *active_function = EG(current_execute_data)->function_state.function; 813 zend_function *active_function = EG(current_execute_data)->function_state.function; 1036 /* This function should be called after the constructor has been called 1173 /* This function requires 'properties' to contain all props declared in the 1970 /* we don't care if the function name is longer, in fact lowercasing only 2026 /* registers all functions in *library_functions in the function hash */ 2030 zend_function function, *reg_functio local [all...] |
| H A D | zend_language_parser.y | 162 %token T_FUNCTION "function (T_FUNCTION)" 380 function is_reference T_STRING { zend_do_begin_function_declaration(&$1, &$3, 0, $2.op_type, NULL TSRMLS_CC); } 593 | method_modifiers function is_reference T_STRING { zend_do_begin_function_declaration(&$2, &$4, 1, $3.op_type, &$1 TSRMLS_CC); } 812 | function is_reference { zend_do_begin_lambda_function_declaration(&$$, &$1, $2.op_type, 0 TSRMLS_CC); } 815 | T_STATIC function is_reference { zend_do_begin_lambda_function_declaration(&$$, &$2, $3.op_type, 1 TSRMLS_CC); } 836 function: label
|
| H A D | zend_compile.h | 204 /* function flag for internal user call handlers __call, __callstatic */ 334 #define ZEND_FN_SCOPE_NAME(function) ((function) && (function)->common.scope ? (function)->common.scope->name : "") 356 zend_function *function; member in struct:_zend_function_state 648 ZEND_API void function_add_ref(zend_function *function); 667 ZEND_API int zend_cleanup_function_data(zend_function *function TSRMLS_DC); 668 ZEND_API int zend_cleanup_function_data_full(zend_function *function TSRMLS_DC); 670 ZEND_API void destroy_zend_function(zend_function *function TSRMLS_D [all...] |
| H A D | zend_compile.c | 349 /* Is used while compiling a function, using the context to keep track 389 /* we already have function name as last literal (do nothing) */ 416 /* we already have function name as last literal (do nothing) */ 449 /* we already have function name as last literal (do nothing) */ 483 /* we already have function name as last literal (do nothing) */ 711 /* the default mode must be Write, since fetch_simple_variable() is used to define function arguments */ 887 zend_error(E_COMPILE_ERROR, "%s function %s::%s() cannot be declared private", method_type, CG(active_class_entry)->name, function_name->u.constant.value.str.val); 896 /* we had code in the function body */ 897 zend_error(E_COMPILE_ERROR, "%s function %s::%s() cannot contain body", method_type, CG(active_class_entry)->name, function_name->u.constant.value.str.val); 1283 zend_error(E_COMPILE_ERROR, "Can't use function retur 1936 zend_function *function; local 2983 function_add_ref(zend_function *function) argument 3004 zend_function *function, *new_function; local 3106 do_inherit_method(zend_function *function) argument 4430 zend_function *function; local [all...] |
| H A D | zend_opcode.c | 112 ZEND_API void destroy_zend_function(zend_function *function TSRMLS_DC) 114 switch (function->type) { 116 destroy_op_array((zend_op_array *) function TSRMLS_CC); 124 ZEND_API void zend_function_dtor(zend_function *function) argument 128 destroy_zend_function(function TSRMLS_CC); 138 ZEND_API int zend_cleanup_function_data(zend_function *function TSRMLS_DC) 140 if (function->type == ZEND_USER_FUNCTION) { 141 zend_cleanup_op_array_data((zend_op_array *) function); 148 ZEND_API int zend_cleanup_function_data_full(zend_function *function TSRMLS_DC) 150 if (function [all...] |
| /PHP_TRUNK/ext/reflection/ |
| H A D | php_reflection.c | 900 string_printf(str, "function "); 907 /* The information where a function is declared is only available for user classes */ 1120 php_error_docref(NULL TSRMLS_CC, E_WARNING, "Internal error: Cannot find extension function %s in global function table", func->fname); 1268 static void reflection_function_factory(zend_function *function, zval *closure_object, zval *object TSRMLS_DC) argument 1277 ZVAL_STRING(name, function->common.function_name, 1); 1281 intern->ptr = function; 1531 /* Returns from this function */ 1600 Constructor. Throws an Exception in case the given function does not exist */ 1673 Returns this function' 5275 zval *function; local [all...] |
| /PHP_TRUNK/ext/opcache/ |
| H A D | zend_accelerator_util_funcs.c | 51 static void zend_accel_destroy_zend_function(zend_function *function) argument 55 if (function->type == ZEND_USER_FUNCTION) { 56 if (function->op_array.static_variables) { 58 efree(function->op_array.static_variables); 59 function->op_array.static_variables = NULL; 63 destroy_zend_function(function TSRMLS_CC); 109 static int is_not_internal_function(zend_function *function) argument 111 return(function->type != ZEND_INTERNAL_FUNCTION); 123 static int move_user_function(zend_function *function 135 if (function 156 copy_internal_function(zend_function *function, HashTable *function_table TSRMLS_DC) argument [all...] |
| /PHP_TRUNK/main/ |
| H A D | main.c | 135 php_printf("Unable to disable function '%s'\n", function_name_5[i]); 144 php_printf("Unable to disable function '%s'\n", function_name_6[i]); 324 /* {{{ php_get_display_errors_mode() helper function 704 const char *function; local 721 /* which function caused the problem if any at all */ 723 function = "PHP Startup"; 725 function = "PHP Shutdown"; 732 function = "eval"; 736 function = "include"; 740 function 1929 dummy_invalid_parameter_handler( const wchar_t *expression, const wchar_t *function, const wchar_t *file, unsigned int line, uintptr_t pEwserved) argument [all...] |
| /PHP_TRUNK/ext/standard/ |
| H A D | basic_functions.c | 3410 basic_functions, /* function list */ 3850 Given the name of a constant this function will return the constant's associated value */ 4768 Call a user function which is the first parameter */ 4792 Call a user function which is the first parameter with the arguments contained in array */ 4898 Call a user function which is the first parameter */ 4931 Call a user function which is the first parameter with the arguments contained in array */ 4986 php_error(E_WARNING, "(Registered shutdown functions) Unable to call %s() - function does not exist", function_name); 5012 zval *function = tick_fe->arguments[0]; local 5014 /* Prevent reentrant calls to the same user ticks function */ 5019 function, 5768 zval *function; local [all...] |