Home
last modified time | relevance | path

Searched refs:changes (Results 1 – 25 of 92) sorted by relevance

1234

/PHP-7.3/ext/zip/lib/
H A Dzip_file_set_external_attributes.c60 if (e->changes == NULL) { in zip_file_set_external_attributes()
66 … e->changes->version_madeby = (zip_uint16_t)((opsys << 8) | (e->changes->version_madeby & 0xff)); in zip_file_set_external_attributes()
67 e->changes->ext_attrib = attributes; in zip_file_set_external_attributes()
68 e->changes->changed |= ZIP_DIRENT_ATTRIBUTES; in zip_file_set_external_attributes()
70 else if (e->changes) { in zip_file_set_external_attributes()
71 e->changes->changed &= ~ZIP_DIRENT_ATTRIBUTES; in zip_file_set_external_attributes()
72 if (e->changes->changed == 0) { in zip_file_set_external_attributes()
73 _zip_dirent_free(e->changes); in zip_file_set_external_attributes()
74 e->changes = NULL; in zip_file_set_external_attributes()
77 …e->changes->version_madeby = (zip_uint16_t)((unchanged_opsys << 8) | (e->changes->version_madeby &… in zip_file_set_external_attributes()
[all …]
H A Dzip_file_set_comment.c72 if (e->changes) { in zip_file_set_comment()
73 _zip_string_free(e->changes->comment); in zip_file_set_comment()
74 e->changes->comment = NULL; in zip_file_set_comment()
75 e->changes->changed &= ~ZIP_DIRENT_COMMENT; in zip_file_set_comment()
84 if (e->changes == NULL) { in zip_file_set_comment()
85 if ((e->changes=_zip_dirent_clone(e->orig)) == NULL) { in zip_file_set_comment()
91 e->changes->comment = cstr; in zip_file_set_comment()
92 e->changes->changed |= ZIP_DIRENT_COMMENT; in zip_file_set_comment()
96 if (e->changes && e->changes->changed == 0) { in zip_file_set_comment()
97 _zip_dirent_free(e->changes); in zip_file_set_comment()
[all …]
H A Dzip_set_name.c91 if (!same_as_orig && e->changes == NULL) { in _zip_set_name()
104 if (e->changes) { in _zip_set_name()
105 old_str = e->changes->filename; in _zip_set_name()
133 if (e->changes) { in _zip_set_name()
135 _zip_string_free(e->changes->filename); in _zip_set_name()
137 if (e->changes->changed == 0) { in _zip_set_name()
138 _zip_dirent_free(e->changes); in _zip_set_name()
139 e->changes = NULL; in _zip_set_name()
151 _zip_string_free(e->changes->filename); in _zip_set_name()
153 e->changes->changed |= ZIP_DIRENT_FILENAME; in _zip_set_name()
[all …]
H A Dzip_file_set_mtime.c54 if (e->changes == NULL) { in zip_file_set_mtime()
55 if ((e->changes=_zip_dirent_clone(e->orig)) == NULL) { in zip_file_set_mtime()
60 e->changes->last_mod = mtime; in zip_file_set_mtime()
61 e->changes->changed |= ZIP_DIRENT_LAST_MOD; in zip_file_set_mtime()
64 if (e->changes) { in zip_file_set_mtime()
65 e->changes->changed &= ~ZIP_DIRENT_LAST_MOD; in zip_file_set_mtime()
66 if (e->changes->changed == 0) { in zip_file_set_mtime()
67 _zip_dirent_free(e->changes); in zip_file_set_mtime()
68 e->changes = NULL; in zip_file_set_mtime()
H A Dzip_unchange_data.c45 …if (ze->changes != NULL && (ze->changes->changed & ZIP_DIRENT_COMP_METHOD) && ze->changes->comp_me… in _zip_unchange_data()
46 ze->changes->changed &= ~ZIP_DIRENT_COMP_METHOD; in _zip_unchange_data()
47 if (ze->changes->changed == 0) { in _zip_unchange_data()
48 _zip_dirent_free(ze->changes); in _zip_unchange_data()
49 ze->changes = NULL; in _zip_unchange_data()
H A Dzip_set_file_compression.c66 if (e->changes) { in zip_set_file_compression()
67 e->changes->changed &= ~ZIP_DIRENT_COMP_METHOD; in zip_set_file_compression()
68 if (e->changes->changed == 0) { in zip_set_file_compression()
69 _zip_dirent_free(e->changes); in zip_set_file_compression()
70 e->changes = NULL; in zip_set_file_compression()
75 if (e->changes == NULL) { in zip_set_file_compression()
76 if ((e->changes=_zip_dirent_clone(e->orig)) == NULL) { in zip_set_file_compression()
82 e->changes->comp_method = method; in zip_set_file_compression()
83 e->changes->changed |= ZIP_DIRENT_COMP_METHOD; in zip_set_file_compression()
H A Dzip_file_replace.c93 …if (za->entry[idx].orig != NULL && (za->entry[idx].changes == NULL || (za->entry[idx].changes->cha… in _zip_file_replace()
94 if (za->entry[idx].changes == NULL) { in _zip_file_replace()
95 if ((za->entry[idx].changes=_zip_dirent_clone(za->entry[idx].orig)) == NULL) { in _zip_file_replace()
101 za->entry[idx].changes->comp_method = ZIP_CM_REPLACED_DEFAULT; in _zip_file_replace()
102 za->entry[idx].changes->changed |= ZIP_DIRENT_COMP_METHOD; in _zip_file_replace()
H A Dzip_unchange.c58 …if (!allow_duplicates && za->entry[idx].changes && (za->entry[idx].changes->changed & ZIP_DIRENT_F… in _zip_unchange()
89 _zip_dirent_free(za->entry[idx].changes); in _zip_unchange()
90 za->entry[idx].changes = NULL; in _zip_unchange()
H A Dzip_entry.c42 _zip_dirent_free(e->changes); in _zip_entry_finalize()
50 e->changes = NULL; in _zip_entry_init()
H A Dzip_extra_field_api.c64 de = za->entry[idx].changes; in zip_file_extra_field_delete()
97 de = za->entry[idx].changes; in zip_file_extra_field_delete_by_id()
256 de = za->entry[idx].changes; in zip_file_extra_field_set()
343 if (e->changes && (e->changes->changed & ZIP_DIRENT_EXTRA_FIELD)) in _zip_file_extra_field_prepare_for_change()
351 if (e->changes == NULL) { in _zip_file_extra_field_prepare_for_change()
352 if ((e->changes=_zip_dirent_clone(e->orig)) == NULL) { in _zip_file_extra_field_prepare_for_change()
359 if ((e->changes->extra_fields=_zip_ef_clone(e->orig->extra_fields, &za->error)) == NULL) in _zip_file_extra_field_prepare_for_change()
362 e->changes->changed |= ZIP_DIRENT_EXTRA_FIELD; in _zip_file_extra_field_prepare_for_change()
/PHP-7.3/ext/standard/tests/strings/
H A Dbug24281.phpt7 print "$count changes were made.\n";
10 print "$count changes were made.\n";
13 3 changes were made.
14 3 changes were made.
H A Dbug20261.phpt2 Bug #20261 (str_rot13() changes too much)
H A Dbug22224.phpt2 Bug #22224 (implode changes object references in array)
/PHP-7.3/ext/mysqli/tests/
H A Dmysqli_insert_id_variation.phpt29 printf("[002] mysqli_option changes insert_id: %s", var_export($link->insert_id, true));
36 printf("[003] mysqli_debug_info changes insert_id: %s", var_export($link->insert_id, true));
43 printf("[004] mysqli_stat changes insert_id: %s", var_export($link->insert_id, true));
49 printf("[005] mysqli_kill changes insert_id: %s", var_export($link->insert_id, true));
55 printf("[006] mysqli_ping changes insert_id: %s", var_export($link->insert_id, true));
65 printf("[007] mysqli_change_user changes insert_id: %s", var_export($link->insert_id, true));
72 printf("[008a] mysqli_prepare changes insert_id: %s", var_export($link->insert_id, true));
83 printf("[009] stmt free changes insert_id: %s", var_export($link->insert_id, true));
H A Dmysqli_open_bug74432.phpt12 supported alternative, ensure changes doesn't cause BC breach. Otherwise,
13 the test should be removed once the undocumented behavior changes. */
/PHP-7.3/ext/sqlite3/tests/
H A Dsqlite3_32_changes.phpt2 SQLite3::changes empty str tests
14 echo $db->changes("dummy");
17 Warning: SQLite3::changes() expects exactly 0 parameters, 1 given in %s on line %d
H A Dsqlite3_31_changes.phpt2 SQLite3::changes (parameters) tests
12 var_dump($db->changes());
H A Dsqlite3_18_changes.phpt2 SQLite3::changes() tests
22 var_dump($db->changes());
/PHP-7.3/ext/standard/tests/network/
H A Dsocket_bug74429.phpt7 supported alternative, ensure changes doesn't cause BC breach. Otherwise,
8 the test should be removed once the undocumented behavior changes. */
/PHP-7.3/ext/standard/tests/file/
H A Dftruncate_bug76803.phpt2 Bug #76803 ftruncate changes file pointer
23 ftruncate($f, 2); // in 7.3 changes file pointer to 2
/PHP-7.3/
H A DUPGRADING.INTERNALS3 1. Internal API changes
33 2. Build system changes
34 a. Unix build system changes
35 b. Windows build system changes
38 3. Module changes
41 1. Internal API changes
185 2. Build system changes
188 a. Unix build system changes
193 b. Windows build system changes
207 3. Module changes
/PHP-7.3/ext/pcre/tests/
H A Dbug74873.phpt2 Bug #74873 (Minor BC break: PCRE_JIT changes output of preg_match())
/PHP-7.3/tests/classes/
H A Dstatic_properties_004.phpt12 echo "\nChanging one changes all the others:\n";
28 Changing one changes all the others:
/PHP-7.3/ext/standard/tests/general_functions/
H A Dbug79254.phpt2 Bug #79254 (getenv() w/o arguments not showing changes)
/PHP-7.3/ext/bcmath/libbcmath/
H A DChangeLog4 Many other changes/additions for getting a distribution

Completed in 34 milliseconds

1234