/PHP-8.0/ext/oci8/ |
H A D | oci8_collection.c | 52 collection->collection = NULL; in php_oci_collection_create() 205 collection->tdo, in php_oci_collection_create() 209 (dvoid **) &(collection->collection) in php_oci_collection_create() 333 (OCIColl *) collection->collection in php_oci_collection_append_date() 374 (OCIColl *) collection->collection in php_oci_collection_append_number() 412 (OCIColl *) collection->collection in php_oci_collection_append_string() 488 collection->collection, in php_oci_collection_element_get() 626 (OCIColl *) collection->collection in php_oci_collection_element_set_date() 668 (OCIColl *) collection->collection in php_oci_collection_element_set_number() 707 (OCIColl *) collection->collection in php_oci_collection_element_set_string() [all …]
|
H A D | php_oci8_int.h | 204 OCIColl *collection; /* collection handle */ member 385 #define PHP_OCI_ZVAL_TO_COLLECTION(zval, collection) \ argument 407 #define PHP_OCI_ZVAL_TO_COLLECTION_EX(zval, collection) \ argument 463 int php_oci_collection_size(php_oci_collection *collection, sb4 *size); 464 int php_oci_collection_max(php_oci_collection *collection, zend_long *max); 465 int php_oci_collection_trim(php_oci_collection *collection, zend_long trim_size); 466 int php_oci_collection_append(php_oci_collection *collection, char *element, int element_len); 469 int php_oci_collection_element_set_null(php_oci_collection *collection, zend_long index); 474 void php_oci_collection_close(php_oci_collection *collection); 475 int php_oci_collection_append_null(php_oci_collection *collection); [all …]
|
H A D | oci8.stub.php | 471 function oci_free_collection(OCICollection $collection): bool {} argument 477 function ocifreecollection(OCICollection $collection): bool {} argument 479 function oci_collection_append(OCICollection $collection, string $value): bool {} argument 485 function ocicollappend(OCICollection $collection, string $value): bool {} argument 503 function ocicollassignelem(OCICollection $collection, int $index, string $value): bool {} argument 505 function oci_collection_size(OCICollection $collection): int|false {} argument 511 function ocicollsize(OCICollection $collection): int|false {} argument 513 function oci_collection_max(OCICollection $collection): int|false {} argument 519 function ocicollmax(OCICollection $collection): int|false {} argument 521 function oci_collection_trim(OCICollection $collection, int $num): bool {} argument [all …]
|
H A D | oci8_interface.c | 2084 php_oci_collection *collection; in PHP_FUNCTION() local 2095 PHP_OCI_ZVAL_TO_COLLECTION(tmp, collection); in PHP_FUNCTION() 2097 zend_list_close(collection->id); in PHP_FUNCTION() 2106 php_oci_collection *collection; in PHP_FUNCTION() local 2119 PHP_OCI_ZVAL_TO_COLLECTION(tmp, collection); in PHP_FUNCTION() 2132 php_oci_collection *collection; in PHP_FUNCTION() local 2186 php_oci_collection *collection; in PHP_FUNCTION() local 2213 php_oci_collection *collection; in PHP_FUNCTION() local 2238 php_oci_collection *collection; in PHP_FUNCTION() local 2263 php_oci_collection *collection; in PHP_FUNCTION() local [all …]
|
H A D | oci8_arginfo.h | 377 ZEND_ARG_OBJ_INFO(0, collection, OCICollection, 0) 383 ZEND_ARG_OBJ_INFO(0, collection, OCICollection, 0) 390 ZEND_ARG_OBJ_INFO(0, collection, OCICollection, 0) 402 ZEND_ARG_OBJ_INFO(0, collection, OCICollection, 0) 410 ZEND_ARG_OBJ_INFO(0, collection, OCICollection, 0) 420 ZEND_ARG_OBJ_INFO(0, collection, OCICollection, 0)
|
/PHP-8.0/ext/oci8/tests/ |
H A D | bug32325.phpt | 2 Bug #32325 (Cannot retrieve collection using OCI8) 23 $collection = oci_new_collection($c, "BUG32325_T"); 31 oci_bind_by_name($stmt, ":list", $collection, -1, OCI_B_NTY); 34 var_dump($collection->size()); 35 var_dump($collection->getelem(1)); 36 var_dump($collection->getelem(2));
|
H A D | bug42134.phpt | 2 Bug #42134 (Collection error for invalid collection name) 13 // Test collection creation error for normal connection 22 $collection = oci_new_collection($c, "ABC"); 23 if (!$collection) { 29 // Test collection creation error for new connection 38 $collection = oci_new_collection($c, "DEF"); 39 if (!$collection) { 45 // Test collection creation error for persistent connection 54 $collection = oci_new_collection($c, "GHI"); 55 if (!$collection) {
|
H A D | coll_002_func.phpt | 31 ["collection"]=> 32 resource(%d) of type (oci8 collection) 35 string(%d) "oci_collection_size(): supplied resource is not a valid oci8 collection resource"
|
H A D | coll_002.phpt | 32 ["collection"]=> 33 resource(%d) of type (oci8 collection) 36 string(%d) "OCICollection::size(): supplied resource is not a valid oci8 collection resource"
|
H A D | coll_001.phpt | 24 ["collection"]=> 25 resource(%d) of type (oci8 collection)
|
H A D | bug44113.phpt | 2 Bug #44113 (New collection creation can fail with OCI-22303) 28 print "Failed new collection creation on $x\n";
|
H A D | coll_003.phpt | 2 collection methods
|
H A D | coll_003_func.phpt | 2 collection methods
|
H A D | coll_019.phpt | 2 Test collection Oracle error handling collections and numbers (2)
|
/PHP-8.0/ext/simplexml/tests/ |
H A D | bug41582.phpt | 9 <collection></collection>'); 18 <collection><movie><characters><character><name>Miss Coder</name></character></characters></movie><…
|
/PHP-8.0/ext/xsl/tests/ |
H A D | bug53965.phpt | 13 $xml->load($base . DIRECTORY_SEPARATOR . 'collection.xml'); 16 $xsl->load($base . DIRECTORY_SEPARATOR . 'collection.xsl'); 24 Hey! Welcome to Nicolas Eliaszewicz's sweet CD collection!
|
/PHP-8.0/ext/xsl/tests/53965/ |
H A D | collection.xsl | 7 <xsl:template match="collection"> matchedTemplate 8 Hey! Welcome to <xsl:value-of select="$owner"/>'s sweet CD collection!
|
/PHP-8.0/Zend/tests/ |
H A D | bug32674.phpt | 5 class collection implements Iterator { 48 $col = new collection();
|
H A D | bug69989_1.phpt | 2 Bug #69989: Cycle collection for yielded values
|
H A D | gc_012.phpt | 2 GC 012: collection of many loops at once
|
H A D | gc_023.phpt | 2 GC 023: Root buffer overflow (automatic collection)
|
H A D | bug69989_3.phpt | 2 Generator cycle collection edge cases
|
/PHP-8.0/ext/spl/tests/ |
H A D | bug65967.phpt | 2 Bug #65967: SplObjectStorage contains corrupt member variables after garbage collection
|
/PHP-8.0/ext/standard/tests/general_functions/ |
H A D | bug70249.phpt | 9 … make regular flush before other shutdown functions, which allows session data collection and so on
|
/PHP-8.0/ext/session/tests/ |
H A D | session_set_save_handler_basic.phpt | 46 echo "Garbage collection..\n"; 104 Garbage collection..
|