Home
last modified time | relevance | path

Searched refs:collection (Results 1 – 25 of 34) sorted by relevance

12

/PHP-8.0/ext/oci8/
H A Doci8_collection.c52 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 Dphp_oci8_int.h204 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 Doci8.stub.php471 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 Doci8_interface.c2084 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 Doci8_arginfo.h377 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 Dbug32325.phpt2 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 Dbug42134.phpt2 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 Dcoll_002_func.phpt31 ["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 Dcoll_002.phpt32 ["collection"]=>
33 resource(%d) of type (oci8 collection)
36 string(%d) "OCICollection::size(): supplied resource is not a valid oci8 collection resource"
H A Dcoll_001.phpt24 ["collection"]=>
25 resource(%d) of type (oci8 collection)
H A Dbug44113.phpt2 Bug #44113 (New collection creation can fail with OCI-22303)
28 print "Failed new collection creation on $x\n";
H A Dcoll_003.phpt2 collection methods
H A Dcoll_003_func.phpt2 collection methods
H A Dcoll_019.phpt2 Test collection Oracle error handling collections and numbers (2)
/PHP-8.0/ext/simplexml/tests/
H A Dbug41582.phpt9 <collection></collection>');
18 <collection><movie><characters><character><name>Miss Coder</name></character></characters></movie><…
/PHP-8.0/ext/xsl/tests/
H A Dbug53965.phpt13 $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 Dcollection.xsl7 <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 Dbug32674.phpt5 class collection implements Iterator {
48 $col = new collection();
H A Dbug69989_1.phpt2 Bug #69989: Cycle collection for yielded values
H A Dgc_012.phpt2 GC 012: collection of many loops at once
H A Dgc_023.phpt2 GC 023: Root buffer overflow (automatic collection)
H A Dbug69989_3.phpt2 Generator cycle collection edge cases
/PHP-8.0/ext/spl/tests/
H A Dbug65967.phpt2 Bug #65967: SplObjectStorage contains corrupt member variables after garbage collection
/PHP-8.0/ext/standard/tests/general_functions/
H A Dbug70249.phpt9 … make regular flush before other shutdown functions, which allows session data collection and so on
/PHP-8.0/ext/session/tests/
H A Dsession_set_save_handler_basic.phpt46 echo "Garbage collection..\n";
104 Garbage collection..

Completed in 55 milliseconds

12