Lines Matching refs:newfile
3515 char *oldfile, *newfile, *error; local
3522 …if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "ss", &oldfile, &oldfile_len, &newfile, &newf…
3528 "Cannot copy \"%s\" to \"%s\", phar is read-only", oldfile, newfile);
3535 …ot be copied to file \"%s\", cannot copy Phar meta-file in %s", oldfile, newfile, phar_obj->arc.ar…
3539 if (newfile_len >= sizeof(".phar")-1 && !memcmp(newfile, ".phar", sizeof(".phar")-1)) {
3542 …be copied to file \"%s\", cannot copy to Phar meta-file in %s", oldfile, newfile, phar_obj->arc.ar…
3548 …"file \"%s\" cannot be copied to file \"%s\", file does not exist in %s", oldfile, newfile, phar_o…
3552 if (zend_hash_exists(&phar_obj->arc.archive->manifest, newfile, (uint) newfile_len)) {
3553 …if (SUCCESS == zend_hash_find(&phar_obj->arc.archive->manifest, newfile, (uint) newfile_len, (void…
3555 …copied to file \"%s\", file must not already exist in phar %s", oldfile, newfile, phar_obj->arc.ar…
3560 if (phar_path_check(&newfile, &newfile_len, &pcr_error) > pcr_is_ok) {
3562 …"file \"%s\" contains invalid characters %s, cannot be copied from \"%s\" in phar %s", newfile, pc…
3594 newentry.filename = estrndup(newfile, newfile_len);
3608 …zend_hash_add(&oldentry->phar->manifest, newfile, newfile_len, (void*)&newentry, sizeof(phar_entry…
5300 ZEND_ARG_INFO(0, newfile)