Home
last modified time | relevance | path

Searched refs:dest (Results 51 – 75 of 103) sorted by relevance

12345

/PHP-5.5/ext/standard/tests/file/
H A Dcopy_variation5.phpt10 /* Prototype: bool copy ( string $source, string $dest );
11 Description: Makes a copy of the file source to dest.
H A Dcopy_variation5-win32.phpt10 /* Prototype: bool copy ( string $source, string $dest );
11 Description: Makes a copy of the file source to dest.
H A Dcopy_variation3.phpt10 /* Prototype: bool copy ( string $source, string $dest );
11 Description: Makes a copy of the file source to dest.
H A Dsymlink_to_symlink.phpt15 // symlink to a regular file using a relative dest
H A Drename_variation1.phpt39 // rename the src dir to a new dir in dest dir
H A Drename_variation1-win32.phpt46 // rename the src dir to a new dir in dest dir
H A Dcopy_variation1.phpt5 /* Prototype: bool copy ( string $source, string $dest );
6 Description: Makes a copy of the file source to dest.
H A Dcopy_variation2-win32.phpt10 /* Prototype: bool copy ( string $source, string $dest );
11 Description: Makes a copy of the file source to dest.
H A Dcopy_variation4.phpt13 /* Prototype: bool copy ( string $source, string $dest );
14 Description: Makes a copy of the file source to dest.
H A Dcopy_variation2.phpt10 /* Prototype: bool copy ( string $source, string $dest );
11 Description: Makes a copy of the file source to dest.
/PHP-5.5/ext/mbstring/libmbfl/mbfl/
H A Dmbfl_convert.c426 mbfl_convert_filter *dest) in mbfl_convert_filter_copy() argument
429 src->filter_copy(src, dest); in mbfl_convert_filter_copy()
433 *dest = *src; in mbfl_convert_filter_copy()
/PHP-5.5/main/
H A Dphp_streams.h439 PHPAPI size_t _php_stream_copy_to_stream(php_stream *src, php_stream *dest, size_t maxlen STREAMS_D…
440 #define php_stream_copy_to_stream(src, dest, maxlen) _php_stream_copy_to_stream((src), (dest), (max… argument
441 PHPAPI int _php_stream_copy_to_stream_ex(php_stream *src, php_stream *dest, size_t maxlen, size_t *…
442 #define php_stream_copy_to_stream_ex(src, dest, maxlen, len) _php_stream_copy_to_stream_ex((src), ( argument
H A Dphp_variables.c579 static void php_autoglobal_merge(HashTable *dest, HashTable *src TSRMLS_DC) in php_autoglobal_merge() argument
587 int globals_check = (dest == (&EG(symbol_table))); in php_autoglobal_merge()
593 …|| (key_type == HASH_KEY_IS_STRING && zend_hash_find(dest, string_key, string_key_len, (void **) &… in php_autoglobal_merge()
594 …|| (key_type == HASH_KEY_IS_LONG && zend_hash_index_find(dest, num_key, (void **)&dest_entry) != S… in php_autoglobal_merge()
600 zend_hash_update(dest, string_key, string_key_len, src_entry, sizeof(zval *), NULL); in php_autoglobal_merge()
605 zend_hash_index_update(dest, num_key, src_entry, sizeof(zval *), NULL); in php_autoglobal_merge()
/PHP-5.5/ext/mbstring/oniguruma/
H A Dregparse.c224 dest[len] = (UChar )0; in onig_strcpy()
274 if (dest) in strcat_capa()
1981 bsr1 = dest->bs; in and_cclass()
1982 buf1 = dest->mbuf; in and_cclass()
1996 if (bsr1 != dest->bs) { in and_cclass()
1998 bsr1 = dest->bs; in and_cclass()
2023 dest->mbuf = pbuf; in and_cclass()
2039 bsr1 = dest->bs; in or_cclass()
2040 buf1 = dest->mbuf; in or_cclass()
2056 bsr1 = dest->bs; in or_cclass()
[all …]
/PHP-5.5/ext/phar/
H A Dutil.c660 if (dest->link) { in phar_copy_entry_fp()
661 efree(dest->link); in phar_copy_entry_fp()
662 dest->link = NULL; in phar_copy_entry_fp()
663 dest->tar_type = (dest->is_tar ? TAR_FILE : '\0'); in phar_copy_entry_fp()
666 dest->fp_type = PHAR_MOD; in phar_copy_entry_fp()
667 dest->offset = 0; in phar_copy_entry_fp()
668 dest->is_modified = 1; in phar_copy_entry_fp()
669 dest->fp = php_stream_fopen_tmpfile(); in phar_copy_entry_fp()
670 if (dest->fp == NULL) { in phar_copy_entry_fp()
682 php_stream_close(dest->fp); in phar_copy_entry_fp()
[all …]
H A Dphar_internal.h524 # define phar_stream_copy_to_stream(src, dest, maxlen, len) _php_stream_copy_to_stream_ex((src), (d… argument
610 int phar_copy_entry_fp(phar_entry_info *source, phar_entry_info *dest, char **error TSRMLS_DC);
/PHP-5.5/ext/gd/libgd/
H A Dgdkanji.c560 any2eucjp (unsigned char *dest, unsigned char *src, unsigned int dest_max) in any2eucjp() argument
579 ustrcpy (dest, src); in any2eucjp()
582 ustrcpy (dest, tmp_dest); in any2eucjp()
/PHP-5.5/ext/com_dotnet/
H A Dcom_saproxy.c63 static inline void clone_indices(php_com_saproxy *dest, php_com_saproxy *src, int ndims) in clone_indices() argument
68 MAKE_STD_ZVAL(dest->indices[i]); in clone_indices()
69 *dest->indices[i] = *src->indices[i]; in clone_indices()
70 zval_copy_ctor(dest->indices[i]); in clone_indices()
/PHP-5.5/ext/dom/
H A Dphp_dom.c178 dom_doc_propsptr source, dest; in dom_copy_doc_props() local
183 dest = dom_get_doc_props(dest_doc); in dom_copy_doc_props()
185 dest->formatoutput = source->formatoutput; in dom_copy_doc_props()
186 dest->validateonparse = source->validateonparse; in dom_copy_doc_props()
187 dest->resolveexternals = source->resolveexternals; in dom_copy_doc_props()
188 dest->preservewhitespace = source->preservewhitespace; in dom_copy_doc_props()
189 dest->substituteentities = source->substituteentities; in dom_copy_doc_props()
190 dest->stricterror = source->stricterror; in dom_copy_doc_props()
191 dest->recover = source->recover; in dom_copy_doc_props()
193 ALLOC_HASHTABLE(dest->classmap); in dom_copy_doc_props()
[all …]
/PHP-5.5/ext/ftp/
H A Dftp.h186 int ftp_rename(ftpbuf_t *ftp, const char *src, const char *dest);
/PHP-5.5/ext/mbstring/libmbfl/filters/
H A Dmbfilter_cp5022x.c49 static void mbfl_filt_conv_wchar_cp50220_copy(mbfl_convert_filter *src, mbfl_convert_filter *dest);
595 mbfl_filt_conv_wchar_cp50220_copy(mbfl_convert_filter *src, mbfl_convert_filter *dest) in mbfl_filt_conv_wchar_cp50220_copy() argument
599 *dest = *src; in mbfl_filt_conv_wchar_cp50220_copy()
605 dest->opaque = ctx; in mbfl_filt_conv_wchar_cp50220_copy()
606 dest->data = &ctx->last; in mbfl_filt_conv_wchar_cp50220_copy()
/PHP-5.5/ext/mysqlnd/
H A Dmysqlnd_alloc.c564 char * dest = (char *) FAKE_PTR(ret); in _mysqlnd_pestrndup() local
566 *dest++ = *p++; in _mysqlnd_pestrndup()
568 *dest = '\0'; in _mysqlnd_pestrndup()
/PHP-5.5/ext/pcre/pcrelib/
H A Dpcre_internal.h395 unsigned char *dest = (unsigned char *)d; in pcre_memmove() local
397 if (dest > src) in pcre_memmove()
399 dest += n; in pcre_memmove()
401 for (i = 0; i < n; ++i) *(--dest) = *(--src); in pcre_memmove()
402 return (void *)dest; in pcre_memmove()
406 for (i = 0; i < n; ++i) *dest++ = *src++; in pcre_memmove()
407 return (void *)(dest - n); in pcre_memmove()
/PHP-5.5/Zend/
H A Dzend_API.h418 …c_string_ex(zval *arg, const char *key, uint key_len, const char *str, void **dest, int duplicate);
419 …val *arg, const char *key, uint key_len, const char *str, uint length, void **dest, int duplicate);
424 ZEND_API int add_get_index_long(zval *arg, ulong idx, long l, void **dest);
425 ZEND_API int add_get_index_double(zval *arg, ulong idx, double d, void **dest);
426 ZEND_API int add_get_index_string(zval *arg, ulong idx, const char *str, void **dest, int duplicate…
427 ZEND_API int add_get_index_stringl(zval *arg, ulong idx, const char *str, uint length, void **dest,…
/PHP-5.5/ext/standard/
H A Dfile.c1634 PHPAPI int php_copy_file(char *src, char *dest TSRMLS_DC) in php_copy_file()
1636 return php_copy_file_ctx(src, dest, 0, NULL TSRMLS_CC); in php_copy_file()
1642 PHPAPI int php_copy_file_ex(char *src, char *dest, int src_flg TSRMLS_DC) in php_copy_file_ex() argument
1644 return php_copy_file_ctx(src, dest, 0, NULL TSRMLS_CC); in php_copy_file_ex()
1650 PHPAPI int php_copy_file_ctx(char *src, char *dest, int src_flg, php_stream_context *ctx TSRMLS_DC) in php_copy_file_ctx() argument
1671 …switch (php_stream_stat_path_ex(dest, PHP_STREAM_URL_STAT_QUIET | PHP_STREAM_URL_STAT_NOCACHE, &de… in php_copy_file_ctx()
1701 if ((dp = expand_filepath(dest, NULL TSRMLS_CC)) == NULL) { in php_copy_file_ctx()
1727 deststream = php_stream_open_wrapper_ex(dest, "wb", REPORT_ERRORS, NULL, ctx); in php_copy_file_ctx()

Completed in 225 milliseconds

12345