Home
last modified time | relevance | path

Searched refs:cd (Results 1 – 25 of 66) sorted by relevance

123

/PHP-7.3/ext/zip/lib/
H A Dzip_open.c278 zip_cdir_t *cd; in _zip_read_cdir() local
305 if (cd == NULL) in _zip_read_cdir()
311 if (cd->offset + cd->size > buf_offset + eocd_offset) { in _zip_read_cdir()
314 _zip_cdir_free(cd); in _zip_read_cdir()
406 ok = ((zip_uint64_t)offset == cd->offset + cd->size); in _zip_read_cdir()
418 return cd; in _zip_read_cdir()
451 j = cd->entry[i].orig->offset + cd->entry[i].orig->comp_size in _zip_checkcons()
669 zip_cdir_t *cd; in _zip_read_eocd() local
721 return cd; in _zip_read_eocd()
728 zip_cdir_t *cd; in _zip_read_eocd64() local
[all …]
H A Dzip_dirent.c53 if (!cd) in _zip_cdir_free()
58 free(cd->entry); in _zip_cdir_free()
60 free(cd); in _zip_cdir_free()
67 zip_cdir_t *cd; in _zip_cdir_new() local
70 if ((cd=(zip_cdir_t *)malloc(sizeof(*cd))) == NULL) { in _zip_cdir_new()
76 cd->entry = NULL; in _zip_cdir_new()
79 free(cd); in _zip_cdir_new()
86 cd->nentry = cd->nentry_alloc = nentry; in _zip_cdir_new()
87 cd->size = cd->offset = 0; in _zip_cdir_new()
88 cd->comment = NULL; in _zip_cdir_new()
[all …]
/PHP-7.3/Zend/tests/
H A Dbug64677.phpt10 $cat->show_output('Files: ', trim(`cd .`)); // this gives invalid args to shell_exec
11 $cat->show_output('Files: ', `cd .`); // this causes a segmentation fault
12 $cat->show_output(`cd .`); // this causes a segmentation fault
17 show_outputa('Files: ', `cd .`); // this works as expected
H A Dforeach_list_001.phpt39 string(2) "cd"
/PHP-7.3/ext/reflection/tests/
H A Dbug43926.phpt24 $cd = $rd->newInstance();
37 print("Is? A ". ($ra->isInstance($cd) ? 'true' : 'false') .", instanceof: ". (($cd instanceof A) ? …
38 print("Is? C ". ($rc->isInstance($cd) ? 'true' : 'false') .", instanceof: ". (($cd instanceof C) ? …
39 print("Is? D ". ($rd->isInstance($cd) ? 'true' : 'false') .", instanceof: ". (($cd instanceof D) ? …
40 print("Is? E ". ($re->isInstance($cd) ? 'true' : 'false') .", instanceof: ". (($cd instanceof E) ? …
/PHP-7.3/ext/standard/tests/strings/
H A Dbug45166.phpt5 echo substr('cd', -3) . "\n";
9 cd
/PHP-7.3/tests/basic/
H A D011.phpt6 ab+cd+ef+123+test
19 1: cd
H A D012.phpt9 ab cd ef 123 test
22 1: cd
/PHP-7.3/ext/pcre/tests/
H A Dbug21732.phpt15 var_dump(preg_replace_callback("/(ab)(cd)(e)/", array(new foo(), "cb"), 'abcde'));
25 string(2) "cd"
/PHP-7.3/ext/iconv/
H A Diconv.c556 iconv_t cd; in php_iconv_string() local
609 iconv_close(cd); in php_iconv_string()
618 iconv_t cd; in php_iconv_string()
695 iconv_close(cd); in php_iconv_string()
733 iconv_t cd; in _php_iconv_strlen() local
802 iconv_close(cd); in _php_iconv_strlen()
965 iconv_t cd; in _php_iconv_strpos() local
1137 iconv_close(cd); in _php_iconv_strpos()
1460 iconv_close(cd); in _php_iconv_mime_encode()
2027 iconv_close(cd); in _php_iconv_mime_decode()
[all …]
H A Dconfig.m4131 iconv_t cd;
132 cd = iconv_open( "*blahblah*", "*blahblahblah*" );
133 if (cd == (iconv_t)(-1)) {
140 iconv_close( cd );
163 iconv_t cd = iconv_open( "UTF-8//IGNORE", "UTF-8" );
164 if(cd == (iconv_t)-1) {
171 size_t result = iconv(cd, (char **) &in_p, &in_left, (char **) &out_p, &out_left);
/PHP-7.3/ext/standard/tests/file/
H A Dbug41874.phpt9 $result = exec('cd 1:\non_existent; dir nonexistent');
11 system('cd 1:\non_existent; dir nonexistent');
H A Dbug41874_3.phpt13 system('cd 1:\\non_existent; dir nonexistent');
H A Dbug41874_2.phpt13 $result = exec('cd 1:\\non_existent; dir nonexistent');
/PHP-7.3/ext/standard/
H A DMakefile.frag.w322 cd $(PHP_SRC_DIR)
6 cd $(PHP_SRC_DIR)
/PHP-7.3/ext/pdo_oci/tests/
H A Dpdo_oci_quote1.phpt22 $a = array(null, "", "a", "ab", "abc", "ab'cd", "a\b\n", "'", "''", "a'", "'z", "a''b", '"');
88 Unquoted : string(5) "ab'cd"
89 Quoted : string(8) "'ab''cd'"
94 string(5) "ab'cd"
/PHP-7.3/ext/dba/tests/
H A Ddba_db4_017.phpt2 DBA DB4 file creation dba_open("cd")
15 if (($db_file = dba_open($db_filename, "cd", $handler)) !== FALSE) {
/PHP-7.3/ext/pdo/
H A DMakefile.frag.w322 cd $(PHP_SRC_DIR)
/PHP-7.3/ext/phar/
H A DMakefile.frag.w322 cd $(PHP_SRC_DIR)
/PHP-7.3/ext/standard/tests/array/
H A Darray_keys_variation_001.phpt18 array("a" => "abcd", "a" => "", "ab" => -6, "cd" => -0.5 ),
133 string(2) "cd"
/PHP-7.3/ext/xsl/tests/53965/
H A Dinclude.xsl2 <xsl:template match="cd"> matchedTemplate
/PHP-7.3/main/
H A Drfc1867.c796 char *cd = NULL, *param = NULL, *filename = NULL, *tmp = NULL; local
806 if ((cd = php_mime_get_hdr_value(header, "Content-Disposition"))) {
810 while (isspace(*cd)) {
811 ++cd;
814 while (*cd && (pair = getword(mbuff->input_encoding, &cd, ';')))
818 while (isspace(*cd)) {
819 ++cd;
1175 if (cancel_upload || !(cd = php_mime_get_hdr_value(header, "Content-Type"))) {
1176 cd = "";
1179 s = strchr(cd, ';');
[all …]
/PHP-7.3/ext/com_dotnet/tests/
H A Dbug63208.phpt9 $string = "\u{0905}b\0cd";
/PHP-7.3/sapi/apache2handler/
H A DREADME26 $ cd apache-2.x
27 $ cd src
36 $ cd php-4.x
/PHP-7.3/ext/gd/libgd/
H A Dgdkanji.c346 iconv_t cd; in do_convert() local
349 if ((cd = iconv_open (EUCSTR, code)) == (iconv_t) - 1) in do_convert()
364 if ((int) iconv(cd, (char **) &from, &from_len, (char **) &to, &to_len) == -1) in do_convert()
380 if (iconv_close (cd) != 0) in do_convert()

Completed in 59 milliseconds

123