Searched refs:get_attribute (Results 1 – 10 of 10) sorted by relevance
/PHP-8.0/ext/soap/ |
H A D | php_schema.c | 811 fixed = get_attribute(val->properties, "fixed"); in schema_restriction_var_int() 1362 ns = get_attribute(attrs, "targetNamespace"); in schema_complexType() 1367 name = get_attribute(attrs, "name"); in schema_complexType() 1491 ns = get_attribute(attrs, "targetNamespace"); in schema_element() 1496 name = get_attribute(attrs, "name"); in schema_element() 1498 name = ref = get_attribute(attrs, "ref"); in schema_element() 1589 attr = get_attribute(attrs, "nillable"); in schema_element() 1604 attr = get_attribute(attrs, "fixed"); in schema_element() 1612 attr = get_attribute(attrs, "default"); in schema_element() 1621 attr = get_attribute(attrs, "form"); in schema_element() [all …]
|
H A D | php_sdl.c | 453 tmp = get_attribute(header->properties, "message"); in wsdl_soap_binding_header() 468 tmp = get_attribute(header->properties, "part"); in wsdl_soap_binding_header() 481 tmp = get_attribute(header->properties, "use"); in wsdl_soap_binding_header() 488 tmp = get_attribute(header->properties, "namespace"); in wsdl_soap_binding_header() 508 tmp = get_attribute(part->properties, "type"); in wsdl_soap_binding_header() 512 tmp = get_attribute(part->properties, "element"); in wsdl_soap_binding_header() 568 tmp = get_attribute(body->properties, "use"); in wsdl_soap_binding_body() 575 tmp = get_attribute(body->properties, "namespace"); in wsdl_soap_binding_body() 580 tmp = get_attribute(body->properties, "parts"); in wsdl_soap_binding_body() 698 name = get_attribute(part->properties, "name"); in wsdl_message() [all …]
|
H A D | php_xml.h | 22 #define get_attribute(node, name) get_attribute_ex(node, name, NULL) macro
|
H A D | php_encoding.c | 106 null = get_attribute(xml->properties, "nil"); \ 122 null = get_attribute(xml->properties, "nil"); \ 299 attr = get_attribute(attr, "id"); in soap_check_zval_ref() 1499 xmlAttrPtr val = get_attribute(data->properties, attr->name); in to_zval_object_ex() 2447 (attr = get_attribute(data->properties,"arrayType")) && in to_zval_array() 2481 if ((attr = get_attribute(data->properties,"arraySize")) && in to_zval_array() 2569 (attr = get_attribute(data->properties,"offset")) && in to_zval_array() 2791 if (get_attribute(data->properties, "arrayType") || in guess_zval_convert() 2792 get_attribute(data->properties, "itemType") || in guess_zval_convert() 2793 get_attribute(data->properties, "arraySize")) { in guess_zval_convert() [all …]
|
/PHP-8.0/Zend/ |
H A D | zend_attributes.c | 70 static zend_attribute *get_attribute(HashTable *attributes, zend_string *lcname, uint32_t offset) in get_attribute() function 104 return get_attribute(attributes, lcname, 0); in zend_get_attribute() 114 return get_attribute(attributes, lcname, offset + 1); in zend_get_parameter_attribute()
|
/PHP-8.0/ext/pdo/ |
H A D | php_pdo_driver.h | 314 pdo_dbh_get_attr_func get_attribute; member 418 pdo_stmt_get_attr_func get_attribute; member
|
H A D | pdo_dbh.c | 895 if (!dbh->methods->get_attribute) { in PHP_METHOD() 900 switch (dbh->methods->get_attribute(dbh, attr, return_value)) { in PHP_METHOD()
|
H A D | pdo_stmt.c | 1690 if (!stmt->methods->get_attribute) { in PHP_METHOD() 1700 switch (stmt->methods->get_attribute(stmt, attr, return_value)) { in PHP_METHOD()
|
/PHP-8.0/ext/mysqlnd/ |
H A D | mysqlnd.h | 246 #define mysqlnd_stmt_attr_get(stmt, attr, value) (stmt)->m->get_attribute((stmt), (attr), (value))
|
H A D | mysqlnd_structs.h | 849 func_mysqlnd_stmt__get_attribute get_attribute; in MYSQLND_CLASS_METHODS_TYPE() local
|
Completed in 69 milliseconds