Home
last modified time | relevance | path

Searched refs:fn (Results 126 – 148 of 148) sorted by relevance

123456

/PHP-7.4/win32/
H A Dglob.c851 g_lstat(fn, sb, pglob) in g_lstat() argument
852 register Char *fn; in g_lstat()
858 if (g_Ctoc(fn, buf, sizeof(buf)))
866 g_stat(fn, sb, pglob) in g_stat() argument
867 register Char *fn; in g_stat()
873 if (g_Ctoc(fn, buf, sizeof(buf)))
/PHP-7.4/ext/standard/tests/file/
H A Dtempnam_variation5.phpt14 /* Passing an existing file as $prefix for tempnam() fn */
H A Dtempnam_variation5-win32.phpt16 /* Passing an existing file as $prefix for tempnam() fn */
H A Dfilesize_variation4-win32.phpt23 $string = "Test 2 test the filesize() fn, with data containing all the types like !@@##$%^&*():<>?|…
H A Dfilesize_variation4.phpt24 $string = "Test 2 test the filesize() fn, with data containing all the types like !@@##$%^&*():<>?|…
/PHP-7.4/Zend/tests/grammar/
H A Dsemi_reserved_001.phpt59 function fn(){ echo __METHOD__, PHP_EOL; }
139 $obj->fn();
218 Obj::fn
H A Dsemi_reserved_002.phpt59 static function fn(){ echo __METHOD__, PHP_EOL; }
137 Obj::fn();
216 Obj::fn
H A Dsemi_reserved_005.phpt58 const FN = 'fn';
213 fn
/PHP-7.4/sapi/litespeed/
H A Dlsapilib.c2261 LSAPI_CB_EnvHandler fn, void * arg ) in LSAPI_ForeachOrgHeader_r() argument
2270 if ( !pReq || !fn ) in LSAPI_ForeachOrgHeader_r()
2337 LSAPI_CB_EnvHandler fn, void * arg ) in LSAPI_ForeachHeader_r() argument
2344 if ( !pReq || !fn ) in LSAPI_ForeachHeader_r()
2393 ret = (*fn)( achHeaderName, keyLen, in LSAPI_ForeachHeader_r()
2409 if ( !pEnv || !fn ) in EnvForeach()
2413 ret = (*fn)( pEnv->pKey, pEnv->keyLen, in EnvForeach()
2426 if ( !pReq || !fn ) in LSAPI_ForeachEnv_r()
2431 fn, arg ); in LSAPI_ForeachEnv_r()
2440 if ( !pReq || !fn ) in LSAPI_ForeachSpecialEnv_r()
[all …]
/PHP-7.4/Zend/
H A Dzend_opcode.c247 zend_function *fn; in destroy_zend_class() local
375 ZEND_HASH_FOREACH_PTR(&ce->function_table, fn) { in destroy_zend_class()
376 if ((fn->common.fn_flags & (ZEND_ACC_HAS_RETURN_TYPE|ZEND_ACC_HAS_TYPE_HINTS)) && in destroy_zend_class()
377 fn->common.scope == ce) { in destroy_zend_class()
378 zend_free_internal_arg_info(&fn->internal_function); in destroy_zend_class()
H A Dzend_ast.h283 ZEND_API void zend_ast_apply(zend_ast *ast, zend_ast_apply_func fn);
H A Dzend_language_parser.y260 %type <num> returns_ref function fn is_reference is_variadic variable_modifiers
1006 …| fn returns_ref '(' parameter_list ')' return_type backup_doc_comment T_DOUBLE_ARROW backup_fn_fl…
1014 fn:
H A Dzend_ast.c874 ZEND_API void zend_ast_apply(zend_ast *ast, zend_ast_apply_func fn) { in zend_ast_apply() argument
879 fn(&list->child[i]); in zend_ast_apply()
884 fn(&ast->child[i]); in zend_ast_apply()
H A Dzend_API.c2884 zend_function *fn; in zend_disable_class() local
2897 ZEND_HASH_FOREACH_PTR(&disabled_class->function_table, fn) { in zend_disable_class()
2898 if ((fn->common.fn_flags & (ZEND_ACC_HAS_RETURN_TYPE|ZEND_ACC_HAS_TYPE_HINTS)) && in zend_disable_class()
2899 fn->common.scope == disabled_class) { in zend_disable_class()
2900 zend_free_internal_arg_info(&fn->internal_function); in zend_disable_class()
H A Dzend_vm_gen.php1697 function read_order_file($fn) { argument
1698 $f = fopen($fn, "r");
H A Dzend_compile.c7044 binary_op_type fn = get_binary_op(opcode); in zend_try_ct_eval_binary_op() local
7064 fn(result, op1, op2); in zend_try_ct_eval_binary_op()
7071 unary_op_type fn = get_unary_op(opcode); in zend_ct_eval_unary_op() local
7072 fn(result, op); in zend_ct_eval_unary_op()
7086 binary_op_type fn = kind == ZEND_AST_GREATER in zend_ct_eval_greater() local
7088 fn(result, op2, op1); in zend_ct_eval_greater()
/PHP-7.4/ext/com_dotnet/
H A Dcom_handlers.c421 #define POPULATE_CTOR(f, fn) \ in com_constructor_get() argument
428 f.handler = ZEND_FN(fn); \ in com_constructor_get()
/PHP-7.4/ext/opcache/Optimizer/
H A Dzend_cfg.c274 zend_function *fn; in zend_build_cfg() local
331 if ((fn = zend_hash_find_ptr(EG(function_table), Z_STR_P(zv))) != NULL) { in zend_build_cfg()
332 if (fn->type == ZEND_INTERNAL_FUNCTION) { in zend_build_cfg()
/PHP-7.4/ext/soap/
H A Dphp_sdl.c1539 static sdlPtr get_sdl_from_cache(const char *fn, const char *uri, time_t t, time_t *cached) in get_sdl_from_cache() argument
1554 f = open(fn, O_RDONLY|O_BINARY); in get_sdl_from_cache()
1571 unlink(fn); in get_sdl_from_cache()
1579 unlink(fn); in get_sdl_from_cache()
1587 unlink(fn); in get_sdl_from_cache()
2108 static void add_sdl_to_cache(const char *fn, const char *uri, time_t t, sdlPtr sdl) in add_sdl_to_cache() argument
2123 f = open(fn,O_CREAT|O_WRONLY|O_EXCL|O_BINARY,S_IREAD|S_IWRITE); in add_sdl_to_cache()
2125 f = open(fn,O_CREAT|O_WRONLY|O_EXCL|O_BINARY,S_IREAD|S_IWRITE); in add_sdl_to_cache()
3166 char fn[MAXPATHLEN]; in get_sdl() local
3182 } else if (VCWD_REALPATH(uri, fn) == NULL) { in get_sdl()
[all …]
H A Dsoap.c2605 sdlFunctionPtr fn; local
2676 fn = get_function(sdl, function);
2677 if (fn != NULL) {
2678 sdlBindingPtr binding = fn->binding;
2681 if (fn->responseName == NULL &&
2682 fn->responseParameters == NULL &&
2691 sdlSoapBindingFunctionPtr fnb = (sdlSoapBindingFunctionPtr)fn->bindingAttributes;
2692 …request = serialize_function_call(this_ptr, fn, NULL, fnb->input.ns, real_args, arg_count, soap_ve…
2695 …request = serialize_function_call(this_ptr, fn, NULL, sdl->target_ns, real_args, arg_count, soap_v…
2704 …ret = parse_packet_soap(this_ptr, Z_STRVAL(response), Z_STRLEN(response), fn, NULL, return_value, …
/PHP-7.4/ext/gd/
H A Dgd.c2676 char *fn = NULL; in _php_image_output() local
2694 fn = file; in _php_image_output()
2704 PHP_GD_CHECK_OPEN_BASEDIR(fn, "Invalid filename"); in _php_image_output()
2706 fp = VCWD_FOPEN(fn, "wb"); in _php_image_output()
2708 php_error_docref(NULL, E_WARNING, "Unable to open '%s' for writing", fn); in _php_image_output()
/PHP-7.4/
H A DUPGRADING31 . "fn" is now a reserved keyword. In particular, it can no longer be used as a
210 $nums = array_map(fn($num) => $num * $factor, $nums);
/PHP-7.4/ext/ffi/
H A Dffi.c3400 zend_string *fn; in ZEND_METHOD() local
3405 Z_PARAM_STR(fn) in ZEND_METHOD()
3413 ffi = zend_ffi_load(ZSTR_VAL(fn), (CG(compiler_options) & ZEND_COMPILE_PRELOAD) != 0); in ZEND_METHOD()

Completed in 150 milliseconds

123456