Home
last modified time | relevance | path

Searched defs:name (Results 1 – 25 of 289) sorted by relevance

12345678910>>...12

/PHP-8.1/Zend/
H A Dzend_constants.h35 zend_string *name; member
49 #define REGISTER_NULL_CONSTANT(name, flags) zend_register_null_constant((name), sizeof(name)-1, (f… argument
50 #define REGISTER_BOOL_CONSTANT(name, bval, flags) zend_register_bool_constant((name), sizeof(name)… argument
51 #define REGISTER_LONG_CONSTANT(name, lval, flags) zend_register_long_constant((name), sizeof(name)… argument
53 #define REGISTER_STRING_CONSTANT(name, str, flags) zend_register_string_constant((name), sizeof(na… argument
63 #define REGISTER_MAIN_NULL_CONSTANT(name, flags) zend_register_null_constant((name), sizeof(name)-… argument
64 #define REGISTER_MAIN_BOOL_CONSTANT(name, bval, flags) zend_register_bool_constant((name), sizeof(… argument
65 #define REGISTER_MAIN_LONG_CONSTANT(name, lval, flags) zend_register_long_constant((name), sizeof(… argument
66 #define REGISTER_MAIN_DOUBLE_CONSTANT(name, dval, flags) zend_register_double_constant((name), siz… argument
67 #define REGISTER_MAIN_STRING_CONSTANT(name, str, flags) zend_register_string_constant((name), size… argument
[all …]
H A Dzend_ini.h32 const char *name; member
46 zend_string *name; member
124 #define ZEND_INI_ENTRY(name, default_value, modifiable, on_modify) \ argument
143 #define INI_INT(name) zend_ini_long((name), strlen(name), 0) argument
144 #define INI_FLT(name) zend_ini_double((name), strlen(name), 0) argument
145 #define INI_STR(name) zend_ini_string_ex((name), strlen(name), 0, NULL) argument
146 #define INI_BOOL(name) ((bool) INI_INT(name)) argument
148 #define INI_ORIG_INT(name) zend_ini_long((name), strlen(name), 1) argument
149 #define INI_ORIG_FLT(name) zend_ini_double((name), strlen(name), 1) argument
150 #define INI_ORIG_STR(name) zend_ini_string((name), strlen(name), 1) argument
[all …]
H A Dzend_constants.c151 ZEND_API void zend_register_null_constant(const char *name, size_t name_len, int flags, int module_… in zend_register_null_constant()
161 ZEND_API void zend_register_bool_constant(const char *name, size_t name_len, bool bval, int flags, … in zend_register_bool_constant()
182 ZEND_API void zend_register_double_constant(const char *name, size_t name_len, double dval, int fla… in zend_register_double_constant()
209 static zend_constant *zend_get_halt_offset_constant(const char *name, size_t name_len) in zend_get_halt_offset_constant()
235 ZEND_API zend_constant *_zend_get_special_const(const char *name, size_t len) /* {{{ */ in _zend_get_special_const()
279 static zend_constant *zend_get_constant_str_impl(const char *name, size_t name_len) in zend_get_constant_str_impl()
294 ZEND_API zval *zend_get_constant_str(const char *name, size_t name_len) in zend_get_constant_str()
303 static zend_constant *zend_get_constant_impl(zend_string *name) in zend_get_constant_impl()
318 ZEND_API zval *zend_get_constant(zend_string *name) in zend_get_constant()
408 const char *name = ZSTR_VAL(cname); in zend_get_constant_ex() local
[all …]
H A Dzend_ini.c318 ZEND_API zend_result zend_alter_ini_entry(zend_string *name, zend_string *new_value, int modify_typ… in zend_alter_ini_entry()
325 ZEND_API zend_result zend_alter_ini_entry_chars(zend_string *name, const char *value, size_t value_… in zend_alter_ini_entry_chars()
337 ZEND_API zend_result zend_alter_ini_entry_chars_ex(zend_string *name, const char *value, size_t val… in zend_alter_ini_entry_chars_ex()
349 ZEND_API zend_result zend_alter_ini_entry_ex(zend_string *name, zend_string *new_value, int modify_… in zend_alter_ini_entry_ex()
401 ZEND_API zend_result zend_restore_ini_entry(zend_string *name, int stage) /* {{{ */ in zend_restore_ini_entry()
422 ZEND_API zend_result zend_ini_register_displayer(const char *name, uint32_t name_length, void (*dis… in zend_ini_register_displayer()
440 ZEND_API zend_long zend_ini_long(const char *name, size_t name_length, int orig) /* {{{ */ in zend_ini_long()
457 ZEND_API double zend_ini_double(const char *name, size_t name_length, int orig) /* {{{ */ in zend_ini_double()
474 ZEND_API char *zend_ini_string_ex(const char *name, size_t name_length, int orig, bool *exists) /* … in zend_ini_string_ex()
498 ZEND_API char *zend_ini_string(const char *name, size_t name_length, int orig) /* {{{ */ in zend_ini_string()
[all …]
H A Dzend_attributes.h45 zend_string *name; member
50 zend_string *name; member
92 …ne zend_attribute *zend_add_function_attribute(zend_function *func, zend_string *name, uint32_t ar… in zend_add_function_attribute()
98 …*zend_add_parameter_attribute(zend_function *func, uint32_t offset, zend_string *name, uint32_t ar… in zend_add_parameter_attribute()
104 …_property_attribute(zend_class_entry *ce, zend_property_info *info, zend_string *name, uint32_t ar… in zend_add_property_attribute()
110 …ss_constant_attribute(zend_class_entry *ce, zend_class_constant *c, zend_string *name, uint32_t ar… in zend_add_class_constant_attribute()
H A Dzend_modules.h78 const char *name; member
106 #define ZEND_MOD_REQUIRED_EX(name, rel, ver) { name, rel, ver, MODULE_DEP_REQUIRED }, argument
107 #define ZEND_MOD_CONFLICTS_EX(name, rel, ver) { name, rel, ver, MODULE_DEP_CONFLICTS }, argument
108 #define ZEND_MOD_OPTIONAL_EX(name, rel, ver) { name, rel, ver, MODULE_DEP_OPTIONAL }, argument
110 #define ZEND_MOD_REQUIRED(name) ZEND_MOD_REQUIRED_EX(name, NULL, NULL) argument
111 #define ZEND_MOD_CONFLICTS(name) ZEND_MOD_CONFLICTS_EX(name, NULL, NULL) argument
112 #define ZEND_MOD_OPTIONAL(name) ZEND_MOD_OPTIONAL_EX(name, NULL, NULL) argument
117 const char *name; /* module name */ member
H A Dzend_API.h64 #define ZEND_NS_NAME(ns, name) ns "\\" name argument
68 #define ZEND_FN(name) zif_##name argument
69 #define ZEND_MN(name) zim_##name argument
72 #define ZEND_FUNCTION(name) ZEND_NAMED_FUNCTION(zif_##name) argument
114 #define ZEND_ARG_INFO(pass_by_ref, name) \ argument
118 #define ZEND_ARG_VARIADIC_INFO(pass_by_ref, name) \ argument
146 #define ZEND_ARG_ARRAY_INFO(pass_by_ref, name, allow_null) \ argument
201 #define ZEND_BEGIN_ARG_INFO(name, _unused) \ argument
225 #define ZEND_GET_MODULE(name) \ argument
376 #define zend_register_class_alias(name, ce) \ argument
[all …]
/PHP-8.1/ext/xmlwriter/
H A Dphp_xmlwriter.stub.php17 function xmlwriter_start_attribute(XMLWriter $writer, string $name): bool {}
27 function xmlwriter_start_element(XMLWriter $writer, string $name): bool {}
73 function xmlwriter_start_dtd_attlist(XMLWriter $writer, string $name): bool {}
133 public function startAttribute(string $name): bool {}
145 public function writeAttribute(string $name, string $value): bool {}
163 public function startElement(string $name): bool {}
187 public function writeElement(string $name, ?string $content = null): bool {}
295 public function writeDtdElement(string $name, string $content): bool {}
301 public function startDtdAttlist(string $name): bool {}
313 public function writeDtdAttlist(string $name, string $content): bool {}
[all …]
H A Dphp_xmlwriter.c208 char *name; in ZEND_GET_MODULE() local
302 char *name, *prefix, *uri; in PHP_FUNCTION() local
330 char *name, *content; in PHP_FUNCTION() local
358 char *name, *prefix, *uri, *content; in PHP_FUNCTION() local
393 char *name, *prefix, *uri; in PHP_FUNCTION() local
436 char *name, *content = NULL; in PHP_FUNCTION() local
528 char *name, *content; in PHP_FUNCTION() local
747 char *name, *content; in PHP_FUNCTION() local
789 char *name, *content; in PHP_FUNCTION() local
817 char *name; in PHP_FUNCTION() local
[all …]
/PHP-8.1/ext/soap/
H A Dphp_xml.h22 #define get_attribute(node, name) get_attribute_ex(node, name, NULL) argument
23 #define get_node(node, name) get_node_ex(node, name, NULL) argument
24 #define get_node_recursive(node, name) get_node_recursive_ex(node, name, NULL) argument
25 #define get_node_with_attribute(node, name, attr, val) get_node_with_attribute_ex(node, name, NULL,… argument
26 #define get_node_with_attribute_recursive(node, name, attr, val) get_node_with_attribute_recursive_… argument
27 #define node_is_equal(node, name) node_is_equal_ex(node, name, NULL) argument
28 #define attr_is_equal(node, name) attr_is_equal_ex(node, name, NULL) argument
H A Dphp_xml.c200 int attr_is_equal_ex(xmlAttrPtr node, char *name, char *ns) in attr_is_equal_ex()
216 int node_is_equal_ex(xmlNodePtr node, char *name, char *ns) in node_is_equal_ex()
233 xmlAttrPtr get_attribute_ex(xmlAttrPtr node, char *name, char *ns) in get_attribute_ex()
244 xmlNodePtr get_node_ex(xmlNodePtr node, char *name, char *ns) in get_node_ex()
255 xmlNodePtr get_node_recurisve_ex(xmlNodePtr node, char *name, char *ns) in get_node_recurisve_ex()
271 xmlNodePtr get_node_with_attribute_ex(xmlNodePtr node, char *name, char *name_ns, char *attribute, … in get_node_with_attribute_ex()
292 xmlNodePtr get_node_with_attribute_recursive_ex(xmlNodePtr node, char *name, char *name_ns, char *a… in get_node_with_attribute_recursive_ex()
H A Dsoap.stub.php14 public function __construct(mixed $data, string $name) {}
20 public string $name; variable in SoapHeader
25 …public function __construct(string $namespace, string $name, mixed $data = UNKNOWN, bool $mustUnde…
38 …$code, string $string, ?string $actor = null, mixed $details = null, ?string $name = null, mixed $… argument
65 …tring $code, string $string, string $actor = "", mixed $details = null, string $name = ""): void {} argument
140 public function __call(string $name, array $args): mixed {}
147 …public function __soapCall(string $name, array $args, ?array $options = null, $inputHeaders = null…
171 public function __setCookie(string $name, ?string $value = null): void {}
/PHP-8.1/ext/zip/
H A Dphp_zip.stub.php119 public function renameName(string $name, string $new_name): bool {}
131 public function setCommentName(string $name, string $comment): bool {}
138 public function setMtimeName(string $name, int $timestamp, int $flags = 0): bool {}
145 public function getCommentName(string $name, int $flags = 0): string|false {}
151 public function deleteName(string $name): bool {}
154 public function statName(string $name, int $flags = 0): array|false {}
160 public function locateName(string $name, int $flags = 0): int|false {}
175 public function unchangeName(string $name): bool {}
181 public function getFromName(string $name, int $len = 0, int $flags = 0): string|false {}
187 public function getStream(string $name) {}
[all …]
/PHP-8.1/Zend/Optimizer/
H A Dzend_func_info.c35 const char *name; member
41 #define F0(name, info) \ argument
43 #define F1(name, info) \ argument
45 #define FN(name, info) \ argument
47 #define FC(name, callback) \ argument
108 zend_string *name = callee_func->common.function_name; in zend_get_internal_func_info() local
149 zend_string *name = callee_func->common.function_name; in zend_get_func_info() local
/PHP-8.1/ext/reflection/
H A Dphp_reflection.stub.php22 public string $name; variable in ReflectionFunctionAbstract
217 public string $name; variable in ReflectionClass
259 public function hasMethod(string $name): bool {}
391 public string $name; variable in ReflectionProperty
461 public string $name; variable in ReflectionClassConstant
505 public string $name; variable in ReflectionParameter
617 public string $name; variable in ReflectionExtension
622 public function __construct(string $name) {}
663 public string $name; variable in ReflectionZendExtension
668 public function __construct(string $name) {}
[all …]
/PHP-8.1/sapi/phpdbg/
H A Dphpdbg_utils.c264 PHPDBG_API int phpdbg_get_element(const char *name, size_t len) { in phpdbg_get_element()
398 int phpdbg_safe_class_lookup(const char *name, int name_length, zend_class_entry **ce) { in phpdbg_safe_class_lookup()
497 char *name; in phpdbg_parse_variable_with_arg() local
515 char *name = estrndup(input, i); in phpdbg_parse_variable_with_arg() local
524 char *name = estrndup(input, i); in phpdbg_parse_variable_with_arg() local
533 char *name = estrndup(input, i); in phpdbg_parse_variable_with_arg() local
561 char *name = estrndup(input, i); in phpdbg_parse_variable_with_arg() local
567 char *name = estrndup(input, i); in phpdbg_parse_variable_with_arg() local
576 char *name = estrndup(input, i); in phpdbg_parse_variable_with_arg() local
585 char *name = estrndup(input, i); in phpdbg_parse_variable_with_arg() local
[all …]
H A Dphpdbg_cmd.h57 char *name; member
62 char *name; member
90 const char *name; /* Command name */ member
156 #define PHPDBG_COMMAND_HANDLER(name) phpdbg_do_##name argument
158 #define PHPDBG_COMMAND_D_EXP(name, tip, alias, handler, children, args, parent, flags) \ argument
161 #define PHPDBG_COMMAND_D_EX(name, tip, alias, handler, children, args, flags) \ argument
164 #define PHPDBG_COMMAND_D(name, tip, alias, children, args, flags) \ argument
167 #define PHPDBG_COMMAND(name) int phpdbg_do_##name(const phpdbg_param_t *param) argument
/PHP-8.1/ext/xmlreader/
H A Dphp_xmlreader.stub.php23 public string $name; variable in XMLReader
39 public function getAttribute(string $name): ?string {}
45 public function getAttributeNs(string $name, string $namespace): ?string {}
57 public function moveToAttribute(string $name): bool {}
63 public function moveToAttributeNs(string $name, string $namespace): bool {}
78 public function next(?string $name = null): bool {}
/PHP-8.1/ext/pdo_sqlite/
H A Dsqlite_driver.stub.php8 …public function sqliteCreateFunction(string $name, callable $callback, int $numArgs = -1, int $fla…
11 …public function sqliteCreateAggregate(string $name, callable $step, callable $finalize, int $numAr…
14 public function sqliteCreateCollation(string $name, callable $callback): bool {}
/PHP-8.1/ext/intl/uchar/
H A Duchar.c246 char *name; in IC_METHOD() local
269 const char *name, int32_t length) { in enumCharNames_callback()
376 char *name; in IC_METHOD() local
524 #define IC_BOOL_METHOD_CHAR(name) \ argument
564 #define IC_INT_METHOD_CHAR(name) \ in IC_BOOL_METHOD_CHAR() argument
582 #define IC_CHAR_METHOD_CHAR(name) \ argument
619 #define IC_CONSTL(name, val) \ argument
631 #define UPROPERTY(name) IC_CONSTL("PROPERTY_" #name, UCHAR_##name) argument
635 #define UCHARCATEGORY(name) IC_CONSTL("CHAR_CATEGORY_" #name, U_##name) argument
643 #define UBLOCKCODE(name) IC_CONSTL("BLOCK_CODE_" #name, UBLOCK_##name) argument
[all …]
/PHP-8.1/ext/opcache/jit/libudis86/
H A Dsyn.c138 const char *name = NULL; in ud_syn_print_addr() local
181 const char *name = u->sym_resolver(u, v, &offset); in ud_syn_print_imm() local
213 const char *name = u->sym_resolver(u, v, &offset); in ud_syn_print_mem_disp() local
237 const char *name = u->sym_resolver(u, v, &offset); in ud_syn_print_mem_disp() local
/PHP-8.1/main/
H A Dphp_variables.c49 static zend_always_inline void php_register_variable_quick(const char *name, size_t name_len, zval … in php_register_variable_quick()
555 static zend_always_inline int valid_environment_name(const char *name, const char *end) in valid_environment_name()
615 bool php_std_auto_global_callback(char *name, uint32_t name_len) in php_std_auto_global_callback()
761 static bool php_auto_globals_create_get(zend_string *name) in php_auto_globals_create_get()
776 static bool php_auto_globals_create_post(zend_string *name) in php_auto_globals_create_post()
795 static bool php_auto_globals_create_cookie(zend_string *name) in php_auto_globals_create_cookie()
810 static bool php_auto_globals_create_files(zend_string *name) in php_auto_globals_create_files()
838 static bool php_auto_globals_create_server(zend_string *name) in php_auto_globals_create_server()
875 static bool php_auto_globals_create_env(zend_string *name) in php_auto_globals_create_env()
891 static bool php_auto_globals_create_request(zend_string *name) in php_auto_globals_create_request()
/PHP-8.1/ext/dom/
H A Delement.c204 char *name; in PHP_METHOD() local
251 char *name, *value; in PHP_METHOD() local
316 char *name; in PHP_METHOD() local
365 char *name; in PHP_METHOD() local
502 char *name; in PHP_METHOD() local
529 char *uri, *name; in PHP_METHOD() local
815 char *name, *uri; in PHP_METHOD() local
865 char *uri, *name; in PHP_METHOD() local
979 char *uri, *name; in PHP_METHOD() local
1006 char *name; in PHP_METHOD() local
[all …]
/PHP-8.1/ext/xsl/
H A Dphp_xsl.stub.php32 …public function setParameter(string $namespace, array|string $name, ?string $value = null): bool {}
35 public function getParameter(string $namespace, string $name): string|false {}
38 public function removeParameter(string $namespace, string $name): bool {}
/PHP-8.1/sapi/apache2handler/
H A Dapache_config.c59 static const char *real_value_hnd(cmd_parms *cmd, void *dummy, const char *name, const char *value,… in real_value_hnd()
79 static const char *php_apache_value_handler(cmd_parms *cmd, void *dummy, const char *name, const ch… in php_apache_value_handler()
84 static const char *php_apache_admin_value_handler(cmd_parms *cmd, void *dummy, const char *name, co… in php_apache_admin_value_handler()
103 static const char *php_apache_flag_handler(cmd_parms *cmd, void *dummy, const char *name, const cha… in php_apache_flag_handler()
108 static const char *php_apache_admin_flag_handler(cmd_parms *cmd, void *dummy, const char *name, con… in php_apache_admin_flag_handler()
180 char *get_php_config(void *conf, char *name, size_t name_len) in get_php_config()

Completed in 106 milliseconds

12345678910>>...12