/PHP-8.2/ext/mysqlnd/ |
H A D | mysqlnd_ext_plugin.c | 182 MYSQLND_CLASS_METHOD_TABLE_NAME(mysqlnd_object_factory) = *methods; in _mysqlnd_object_factory_set_methods() 199 mysqlnd_conn_methods = methods; in _mysqlnd_conn_set_methods() 216 mysqlnd_conn_data_methods = methods; in _mysqlnd_conn_data_set_methods() 234 MYSQLND_CLASS_METHOD_TABLE_NAME(mysqlnd_res) = *methods; in _mysqlnd_result_set_methods() 252 MYSQLND_CLASS_METHOD_TABLE_NAME(mysqlnd_result_unbuffered) = *methods; in _mysqlnd_result_unbuffered_set_methods() 270 MYSQLND_CLASS_METHOD_TABLE_NAME(mysqlnd_result_buffered) = *methods; in _mysqlnd_result_buffered_set_methods() 288 mysqlnd_stmt_methods = methods; in _mysqlnd_stmt_set_methods() 340 _mysqlnd_vio_set_methods(MYSQLND_CLASS_METHODS_TYPE(mysqlnd_vio) * methods) in _mysqlnd_vio_set_methods() argument 342 MYSQLND_CLASS_METHOD_TABLE_NAME(mysqlnd_vio) = *methods; in _mysqlnd_vio_set_methods() 360 MYSQLND_CLASS_METHOD_TABLE_NAME(mysqlnd_command) = *methods; in _mysqlnd_command_factory_set() [all …]
|
H A D | mysqlnd_ext_plugin.h | 53 void (*set)(MYSQLND_CLASS_METHODS_TYPE(mysqlnd_object_factory) *methods); 59 void (*set)(MYSQLND_CLASS_METHODS_TYPE(mysqlnd_conn) *methods); 65 void (*set)(MYSQLND_CLASS_METHODS_TYPE(mysqlnd_conn_data) *methods); 71 void (*set)(MYSQLND_CLASS_METHODS_TYPE(mysqlnd_res) *methods); 77 void (*set)(MYSQLND_CLASS_METHODS_TYPE(mysqlnd_result_unbuffered) *methods); 83 void (*set)(MYSQLND_CLASS_METHODS_TYPE(mysqlnd_result_buffered) *methods); 89 void (*set)(MYSQLND_CLASS_METHODS_TYPE(mysqlnd_stmt) * methods); 101 void (*set)(MYSQLND_CLASS_METHODS_TYPE(mysqlnd_protocol_packet_frame_codec) * methods); 107 void (*set)(MYSQLND_CLASS_METHODS_TYPE(mysqlnd_vio) * methods); 113 void (*set)(MYSQLND_CLASS_METHODS_TYPE(mysqlnd_error_info) * methods); [all …]
|
/PHP-8.2/ext/json/ |
H A D | json_parser.y | 92 if (parser->methods.object_start && FAILURE == parser->methods.object_start(parser)) { 100 if (parser->methods.object_end && FAILURE == parser->methods.object_end(parser, &$$)) { 121 parser->methods.object_create(parser, &$$); 130 parser->methods.object_create(parser, &$$); 148 if (parser->methods.array_start && FAILURE == parser->methods.array_start(parser)) { 156 if (parser->methods.array_end && FAILURE == parser->methods.array_end(parser, &$$)) { 174 if (parser->methods.array_create == php_json_parser_array_create) { 177 parser->methods.array_create(parser, &$$); 186 parser->methods.array_create(parser, &$$); 187 parser->methods.array_append(parser, &$$, &$1); [all …]
|
/PHP-8.2/ext/pdo_mysql/tests/ |
H A D | pdo_mysql_interface.phpt | 37 $methods = get_class_methods($classname); 38 foreach ($methods as $k => $method) { 41 unset($methods[$k]); 45 unset($methods[$k]); 49 printf("Dumping missing class methods\n"); 52 if (!empty($methods)) { 53 printf("Found more methods than expected, dumping list\n"); 54 var_dump($methods);
|
/PHP-8.2/ext/reflection/tests/ |
H A D | ReflectionClass_getMethods_003.phpt | 24 echo "No methods:"; 27 echo "Public methods:"; 30 echo "Private methods:"; 33 echo "Public or static methods:"; 36 echo "Private or static methods:"; 42 No methods:array(0) { 44 Public methods:array(4) { 74 Private methods:array(4) { 104 Public or static methods:array(6) { 148 Private or static methods:array(6) {
|
H A D | ReflectionClass_toString_003.phpt | 2 …verify 'inherits', 'overwrites' and 'prototype' parts of method representation with private methods 38 - Static methods [0] { 62 - Static methods [0] { 86 - Static methods [0] { 107 - Static methods [0] {
|
H A D | ReflectionClass_toString_002.phpt | 38 - Static methods [0] { 62 - Static methods [0] { 86 - Static methods [0] { 110 - Static methods [0] {
|
H A D | traits002.phpt | 27 - Static methods [0] { 46 - Static methods [0] {
|
H A D | bug26695.phpt | 15 $methods = $class->getMethods(); 16 $params = $methods[0]->getParameters();
|
H A D | bug45571.phpt | 2 Bug #45571 (ReflectionClass::__toString() shows superclasses' private static methods.) 32 - Static methods [0] {
|
H A D | bug37964.phpt | 2 Reflection Bug #37964 (Reflection shows private methods of parent class) 35 - Static methods [0] {
|
/PHP-8.2/ext/zip/tests/ |
H A D | compression_methods.phpt | 2 Recognition of compression methods 4 This test is supposed to cover all compression methods that are recognized by 5 libzip, but for now only 6 methods are available in compression_methods.zip. 11 $methods = array( 21 foreach ($methods as $filename => $method) {
|
H A D | oo_supported.phpt | 12 $methods = [ 18 foreach($methods as $method => $name) { 24 $methods = [ 31 foreach($methods as $method => $name) {
|
/PHP-8.2/ext/mysqli/tests/ |
H A D | mysqli_class_mysqli_driver_interface.phpt | 14 $methods = get_class_methods($driver); 17 foreach ($methods as $k => $method) { 19 unset($expected_methods[$method], $methods[$k]); 23 printf("Dumping list of missing methods.\n"); 26 if (!empty($methods)) { 27 printf("Dumping list of unexpected methods.\n"); 28 var_dump($methods); 30 if (empty($expected_methods) && empty($methods)) {
|
H A D | mysqli_class_mysqli_stmt_interface.phpt | 22 $methods = get_class_methods($stmt); 47 foreach ($methods as $k => $method) { 49 unset($methods[$k]); 55 unset($methods[$k]); 58 if (!empty($methods)) { 59 printf("More methods found than indicated. Dumping list of unexpected methods.\n"); 60 var_dump($methods); 63 printf("Some methods are missing. Dumping list of missing methods.\n"); 66 if (empty($methods) && empty($expected_methods))
|
H A D | mysqli_class_mysqli_result_interface.phpt | 26 $methods = get_class_methods($mysqli_result); 46 foreach ($methods as $k => $method) { 49 unset($methods[$k]); 54 unset($methods[$k]); 59 printf("Dumping list of missing methods.\n"); 62 if (!empty($methods)) { 63 printf("Dumping list of unexpected methods.\n"); 64 var_dump($methods); 66 if (empty($expected_methods) && empty($methods))
|
/PHP-8.2/Zend/tests/ |
H A D | bug44414.phpt | 2 Bug #44414 (incomplete reporting about abstract methods) 15 …error: Class C contains 2 abstract methods and must therefore be declared abstract or implement th…
|
/PHP-8.2/ext/pdo/ |
H A D | pdo_dbh.c | 152 if (dbh->methods->fetch_err) { in pdo_handle_error() 328 if (pdbh->methods->check_liveness && FAILURE == (pdbh->methods->check_liveness)(pdbh)) { in PHP_METHOD() 610 if (!dbh->methods->begin) { in PHP_METHOD() 1010 if (!dbh->methods->last_id) { in PHP_METHOD() 1187 if (!dbh->methods->quoter) { in PHP_METHOD() 1250 if (!dbh || !dbh->methods || !dbh->methods->get_driver_methods) { in pdo_hash_methods() 1344 if (dbh->methods && dbh->methods->get_gc) { in dbh_get_gc() 1386 if (dbh->methods) { in dbh_free() 1387 dbh->methods->closer(dbh); in dbh_free() 1422 dbh->methods->rollback(dbh); in pdo_dbh_free_storage() [all …]
|
/PHP-8.2/ext/intl/tests/ |
H A D | locale_bug74439.phpt | 2 Bug #74439 Wrong reflection on the Locale methods 8 $methods = [ 29 foreach ($methods as $method) {
|
/PHP-8.2/ext/dom/tests/ |
H A D | not_unserializable.phpt | 27 Unserialization of 'DOMDocument' is not allowed, unless unserialization methods are implemented in … 28 Unserialization of 'DOMNode' is not allowed, unless unserialization methods are implemented in a su… 29 Unserialization of 'DOMNameSpaceNode' is not allowed, unless unserialization methods are implemente…
|
H A D | not_serializable.phpt | 39 Serialization of 'DOMDocument' is not allowed, unless serialization methods are implemented in a su… 40 Serialization of 'DOMElement' is not allowed, unless serialization methods are implemented in a sub… 42 Serialization of 'DOMNameSpaceNode' is not allowed, unless serialization methods are implemented in…
|
/PHP-8.2/scripts/dev/ |
H A D | search_underscores.php | 84 foreach($classes as $classname => &$methods) { 86 ksort($methods); 87 foreach($methods as $method) {
|
/PHP-8.2/tests/classes/ |
H A D | inheritance_007.phpt | 2 Ensure private methods with the same name are not checked for inheritance rules - final 41 Warning: Private methods cannot be final as they are never overridden by other classes %s 43 Warning: Private methods cannot be final as they are never overridden by other classes %s
|
H A D | abstract_static.phpt | 2 ZE2 A static abstract methods 34 …ethod and must therefore be declared abstract or implement the remaining methods (fail::func) in %…
|
/PHP-8.2/Zend/tests/traits/bugs/ |
H A D | abstract-methods01.phpt | 2 Abstract Trait Methods should behave like common abstract methods. 19 …ethod and must therefore be declared abstract or implement the remaining methods (%s) in %s on lin…
|