Home
last modified time | relevance | path

Searched refs:dh (Results 1 – 11 of 11) sorted by relevance

/PHP-5.5/ext/standard/tests/dir/
H A Dopendir_variation4.phpt31 clean_dh($dh);
36 clean_dh($dh);
40 clean_dh($dh);
45 clean_dh($dh);
49 clean_dh($dh);
54 clean_dh($dh);
59 clean_dh($dh);
65 function clean_dh($dh){
66 if (is_resource($dh)) {
67 closedir($dh);
[all …]
H A Dclosedir_variation2.phpt21 $dh = opendir($directory);
24 var_dump(closedir($dh));
26 var_dump($dh);
29 var_dump(closedir($dh));
31 var_dump($dh);
H A Dreaddir_basic.phpt25 var_dump($dh = opendir($path));
27 while( FALSE !== ($file = readdir($dh)) ) {
36 var_dump($dh = opendir($path));
47 closedir($dh);
H A Dopendir_variation7.phpt70 var_dump($dh = opendir($dir_path));
72 if (is_resource($dh)) {
73 closedir($dh);
H A Dreaddir_variation5.phpt67 var_dump($dh = opendir($dir_path));
70 var_dump(readdir($dh));
72 closedir($dh);
H A Dopendir_variation1.phpt104 var_dump( $dh = opendir($input) );
105 if ($dh) {
106 closedir($dh);
H A Dopendir_variation2.phpt97 var_dump($dh = opendir($path, $input) );#
98 if ($dh) {
99 closedir($dh);
/PHP-5.5/ext/standard/tests/file/
H A Dfseek_dir_basic.phpt14 var_dump($dh = opendir($path));
16 while( FALSE !== ($files[] = readdir($dh)) ) {}
22 var_dump(fseek($dh, 20));
25 while( FALSE !== ($files[] = readdir($dh)) ) {}
31 var_dump(fseek($dh, 20, SEEK_END));
34 while( FALSE !== ($files[] = readdir($dh)) ) {}
39 closedir($dh);
H A Dbug24482.phpt19 $dh = opendir(".");
20 while (is_string($file = readdir($dh))) {
25 closedir($dh);
/PHP-5.5/ext/openssl/tests/
H A D006.phpt12 $dh = array("dh" => array());
16 openssl_pkey_get_details(openssl_pkey_new($dh));
/PHP-5.5/ext/openssl/
H A Dopenssl.c3044 if (NULL == pkey->pkey.dh->p || NULL == pkey->pkey.dh->priv_key) { in php_openssl_is_private_key()
3155 DH *dh = DH_new(); in PHP_FUNCTION() local
3156 if (dh) { in PHP_FUNCTION()
3161 if (dh->p && dh->g) { in PHP_FUNCTION()
3162 if (!dh->pub_key) { in PHP_FUNCTION()
3163 DH_generate_key(dh); in PHP_FUNCTION()
3169 DH_free(dh); in PHP_FUNCTION()
3445 if (pkey->pkey.dh != NULL) { in PHP_FUNCTION()
3446 zval *dh; in PHP_FUNCTION() local
3448 ALLOC_INIT_ZVAL(dh); in PHP_FUNCTION()
[all …]

Completed in 25 milliseconds