Home
last modified time | relevance | path

Searched refs:factory (Results 1 – 25 of 175) sorted by last modified time

1234567

/PHP-5.4/tests/classes/
H A Dfactory_001.phpt2 ZE2 factory objects
H A Dfactory_and_singleton_001.phpt2 ZE2 factory and singleton, test 1
13 static function factory($x) {
57 $x = test::factory(1);
58 $y = test::factory(2);
H A Dfactory_and_singleton_002.phpt2 ZE2 factory and singleton, test 2
13 static function factory($x) {
57 $x = test::factory(1);
58 $y = test::factory(2);
H A Dfactory_and_singleton_003.phpt2 ZE2 factory and singleton, test 3
H A Dfactory_and_singleton_004.phpt2 ZE2 factory and singleton, test 4
H A Dfactory_and_singleton_005.phpt2 ZE2 factory and singleton, test 5
H A Dfactory_and_singleton_006.phpt2 ZE2 factory and singleton, test 6
H A Dfactory_and_singleton_007.phpt2 ZE2 factory and singleton, test 7
H A Dfactory_and_singleton_008.phpt2 ZE2 factory and singleton, test 8
H A Dfactory_and_singleton_009.phpt2 ZE2 factory and singleton, test 9
H A Dfactory_and_singleton_010.phpt2 ZE2 factory and singleton, test 10
/PHP-5.4/main/streams/
H A Dfilter.c47 …am_filter_register_factory(const char *filterpattern, php_stream_filter_factory *factory TSRMLS_DC) in php_stream_filter_register_factory()
49 …am_filters_hash, (char*)filterpattern, strlen(filterpattern) + 1, factory, sizeof(*factory), NULL); in php_stream_filter_register_factory()
58 …_register_factory_volatile(const char *filterpattern, php_stream_filter_factory *factory TSRMLS_DC) in php_stream_filter_register_factory_volatile()
68 …stream_filters), (char*)filterpattern, strlen(filterpattern) + 1, factory, sizeof(*factory), NULL); in php_stream_filter_register_factory_volatile()
255 php_stream_filter_factory *factory = NULL; in php_stream_filter_create() local
262 if (SUCCESS == zend_hash_find(filter_hash, (char*)filtername, n + 1, (void**)&factory)) { in php_stream_filter_create()
263 filter = factory->create_filter(filtername, filterparams, persistent TSRMLS_CC); in php_stream_filter_create()
274 if (SUCCESS == zend_hash_find(filter_hash, wildname, strlen(wildname) + 1, (void**)&factory)) { in php_stream_filter_create()
275 filter = factory->create_filter(filtername, filterparams, persistent TSRMLS_CC); in php_stream_filter_create()
286 if (factory == NULL) in php_stream_filter_create()
H A Dphp_stream_filter_api.h149 …m_filter_register_factory(const char *filterpattern, php_stream_filter_factory *factory TSRMLS_DC);
151 …register_factory_volatile(const char *filterpattern, php_stream_filter_factory *factory TSRMLS_DC);
H A Dphp_stream_transport.h37 PHPAPI int php_stream_xport_register(char *protocol, php_stream_transport_factory factory TSRMLS_DC…
H A Dtransports.c32 PHPAPI int php_stream_xport_register(char *protocol, php_stream_transport_factory factory TSRMLS_DC) in php_stream_xport_register()
34 …return zend_hash_update(&xport_hash, protocol, strlen(protocol) + 1, &factory, sizeof(factory), NU… in php_stream_xport_register()
61 php_stream_transport_factory *factory = NULL; in _php_stream_xport_create() local
110 if (FAILURE == zend_hash_find(&xport_hash, (char*)tmp, n + 1, (void**)&factory)) { in _php_stream_xport_create()
126 if (factory == NULL) { in _php_stream_xport_create()
132 stream = (*factory)(protocol, n, in _php_stream_xport_create()
/PHP-5.4/ext/standard/
H A Dfilters.c2144 php_stream_filter_factory *factory; member
2165 standard_filters[i].factory in PHP_MINIT_FUNCTION()
/PHP-5.4/ext/pdo_pgsql/tests/
H A Dbug48764.phpt10 $db = PDOTest::factory();
53 $db = PDOTest::factory('PDO', false);
66 $db = PDOTest::factory('PDO', false);
80 $db = PDOTest::factory('PDO', false);
/PHP-5.4/ext/pdo_mysql/tests/
H A Dpdo_mysql_stmt_fetch_serialize.phpt14 $db = MySQLPDOTest::factory();
121 $db = MySQLPDOTest::factory();
H A Dpdo_mysql_stmt_getcolumnmeta.phpt9 $db = MySQLPDOTest::factory();
19 $db = MySQLPDOTest::factory();
H A Dpdo_mysql_stmt_multiquery.phpt34 $db = MySQLPDOTest::factory();
41 $db = MySQLPDOTest::factory();
H A Dpdo_mysql_stmt_nextrowset.phpt8 $db = MySQLPDOTest::factory();
25 $db = MySQLPDOTest::factory();
76 $db = MySQLPDOTest::factory();
85 $db = MySQLPDOTest::factory();
92 $db = MySQLPDOTest::factory();
H A Dpdo_mysql_types_zerofill.phpt89 $db = MySQLPDOTest::factory();
124 $db = MySQLPDOTest::factory();
H A Dpecl_bug_5200.phpt24 $db = MySQLPDOTest::factory();
H A Dpecl_bug_5780.phpt32 $db = MySQLPDOTest::factory();
H A Dpecl_bug_5802.phpt40 $db = MySQLPDOTest::factory();

Completed in 94 milliseconds

1234567