Home
last modified time | relevance | path

Searched refs:src (Results 151 – 175 of 181) sorted by relevance

12345678

/PHP-5.4/ext/standard/
H A Darray.c2246 PHPAPI int php_array_merge(HashTable *dest, HashTable *src, int recursive TSRMLS_DC) /* {{{ */ in php_array_merge() argument
2254 zend_hash_internal_pointer_reset_ex(src, &pos); in php_array_merge()
2255 while (zend_hash_get_current_data_ex(src, (void **)&src_entry, &pos) == SUCCESS) { in php_array_merge()
2256 switch (zend_hash_get_current_key_ex(src, &string_key, &string_key_len, &num_key, 0, &pos)) { in php_array_merge()
2303 zend_hash_move_forward_ex(src, &pos); in php_array_merge()
2309 PHPAPI int php_array_replace_recursive(HashTable *dest, HashTable *src TSRMLS_DC) /* {{{ */ in php_array_replace_recursive()
2317 for (zend_hash_internal_pointer_reset_ex(src, &pos); in php_array_replace_recursive()
2318 zend_hash_get_current_data_ex(src, (void **)&src_entry, &pos) == SUCCESS; in php_array_replace_recursive()
2319 zend_hash_move_forward_ex(src, &pos)) { in php_array_replace_recursive()
2320 switch (zend_hash_get_current_key_ex(src, &string_key, &string_key_len, &num_key, 0, &pos)) { in php_array_replace_recursive()
H A Durl_scanner_ex.c918 static char *url_adapt_ext(const char *src, size_t srclen, size_t *newlen, zend_bool do_flush TSRML… in url_adapt_ext() argument
925 xx_mainloop(ctx, src, srclen TSRMLS_CC); in url_adapt_ext()
H A Dproc_open.c405 static inline HANDLE dup_handle(HANDLE src, BOOL inherit, BOOL closeorig) in dup_handle() argument
409 if (!DuplicateHandle(self, src, self, &copy, 0, inherit, DUPLICATE_SAME_ACCESS | in dup_handle()
H A Dstring.c2137 static char *php_chunk_split(char *src, int srclen, char *end, int endlen, int chunklen, int *destl… argument
2163 for (p = src, q = dest; p < (src + srclen - chunklen + 1); ) {
/PHP-5.4/
H A Dphp.ini-development162 ; Default Value: "a=href,area=href,frame=src,form=,fieldset="
163 ; Development Value: "a=href,area=href,frame=src,input=src,form=fakeentry"
164 ; Production Value: "a=href,area=href,frame=src,input=src,form=fakeentry"
1536 ; Default Value: "a=href,area=href,frame=src,form=,fieldset="
1537 ; Development Value: "a=href,area=href,frame=src,input=src,form=fakeentry"
1538 ; Production Value: "a=href,area=href,frame=src,input=src,form=fakeentry"
1540 url_rewriter.tags = "a=href,area=href,frame=src,input=src,form=fakeentry"
H A Dphp.ini-production162 ; Default Value: "a=href,area=href,frame=src,form=,fieldset="
163 ; Development Value: "a=href,area=href,frame=src,input=src,form=fakeentry"
164 ; Production Value: "a=href,area=href,frame=src,input=src,form=fakeentry"
1536 ; Default Value: "a=href,area=href,frame=src,form=,fieldset="
1537 ; Development Value: "a=href,area=href,frame=src,input=src,form=fakeentry"
1538 ; Production Value: "a=href,area=href,frame=src,input=src,form=fakeentry"
1540 url_rewriter.tags = "a=href,area=href,frame=src,input=src,form=fakeentry"
H A DREADME.STREAMS106 PHPAPI size_t php_stream_copy_to_stream(php_stream *src,
109 If you want to copy all remaining data from the src stream, pass
118 PHPAPI size_t php_stream_copy_to_mem(php_stream *src, char **buf,
H A DREADME.SUBMITTING_PATCH56 https://github.com/php/php-src
H A Dacinclude.m4177 ifelse($1,,src=$ext_srcdir/Makefile.frag,src=$1)
180 …test -f "$src" && $SED -e "s#\$(srcdir)#$ac_srcdir#g" -e "s#\$(builddir)#$ac_builddir#g" $src >> …
H A DINSTALL266 11. ./configure --prefix=/www --activate-module=src/modules/php5/libphp5.a
326 accompanying files and copy this into the src/modules/php5 directory in
328 --activate-module=src/modules/php5/libphp5.a and the Apache build
1488 under the php-src/ext/ directory and tell the PHP build system to
1813 [mybox:user /src/php5] root# apachectl configtest apachectl:
1957 [mybox:user /src/php5] root# apachectl configtest
/PHP-5.4/ext/imap/
H A Dphp_imap.c90 long utf8_mime2text(SIZEDTEXT *src, SIZEDTEXT *dst);
92 long utf8_mime2text (SIZEDTEXT *src, SIZEDTEXT *dst, long flags);
2689 SIZEDTEXT src, dest; in PHP_FUNCTION() local
2695 src.data = NULL; in PHP_FUNCTION()
2696 src.size = 0; in PHP_FUNCTION()
2700 cpytxt(&src, str, str_len); in PHP_FUNCTION()
2703 utf8_mime2text(&src, &dest); in PHP_FUNCTION()
2705 utf8_mime2text(&src, &dest, U8T_DECOMPOSE); in PHP_FUNCTION()
2711 if (src.data && src.data != dest.data) { in PHP_FUNCTION()
2712 free(src.data); in PHP_FUNCTION()
/PHP-5.4/ext/pgsql/
H A Dpgsql.c5092 char *src, *tmp_name, *tmp_name2 = NULL; local
5104 src = estrdup(table_name);
5105 tmp_name = php_strtok_r(src, ".", &tmp_name2);
5107 efree(src);
5138 efree(src);
5366 static int php_pgsql_add_quotes(zval *src, zend_bool should_free TSRMLS_DC) argument
5370 assert(Z_TYPE_P(src) == IS_STRING);
5375 smart_str_appendl(&str, Z_STRVAL_P(src), Z_STRLEN_P(src));
5380 efree(Z_STRVAL_P(src));
5382 Z_STRVAL_P(src) = str.c;
[all …]
H A Dpgsql.dsp114 …t:"../../Release_TS/php_pgsql.dll" /libpath:"..\..\..\php_build\postgresql\src\interfaces\libpq\Re…
/PHP-5.4/ext/hash/tests/
H A Dfnv132.phpt130 array( "http://www.isthe.com/chongo/src/calc/lucas-calc", "bc382a57" ),
H A Dfnv164.phpt130 array( "http://www.isthe.com/chongo/src/calc/lucas-calc", "48d785770bb4af37" ),
/PHP-5.4/ext/mbstring/
H A Dmbstring.c726 const enum mbfl_no_encoding *src = MBSTRG(default_detect_order_list); in php_mb_parse_encoding_list() local
731 *entry++ = mbfl_no2encoding(*src++); in php_mb_parse_encoding_list()
809 const enum mbfl_no_encoding *src = MBSTRG(default_detect_order_list); in php_mb_parse_encoding_array() local
815 *entry++ = mbfl_no2encoding(*src++); in php_mb_parse_encoding_array()
4563 const enum mbfl_no_encoding *src = MBSTRG(default_detect_order_list); in php_mb_populate_current_detect_order_list() local
4568 entry[i] = mbfl_no2encoding(src[i]); in php_mb_populate_current_detect_order_list()
H A DREADME_PHP3-i18n-ja172 % ./configure --activate-module=src/modules/php3/libphp3.a
/PHP-5.4/ext/ftp/
H A Dftp.c1054 ftp_rename(ftpbuf_t *ftp, const char *src, const char *dest) in ftp_rename() argument
1059 if (!ftp_putcmd(ftp, "RNFR", src)) { in ftp_rename()
/PHP-5.4/Zend/
H A Dzend_compile.c39 #define SET_NODE(target, src) do { \ argument
40 target ## _type = (src)->op_type; \
41 if ((src)->op_type == IS_CONST) { \
44 target = (src)->u.op; \
48 #define GET_NODE(target, src) do { \ argument
49 (target)->op_type = src ## _type; \
51 (target)->u.constant = CONSTANT(src.constant); \
53 (target)->u.op = src; \
58 #define COPY_NODE(target, src) do { \ argument
59 target ## _type = src ## _type; \
[all …]
/PHP-5.4/win32/
H A Dinstall.txt1307 under the php-src/ext/ directory and tell the PHP build system to
1566 [mybox:user /src/php5] root# apachectl configtest
1714 rpm -Uvh mod_php3-3.0.5-2.src.rpm
1716 * Then edit the /usr/src/redhat/SPECS/mod_php3.spec file
1734 rpm -bb /usr/src/redhat/SPECS/mod_php3.spec
1738 rpm -ivh /usr/src/redhat/RPMS/i386/mod_php3-3.0.5-2.i386.rpm
1777 [mybox:user /src/php5] root# apachectl configtest
/PHP-5.4/ext/gd/
H A Dgd.c469 ZEND_ARG_INFO(0, src)
2957 gdImagePtr dst, src; in PHP_FUNCTION() local
2964 ZEND_FETCH_RESOURCE(src, gdImagePtr, &srcim, -1, "Image", le_gd); in PHP_FUNCTION()
2966 gdImagePaletteCopy(dst, src); in PHP_FUNCTION()
/PHP-5.4/ext/zip/
H A Dphp_zip.c1165 if (zr_rsrc->zf->src) in php_zip_free_entry()
1166 zip_source_free(zr_rsrc->zf->src); in php_zip_free_entry()
/PHP-5.4/ext/fileinfo/
H A Dlibmagic.patch1513 size_t strlcpy(char *dst, const char *src, size_t siz);
1517 size_t strlcat(char *dst, const char *src, size_t siz);
/PHP-5.4/ext/pcre/pcrelib/
H A Dpcre_jit_compile.c519 #define OP1(op, dst, dstw, src, srcw) \ argument
520 sljit_emit_op1(compiler, (op), (dst), (dstw), (src), (srcw))
537 #define OP_FLAGS(op, dst, dstw, src, srcw, type) \ argument
538 sljit_emit_op_flags(compiler, (op), (dst), (dstw), (src), (srcw), (type))
H A DREADME946 doc/index.html.src the base HTML page

Completed in 249 milliseconds

12345678