Home
last modified time | relevance | path

Searched refs:fname (Results 301 – 319 of 319) sorted by relevance

1...<<111213

/php-src/Zend/
H A Dzend_exceptions.c654 zend_string *fname; in ZEND_METHOD() local
661 fname = ZSTR_INIT_LITERAL("gettraceasstring", 0); in ZEND_METHOD()
670 ZVAL_STR(&fci.function_name, fname); in ZEND_METHOD()
721 zend_string_release_ex(fname, 0); in ZEND_METHOD()
H A Dzend_API.c2879 while (ptr->fname) { in zend_register_functions()
2880 fname_len = strlen(ptr->fname); in zend_register_functions()
2883 internal_function->function_name = zend_string_init_interned(ptr->fname, fname_len, 1); in zend_register_functions()
2936 scope ? ZSTR_VAL(scope->name) : "", scope ? "::" : "", ptr->fname); in zend_register_functions()
3033 scope ? ZSTR_VAL(scope->name) : "", scope ? "::" : "", ptr->fname); in zend_register_functions()
3122 while (ptr->fname) { in zend_register_functions()
3123 fname_len = strlen(ptr->fname); in zend_register_functions()
3125 zend_str_tolower_copy(ZSTR_VAL(lowercase_name), ptr->fname, fname_len); in zend_register_functions()
3153 while (ptr->fname) { in zend_unregister_functions()
3157 fname_len = strlen(ptr->fname); in zend_unregister_functions()
[all …]
H A Dzend_execute.c675 const char **fname, const char **fsep, const char **fclass, in zend_verify_type_error_common() argument
678 *fname = ZSTR_VAL(zf->common.function_name); in zend_verify_type_error_common()
700 const char *fname, *fsep, *fclass; in zend_verify_arg_error() local
705 zf, arg_info, value, &fname, &fsep, &fclass, &need_msg, &given_msg); in zend_verify_arg_error()
1399 const char *fname, *fsep, *fclass; in zend_verify_return_error() local
1404 zf, arg_info, value, &fname, &fsep, &fclass, &need_msg, &given_msg); in zend_verify_return_error()
1407 fclass, fsep, fname, ZSTR_VAL(need_msg), given_msg); in zend_verify_return_error()
1426 const char *fname, *fsep, *fclass; in zend_verify_internal_return_error() local
1434 fclass, fsep, fname, ZSTR_VAL(need_msg), given_msg); in zend_verify_internal_return_error()
1439 const char *fname = ZSTR_VAL(zf->common.function_name); in zend_verify_void_return_error() local
[all …]
H A Dzend_API.h36 const char *fname; member
H A Dzend_vm_def.h3936 zval *fname; variable
3943 fname = (zval*)RT_CONSTANT(opline, opline->op2);
3944 func = zend_hash_find_known_hash(EG(function_table), Z_STR_P(fname));
H A Dzend_vm_execute.h3896 zval *fname; in ZEND_INIT_FCALL_SPEC_CONST_HANDLER() local
3903 fname = (zval*)RT_CONSTANT(opline, opline->op2); in ZEND_INIT_FCALL_SPEC_CONST_HANDLER()
3904 func = zend_hash_find_known_hash(EG(function_table), Z_STR_P(fname)); in ZEND_INIT_FCALL_SPEC_CONST_HANDLER()
/php-src/ext/spl/
H A Dspl_array.c1166 static void spl_array_method(INTERNAL_FUNCTION_PARAMETERS, char *fname, size_t fname_len, int use_a… in spl_array_method() argument
1173 ZVAL_STRINGL(&function_name, fname, fname_len); in spl_array_method()
1218 #define SPL_ARRAY_METHOD(cname, fname, use_arg) \ argument
1219 PHP_METHOD(cname, fname) \
1221 spl_array_method(INTERNAL_FUNCTION_PARAM_PASSTHRU, #fname, sizeof(#fname)-1, use_arg); \
/php-src/ext/com_dotnet/
H A Dcom_persist.c279 #define CPH_METHOD(fname) PHP_METHOD(COMPersistHelper, fname) argument
/php-src/Zend/Optimizer/
H A Dblock_pass.c357 char *fname = FUNCTION_CACHE->funcs[Z_LVAL(ZEND_OP1_LITERAL(fcall))].function_name; in zend_optimize_block()
359 …if((flen == sizeof("function_exists")-1 && zend_binary_strcasecmp(fname, flen, "function_exists", … in zend_optimize_block()
360 …(flen == sizeof("is_callable")-1 && zend_binary_strcasecmp(fname, flen, "is_callable", sizeof("is_… in zend_optimize_block()
370 …} else if(flen == sizeof("constant")-1 && zend_binary_strcasecmp(fname, flen, "constant", sizeof("… in zend_optimize_block()
380 …} else if(flen == sizeof("extension_loaded")-1 && zend_binary_strcasecmp(fname, flen, "extension_l… in zend_optimize_block()
/php-src/ext/opcache/
H A DZendAccelerator.c1923 char *fname = emalloc(sizeof("phar://") + ZSTR_LEN(persistent_script->script.filename)); in file_cache_compile_file() local
1925 memcpy(fname, "phar://", sizeof("phar://") - 1); in file_cache_compile_file()
1926 …memcpy(fname + sizeof("phar://") - 1, ZSTR_VAL(persistent_script->script.filename), ZSTR_LEN(persi… in file_cache_compile_file()
1927 php_stream_stat_path(fname, &ssb); in file_cache_compile_file()
1928 efree(fname); in file_cache_compile_file()
2206 char *fname = emalloc(sizeof("phar://") + ZSTR_LEN(persistent_script->script.filename)); in persistent_compile_file() local
2208 memcpy(fname, "phar://", sizeof("phar://") - 1); in persistent_compile_file()
2209 …memcpy(fname + sizeof("phar://") - 1, ZSTR_VAL(persistent_script->script.filename), ZSTR_LEN(persi… in persistent_compile_file()
2210 php_stream_stat_path(fname, &ssb); in persistent_compile_file()
2211 efree(fname); in persistent_compile_file()
/php-src/ext/intl/converter/
H A Dconverter.c46 #define THROW_UFAILURE(obj, fname, error) php_converter_throw_failure(obj, error, \ argument
47fname "() returned error " ZEND_LONG_FMT ": %s", (zend_long)error, u_errorName(error))
/php-src/sapi/phpdbg/
H A Dphpdbg_bp.c972 zend_string *fname = zend_string_tolower(ops->function_name); in phpdbg_find_breakpoint_symbol() local
974 brake = zend_hash_find_ptr(&PHPDBG_G(bp)[PHPDBG_BREAK_SYM], fname); in phpdbg_find_breakpoint_symbol()
976 zend_string_release(fname); in phpdbg_find_breakpoint_symbol()
/php-src/ext/iconv/
H A Diconv.c151 static php_iconv_err_t _php_iconv_mime_encode(smart_str *pretval, const char *fname, size_t fname_n…
904 static php_iconv_err_t _php_iconv_mime_encode(smart_str *pretval, const char *fname, size_t fname_n… in _php_iconv_mime_encode() argument
970 _php_iconv_appendl(pretval, fname, fname_nbytes, cd_pl); in _php_iconv_mime_encode()
/php-src/ext/phar/tests/
H A Dphar_setdefaultstub.phpt10 $fname = __DIR__ . '/' . basename(__FILE__, '.php') . '.phar';
12 $phar = new Phar($fname);
H A Dbug45218_SLOWTEST.phpt14 $fname = __DIR__ . '/' . basename(__FILE__, '.php') . '.phar.php';
45 $phar = new Phar($fname);
/php-src/ext/opcache/jit/ir/dynasm/
H A Dminilua.c5854 const char*fname,int szhint);
6031 const char*fname,int szhint){
6035 e=strchr(fname,'.');
6036 if(e==NULL)e=fname+strlen(fname);
6037 lua_pushlstring(L,fname,e-fname);
6042 lua_pushlstring(L,fname,e-fname);
6048 return fname;
6051 fname=e+1;
6357 const char*fname=luaL_optstring(L,1,NULL);
6358 return load_aux(L,luaL_loadfile(L,fname));
[all …]
/php-src/ext/reflection/
H A Dphp_reflection.c1617 zend_string *fname, *lcname; in ZEND_METHOD() local
1623 Z_PARAM_OBJ_OF_CLASS_OR_STR(closure_obj, zend_ce_closure, fname) in ZEND_METHOD()
1629 if (UNEXPECTED(ZSTR_VAL(fname)[0] == '\\')) { in ZEND_METHOD()
1632 ZSTR_ALLOCA_ALLOC(lcname, ZSTR_LEN(fname) - 1, use_heap); in ZEND_METHOD()
1633 zend_str_tolower_copy(ZSTR_VAL(lcname), ZSTR_VAL(fname) + 1, ZSTR_LEN(fname) - 1); in ZEND_METHOD()
1637 lcname = zend_string_tolower(fname); in ZEND_METHOD()
1644 "Function %s() does not exist", ZSTR_VAL(fname)); in ZEND_METHOD()
/php-src/ext/zend_test/
H A Dtest.c1099 .fname = "zend_test_internal_dnf_arguments",
/php-src/ext/odbc/
H A Dphp_odbc.c2618 char *fname;
2623 …if (zend_parse_parameters(ZEND_NUM_ARGS(), "Os", &pv_res, odbc_result_ce, &fname, &fname_len) == F…
2637 if (strcasecmp(result->values[i].name, fname) == 0) {

Completed in 305 milliseconds

1...<<111213