Home
last modified time | relevance | path

Searched refs:attr (Results 126 – 149 of 149) sorted by relevance

123456

/PHP-8.2/Zend/
H A Dzend_enum.c529 ast->attr = 0; in create_enum_case_ast()
534 ast->child[0]->attr = 0; in create_enum_case_ast()
541 ast->child[1]->attr = 0; in create_enum_case_ast()
549 ast->child[2]->attr = 0; in create_enum_case_ast()
H A Dzend.c680 zend_attribute *attr; in function_copy_ctor() local
682attr = zend_add_attribute(&func->common.attributes, old_attr->name, old_attr->argc, old_attr->flag… in function_copy_ctor()
685 ZVAL_DUP(&attr->args[i].value, &old_attr->args[i].value); in function_copy_ctor()
H A Dzend_compile.h93 zend_ast_attr attr; member
H A Dzend_execute_API.c689 zval *zv = zend_get_constant_ex(name, scope, ast->attr); in zval_update_constant_ex()
/PHP-8.2/ext/intl/tests/
H A Dformatter_get_set_symbol2.phpt45 list( $symb, $new_val, $number, $attr ) = $data;
47 $fmt = ut_nfmt_create( 'en_US', $attr);
/PHP-8.2/ext/pdo_firebird/
H A Dfirebird_statement.c794 static int firebird_stmt_set_attribute(pdo_stmt_t *stmt, zend_long attr, zval *val) /* {{{ */ in firebird_stmt_set_attribute() argument
798 switch (attr) { in firebird_stmt_set_attribute()
817 static int firebird_stmt_get_attribute(pdo_stmt_t *stmt, zend_long attr, zval *val) /* {{{ */ in firebird_stmt_get_attribute() argument
821 switch (attr) { in firebird_stmt_get_attribute()
H A Dfirebird_driver.c833 static bool firebird_handle_set_attribute(pdo_dbh_t *dbh, zend_long attr, zval *val) /* {{{ */ in firebird_handle_set_attribute() argument
838 switch (attr) { in firebird_handle_set_attribute()
934 static int firebird_handle_get_attribute(pdo_dbh_t *dbh, zend_long attr, zval *val) /* {{{ */ in firebird_handle_get_attribute() argument
938 switch (attr) { in firebird_handle_get_attribute()
/PHP-8.2/ext/pdo_odbc/
H A Dodbc_stmt.c765 static int odbc_stmt_set_param(pdo_stmt_t *stmt, zend_long attr, zval *val) in odbc_stmt_set_param() argument
770 switch (attr) { in odbc_stmt_set_param()
792 static int odbc_stmt_get_attr(pdo_stmt_t *stmt, zend_long attr, zval *val) in odbc_stmt_get_attr() argument
797 switch (attr) { in odbc_stmt_get_attr()
/PHP-8.2/ext/pdo_sqlite/
H A Dsqlite_driver.c283 static int pdo_sqlite_get_attribute(pdo_dbh_t *dbh, zend_long attr, zval *return_value) in pdo_sqlite_get_attribute() argument
285 switch (attr) { in pdo_sqlite_get_attribute()
298 static bool pdo_sqlite_set_attr(pdo_dbh_t *dbh, zend_long attr, zval *val) in pdo_sqlite_set_attr() argument
303 switch (attr) { in pdo_sqlite_set_attr()
/PHP-8.2/ext/zip/
H A Dphp_zip.c2172 zend_long flags=0, opsys, attr; local
2176 &name, &name_len, &opsys, &attr, &flags) == FAILURE) {
2193 (zip_uint8_t)(opsys&0xff), (zip_uint32_t)attr) < 0) {
2205 zend_long index, flags=0, opsys, attr; local
2209 &index, &opsys, &attr, &flags) == FAILURE) {
2233 zip_uint32_t attr; local
2254 (zip_flags_t)flags, &opsys, &attr) < 0) {
2258 ZEND_TRY_ASSIGN_REF_LONG(z_attr, attr);
2270 zip_uint32_t attr; local
2282 (zip_flags_t)flags, &opsys, &attr) < 0) {
[all …]
H A Dphp_zip_arginfo.h225 ZEND_ARG_TYPE_INFO(0, attr, IS_LONG, 0)
234 ZEND_ARG_TYPE_INFO(0, attr, IS_LONG, 0)
243 ZEND_ARG_INFO(1, attr)
252 ZEND_ARG_INFO(1, attr)
/PHP-8.2/ext/mysqli/
H A Dmysqli_api.c1724 zend_long attr; in PHP_FUNCTION() local
1727 …ZEND_NUM_ARGS(), getThis(), "Oll", &mysql_stmt, mysqli_stmt_class_entry, &attr, &mode_in) == FAILU… in PHP_FUNCTION()
1733 switch (attr) { in PHP_FUNCTION()
1772 if (FAIL == mysql_stmt_attr_set(stmt->stmt, attr, mode_p)) { in PHP_FUNCTION()
1786 zend_long attr; in PHP_FUNCTION() local
1789 …meters(ZEND_NUM_ARGS(), getThis(), "Ol", &mysql_stmt, mysqli_stmt_class_entry, &attr) == FAILURE) { in PHP_FUNCTION()
1795 if ((rc = mysql_stmt_attr_get(stmt->stmt, attr, &value))) { in PHP_FUNCTION()
1805 if (attr == STMT_ATTR_UPDATE_MAX_LENGTH) in PHP_FUNCTION()
/PHP-8.2/ext/pdo/
H A Dpdo_stmt.c1576 zend_long attr; in PHP_METHOD() local
1580 Z_PARAM_LONG(attr) in PHP_METHOD()
1593 if (stmt->methods->set_attribute(stmt, attr, value)) { in PHP_METHOD()
1605 static bool generic_stmt_attr_get(pdo_stmt_t *stmt, zval *return_value, zend_long attr) in generic_stmt_attr_get() argument
1607 switch (attr) { in generic_stmt_attr_get()
1617 zend_long attr; in PHP_METHOD() local
1620 Z_PARAM_LONG(attr) in PHP_METHOD()
1625 if (!generic_stmt_attr_get(stmt, return_value, attr)) { in PHP_METHOD()
1634 switch (stmt->methods->get_attribute(stmt, attr, return_value)) { in PHP_METHOD()
1640 if (!generic_stmt_attr_get(stmt, return_value, attr)) { in PHP_METHOD()
/PHP-8.2/ext/ldap/
H A Dldap.c510 zval* attr; in _php_ldap_control_from_array() local
518 if ((attr = zend_hash_index_find(Z_ARRVAL_P(tmp), i)) == NULL) { in _php_ldap_control_from_array()
524 tmpstrings1[num_tmpstrings1] = zval_get_string(attr); in _php_ldap_control_from_array()
1354 zval *link, *attrs = NULL, *attr, *serverctrls = NULL; in php_ldap_do_search() local
1401 if ((attr = zend_hash_index_find(Z_ARRVAL_P(attrs), i)) == NULL) { in php_ldap_do_search()
1407 convert_to_string(attr); in php_ldap_do_search()
1412 ldap_attrs[i] = Z_STRVAL_P(attr); in php_ldap_do_search()
1981 char *attr; in PHP_FUNCTION() local
1995 if ((ldap_value_len = ldap_get_values_len(ld->link, resultentry->data, attr)) == NULL) { in PHP_FUNCTION()
2843 char *dn, *attr, *value; in PHP_FUNCTION() local
[all …]
/PHP-8.2/ext/ffi/
H A Dffi_parser.c2275 dcl->attr |= ZEND_FFI_ATTR_CONST; in parse_type_qualifier()
2742 uint32_t attr = 0; in parse_array_or_function_declarators() local
2828 attr |= ZEND_FFI_ATTR_INCOMPLETE_ARRAY; in parse_array_or_function_declarators()
2831 attr |= ZEND_FFI_ATTR_VLA; in parse_array_or_function_declarators()
2839 attr |= ZEND_FFI_ATTR_INCOMPLETE_ARRAY; in parse_array_or_function_declarators()
2842 attr |= ZEND_FFI_ATTR_VLA; in parse_array_or_function_declarators()
2856 dcl->attr |= attr; in parse_array_or_function_declarators()
2904 attr |= ZEND_FFI_ATTR_VARIADIC; in parse_array_or_function_declarators()
2908 attr |= ZEND_FFI_ATTR_VARIADIC; in parse_array_or_function_declarators()
2918 dcl->attr |= attr; in parse_array_or_function_declarators()
H A Dphp_ffi.h167 uint16_t attr; member
/PHP-8.2/ext/dom/
H A Dphp_dom.c1355 xmlAttrPtr attr; in dom_normalize() local
1386 attr = child->properties; in dom_normalize()
1387 while (attr != NULL) { in dom_normalize()
1388 dom_normalize((xmlNodePtr) attr); in dom_normalize()
1389 attr = attr->next; in dom_normalize()
H A Dphp_dom_arginfo.h239 ZEND_ARG_OBJ_INFO(0, attr, DOMAttr, 0)
269 ZEND_ARG_OBJ_INFO(0, attr, DOMAttr, 0)
/PHP-8.2/ext/pdo_pgsql/
H A Dpgsql_driver.c427 static int pdo_pgsql_get_attribute(pdo_dbh_t *dbh, zend_long attr, zval *return_value) in pdo_pgsql_get_attribute() argument
431 switch (attr) { in pdo_pgsql_get_attribute()
1189 static bool pdo_pgsql_set_attr(pdo_dbh_t *dbh, zend_long attr, zval *val) in pdo_pgsql_set_attr() argument
1194 switch (attr) { in pdo_pgsql_set_attr()
/PHP-8.2/build/
H A Dgen_stub.php2618 foreach ($this->attributes as $attr) {
2619 if ($attr->class === "AllowDynamicProperties") {
3010 $attr = $doc->createAttribute("xpointer");
3011 $attr->value = $query;
3012 $includeElement->appendChild($attr);
3278 foreach ($attrGroup->attrs as $attr) {
3279 $attributes[] = new AttributeInfo($attr->name->toString(), $attr->args);
3518 foreach ($attrGroup->attrs as $attr) {
3519 $attributes[] = new AttributeInfo($attr->name->toString(), $attr->args);
3520 switch ($attr->name->toString()) {
/PHP-8.2/ext/opcache/
H A Dzend_persist.c291 zend_attribute *attr = Z_PTR_P(v); in zend_persist_attributes() local
292 zend_attribute *copy = zend_shared_memdup_put_free(attr, ZEND_ATTRIBUTE_SIZE(attr->argc)); in zend_persist_attributes()
/PHP-8.2/ext/opcache/jit/
H A Dzend_jit_helpers.c3063 zval *zv = zend_get_constant_ex(name, scope, ast->attr); in zval_jit_update_constant_ex()
/PHP-8.2/ext/fileinfo/tests/
H A Dmagic26575 # attr
H A Dmagic私はガラスを食べられます26575 # attr

Completed in 255 milliseconds

123456