/PHP-8.1/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 | 476 function oci_free_collection(OCICollection $collection): bool {} argument 482 function ocifreecollection(OCICollection $collection): bool {} argument 484 function oci_collection_append(OCICollection $collection, string $value): bool {} argument 490 function ocicollappend(OCICollection $collection, string $value): bool {} argument 508 function ocicollassignelem(OCICollection $collection, int $index, string $value): bool {} argument 510 function oci_collection_size(OCICollection $collection): int|false {} argument 516 function ocicollsize(OCICollection $collection): int|false {} argument 518 function oci_collection_max(OCICollection $collection): int|false {} argument 524 function ocicollmax(OCICollection $collection): int|false {} argument 526 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.1/ext/oci8/tests/ |
H A D | bug32325.phpt | 2 Bug #32325 (Cannot retrieve collection using OCI8) 25 $collection = oci_new_collection($c, "BUG32325_T"); 33 oci_bind_by_name($stmt, ":list", $collection, -1, OCI_B_NTY); 36 var_dump($collection->size()); 37 var_dump($collection->getelem(1)); 38 var_dump($collection->getelem(2));
|
H A D | bug42134.phpt | 2 Bug #42134 (Collection error for invalid collection name) 15 // Test collection creation error for normal connection 24 $collection = oci_new_collection($c, "ABC"); 25 if (!$collection) { 31 // Test collection creation error for new connection 40 $collection = oci_new_collection($c, "DEF"); 41 if (!$collection) { 47 // Test collection creation error for persistent connection 56 $collection = oci_new_collection($c, "GHI"); 57 if (!$collection) {
|
H A D | coll_002_func.phpt | 33 ["collection"]=> 34 resource(%d) of type (oci8 collection) 37 string(%d) "oci_collection_size(): supplied resource is not a valid oci8 collection resource"
|
H A D | coll_002.phpt | 34 ["collection"]=> 35 resource(%d) of type (oci8 collection) 38 string(%d) "OCICollection::size(): supplied resource is not a valid oci8 collection resource"
|
H A D | coll_001.phpt | 26 ["collection"]=> 27 resource(%d) of type (oci8 collection)
|
H A D | bug44113.phpt | 2 Bug #44113 (New collection creation can fail with OCI-22303) 30 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
|
/PHP-8.1/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.1/ext/xsl/tests/ |
H A D | bug53965.phpt | 11 $xml->load($base . DIRECTORY_SEPARATOR . 'collection.xml'); 14 $xsl->load($base . DIRECTORY_SEPARATOR . 'collection.xsl'); 22 Hey! Welcome to Nicolas Eliaszewicz's sweet CD collection!
|
H A D | transformToDoc_sxe_type_error.phpt | 15 $sxe = simplexml_load_file(__DIR__ . '/53965/collection.xml', AdvancedXMLElement::class); 19 $dom->load(__DIR__ . '/53965/collection.xsl');
|
/PHP-8.1/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.1/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.1/ext/spl/tests/ |
H A D | bug65967.phpt | 2 Bug #65967: SplObjectStorage contains corrupt member variables after garbage collection
|
/PHP-8.1/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.1/ext/session/tests/ |
H A D | session_set_save_handler_basic.phpt | 49 echo "Garbage collection..\n"; 108 Garbage collection..
|