Home
last modified time | relevance | path

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

1234

/PHP-5.6/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 = (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 = (unchanged_opsys << 8) | (e->changes->version_madeby & 0xff); in zip_file_set_external_attributes()
[all …]
H A Dzip_file_set_comment.c74 if (e->changes) { in zip_file_set_comment()
75 _zip_string_free(e->changes->comment); in zip_file_set_comment()
76 e->changes->comment = NULL; in zip_file_set_comment()
77 e->changes->changed &= ~ZIP_DIRENT_COMMENT; in zip_file_set_comment()
86 if (e->changes == NULL) { in zip_file_set_comment()
87 if ((e->changes=_zip_dirent_clone(e->orig)) == NULL) { in zip_file_set_comment()
93 e->changes->comment = cstr; in zip_file_set_comment()
94 e->changes->changed |= ZIP_DIRENT_COMMENT; in zip_file_set_comment()
98 if (e->changes && e->changes->changed == 0) { in zip_file_set_comment()
99 _zip_dirent_free(e->changes); in zip_file_set_comment()
[all …]
H A Dzip_set_name.c86 if (e->changes) { in _zip_set_name()
87 _zip_string_free(e->changes->filename); in _zip_set_name()
88 e->changes->filename = NULL; in _zip_set_name()
89 e->changes->changed &= ~ZIP_DIRENT_FILENAME; in _zip_set_name()
98 if (e->changes == NULL) { in _zip_set_name()
99 if ((e->changes=_zip_dirent_clone(e->orig)) == NULL) { in _zip_set_name()
105 e->changes->filename = str; in _zip_set_name()
106 e->changes->changed |= ZIP_DIRENT_FILENAME; in _zip_set_name()
110 if (e->changes && e->changes->changed == 0) { in _zip_set_name()
111 _zip_dirent_free(e->changes); in _zip_set_name()
[all …]
H A Dzip_unchange_data.c46 …if (ze->changes != NULL && (ze->changes->changed & ZIP_DIRENT_COMP_METHOD) && ze->changes->comp_me… in _zip_unchange_data()
47 ze->changes->changed &= ~ZIP_DIRENT_COMP_METHOD; in _zip_unchange_data()
48 if (ze->changes->changed == 0) { in _zip_unchange_data()
49 _zip_dirent_free(ze->changes); in _zip_unchange_data()
50 ze->changes = NULL; in _zip_unchange_data()
H A Dzip_set_file_compression.c69 if (e->changes) { in zip_set_file_compression()
70 e->changes->changed &= ~ZIP_DIRENT_COMP_METHOD; in zip_set_file_compression()
71 if (e->changes->changed == 0) { in zip_set_file_compression()
72 _zip_dirent_free(e->changes); in zip_set_file_compression()
73 e->changes = NULL; in zip_set_file_compression()
78 if (e->changes == NULL) { in zip_set_file_compression()
79 if ((e->changes=_zip_dirent_clone(e->orig)) == NULL) { in zip_set_file_compression()
85 e->changes->comp_method = method; in zip_set_file_compression()
86 e->changes->changed |= ZIP_DIRENT_COMP_METHOD; in zip_set_file_compression()
H A Dzip_file_replace.c96 …if (za->entry[idx].orig != NULL && (za->entry[idx].changes == NULL || (za->entry[idx].changes->cha… in _zip_file_replace()
97 if (za->entry[idx].changes == NULL) { in _zip_file_replace()
98 if ((za->entry[idx].changes=_zip_dirent_clone(za->entry[idx].orig)) == NULL) { in _zip_file_replace()
104 za->entry[idx].changes->comp_method = ZIP_CM_REPLACED_DEFAULT; in _zip_file_replace()
105 za->entry[idx].changes->changed |= ZIP_DIRENT_COMP_METHOD; in _zip_file_replace()
H A Dzip_unchange.c60 …if (!allow_duplicates && za->entry[idx].changes && (za->entry[idx].changes->changed & ZIP_DIRENT_F… in _zip_unchange()
68 _zip_dirent_free(za->entry[idx].changes); in _zip_unchange()
69 za->entry[idx].changes = NULL; in _zip_unchange()
H A Dzip_entry.c43 _zip_dirent_free(e->changes); in _zip_entry_finalize()
52 e->changes = NULL; in _zip_entry_init()
H A Dzip_extra_field_api.c66 de = za->entry[idx].changes; in zip_file_extra_field_delete()
100 de = za->entry[idx].changes; in zip_file_extra_field_delete_by_id()
264 de = za->entry[idx].changes; in zip_file_extra_field_set()
351 if (e->changes && (e->changes->changed & ZIP_DIRENT_EXTRA_FIELD)) in _zip_file_extra_field_prepare_for_change()
359 if (e->changes == NULL) { in _zip_file_extra_field_prepare_for_change()
360 if ((e->changes=_zip_dirent_clone(e->orig)) == NULL) { in _zip_file_extra_field_prepare_for_change()
367 if ((e->changes->extra_fields=_zip_ef_clone(e->orig->extra_fields, &za->error)) == NULL) in _zip_file_extra_field_prepare_for_change()
370 e->changes->changed |= ZIP_DIRENT_EXTRA_FIELD; in _zip_file_extra_field_prepare_for_change()
H A Dzip_extra_field.c380 if (e->changes && e->changes->local_extra_fields_read == 0) { in _zip_read_local_ef()
381 e->changes->extra_fields = e->orig->extra_fields; in _zip_read_local_ef()
382 e->changes->local_extra_fields_read = 1; in _zip_read_local_ef()
/PHP-5.6/ext/standard/tests/strings/
H A Dbug24281.phpt11 print "$count changes were made.\n";
14 print "$count changes were made.\n";
17 3 changes were made.
18 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-5.6/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));
/PHP-5.6/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-5.6/
H A DUPGRADING.INTERNALS5 1. Internal API changes
9 d. Arginfo changes
18 2. Build system changes
19 a. Unix build system changes
20 b. Windows build system changes
24 1. Internal API changes
79 d. Arginfo changes
93 The following changes were applied to the zend_arg_info struct:
212 2. Build system changes
215 a. Unix build system changes
[all …]
/PHP-5.6/tests/classes/
H A Dstatic_properties_004.phpt12 echo "\nChanging one changes all the others:\n";
28 Changing one changes all the others:
/PHP-5.6/ext/bcmath/libbcmath/
H A DChangeLog4 Many other changes/additions for getting a distribution
/PHP-5.6/ext/simplexml/tests/
H A Dbug36611.phpt2 Bug #36611 (assignment to SimpleXML object attribute changes argument type to string)
/PHP-5.6/ext/opcache/tests/
H A Dbug65559.phpt2 Bug #65559 (cache not cleared if changes occur while running)
/PHP-5.6/ext/intl/tests/
H A Dbug14562.phpt2 Bug #14562 NumberFormatter breaks when locale changes
/PHP-5.6/ext/pdo_mysql/tests/
H A Dbug70389.phpt2 Bug #70389 (PDO constructor changes unrelated variables)
/PHP-5.6/ext/mbstring/
H A DREADME9 All changes made after 2002/5/19 are subject to be

Completed in 39 milliseconds

1234