/PHP-5.5/ext/ereg/tests/ |
H A D | split_error_002.phpt | 5 /* Prototype : proto array split(string pattern, string string [, int limit])
|
/PHP-5.5/ext/oci8/tests/ |
H A D | bug41069.phpt | 2 Bug #41069 (Oracle crash with certain data over a DB-link when prefetch memory limit used - Oracle …
|
/PHP-5.5/ext/sqlite3/libsqlite/ |
H A D | sqlite3ext.h | 207 int (*limit)(sqlite3*,int,int); member 445 #define sqlite3_limit sqlite3_api->limit
|
/PHP-5.5/ext/pcre/pcrelib/sljit/ |
H A D | sljitLir.h | 1143 sljit_uw limit; member 1151 SLJIT_API_FUNC_ATTRIBUTE struct sljit_stack* SLJIT_CALL sljit_allocate_stack(sljit_uw limit, sljit_…
|
/PHP-5.5/ext/standard/ |
H A D | var_unserializer.c | 241 #define YYLIMIT limit 471 const unsigned char *cursor, *limit, *marker, *start; in php_var_unserialize() local 474 limit = max; in php_var_unserialize()
|
H A D | var_unserializer.re | 239 #define YYLIMIT limit 475 const unsigned char *cursor, *limit, *marker, *start; 478 limit = max;
|
H A D | string.c | 1029 PHPAPI void php_explode(zval *delim, zval *str, zval *return_value, long limit) in php_explode() argument 1045 --limit > 1); in php_explode() 1055 PHPAPI void php_explode_negative_limit(zval *delim, zval *str, zval *return_value, long limit) in php_explode_negative_limit() argument 1084 to_return = limit + found; in php_explode_negative_limit() 1104 long limit = LONG_MAX; /* No limit */ in PHP_FUNCTION() local 1107 …meters(ZEND_NUM_ARGS() TSRMLS_CC, "ss|l", &delim, &delim_len, &str, &str_len, &limit) == FAILURE) { in PHP_FUNCTION() 1119 if (limit >= 0) { in PHP_FUNCTION() 1127 if (limit > 1) { in PHP_FUNCTION() 1128 php_explode(&zdelim, &zstr, return_value, limit); in PHP_FUNCTION() 1129 } else if (limit < 0) { in PHP_FUNCTION() [all …]
|
/PHP-5.5/sapi/fpm/ |
H A D | php-fpm.conf.in | 66 ; Time limit for child processes to wait for a reaction on signals from master. 75 ; Note: A value of 0 indicates no limit 223 ; This value sets the limit on the number of simultaneous requests that will be 275 ; max children reached - number of times, the process limit has been reached, 493 ; prevent configuration mistakes on the web server side. You should only limit
|
/PHP-5.5/ext/pcre/pcrelib/testdata/ |
H A D | testoutput2 | 4390 Minimum match() limit = 8 11426 Minimum match() limit = 5 11430 Minimum match() limit = 12 11436 Minimum match() limit = 7 11887 Minimum match() limit = 7 12715 Match limit = 3000 12726 Match limit = 3000 12735 Match limit = 60000 12746 Recursion limit = 10 12759 Recursion limit = 10 [all …]
|
H A D | grepoutput | 395 pcregrep: Error -8, -21 or -27 means that a resource limit was exceeded. 519 pcregrep: Error -8, -21 or -27 means that a resource limit was exceeded. 529 pcregrep: Error -8, -21 or -27 means that a resource limit was exceeded.
|
/PHP-5.5/Zend/ |
H A D | zend.h | 202 # define do_alloca_ex(size, limit, use_heap) \ argument 203 ((use_heap = (UNEXPECTED((size) > (limit)))) ? emalloc(size) : alloca(size))
|
/PHP-5.5/ext/pcre/pcrelib/ |
H A D | HACKING | 91 A side effect of this work was that the previous limit of 200 on the nesting 97 At release 8.34, a limit on the nesting depth of parentheses was re-introduced 98 (default 250, settable at build time) so as to put a limit on the amount of 404 3.5, the limit was removed by putting the bracket number into the data for 439 When a repeated subpattern has an unbounded upper limit, it is checked to see
|
H A D | ChangeLog | 135 35. Match limit check added to JIT recursion. This issue was found by Karl 153 40. A match limit issue is fixed in JIT which was found by Karl Skomski 292 depth limit of 1000 has been imposed to limit the resources used by this 361 4. The JIT compiler did not generate match limit checks for certain 967 (a) There is now no limit to the number of patterns to be matched. 1804 --match-limit and --recursion-limit options (added for 8.11). In 1887 9. Added --match-limit and --recursion-limit to pcregrep. 3027 explicit limit, but more stack is used. 3805 \q<number> in a data line sets the "match limit" value 5260 12. The limit of 200 on non-capturing parentheses is a _nesting_ limit, not an [all …]
|
H A D | README | 289 --with-parens-nest-limit=500 291 . PCRE has a counter that can be set to limit the amount of resources it uses 292 when matching a pattern. If the limit is exceeded during a match, the match 296 --with-match-limit=500000 306 --with-match-limit-recursion=500000
|
H A D | pcre_jit_compile.c | 10036 OP1(SLJIT_MOV, STACK_LIMIT, 0, SLJIT_MEM1(TMP2), SLJIT_OFFSETOF(struct sljit_stack, limit)); in PRIV() 10247 OP2(SLJIT_ADD, TMP2, 0, SLJIT_MEM1(TMP1), SLJIT_OFFSETOF(struct sljit_stack, limit), SLJIT_IMM, STA… in PRIV() 10254 OP1(SLJIT_MOV, STACK_LIMIT, 0, SLJIT_MEM1(TMP1), SLJIT_OFFSETOF(struct sljit_stack, limit)); in PRIV() 10403 local_stack.limit = local_stack.base + MACHINE_STACK_SIZE; in jit_machine_stack_exec() 10404 local_stack.max_limit = local_stack.limit; in jit_machine_stack_exec()
|
/PHP-5.5/ext/iconv/ |
H A D | iconv.c | 2341 char *p, *limit; in PHP_FUNCTION() local 2353 limit = decoded_header.c + decoded_header.len; in PHP_FUNCTION() 2354 for (p = decoded_header.c; p < limit; p++) { in PHP_FUNCTION() 2360 while (++p < limit) { in PHP_FUNCTION() 2367 header_value_len = limit - p; in PHP_FUNCTION()
|
/PHP-5.5/ext/mysql/tests/ |
H A D | mysql_pconn_max_links.phpt | 149 // We must be able to connect because max_persistent limit has not been reached
|
/PHP-5.5/ext/spl/ |
H A D | spl_heap.c | 278 const int limit = (heap->count-1)/2; in spl_ptr_heap_delete_top() local 289 for( i = 0; i < limit; i = j) in spl_ptr_heap_delete_top()
|
/PHP-5.5/ext/ereg/ |
H A D | ereg.c | 45 ZEND_ARG_INFO(0, limit)
|
/PHP-5.5/ext/pcre/pcrelib/doc/ |
H A D | pcre.txt | 1111 verely limit PCRE's operation. (The Unix environment does not usually 1146 --with-match-limit=500000 1159 --with-match-limit-recursion=10000 3054 is outside these limits, it is forced to the appropriate limit value. 3173 such limit is set, less than the default. 3192 limit is exceeded, pcre_exec() returns PCRE_ERROR_RECURSIONLIMIT. 3201 such limit is set, less than the default. 7941 (*LIMIT_MATCH=d) set the match limit to d (decimal number) 7942 (*LIMIT_RECURSION=d) set the recursion limit to d (decimal number) 10417 common. You can find your default limit by running the command: [all …]
|
/PHP-5.5/ |
H A D | NEWS | 1667 . Added opcache.restrict_api configuration directive that may limit 3260 to limit the amount of stack frames returned. (Sebastian, Patrick) 4227 . Increased the backtrack limit from 100000 to 1000000 (Rasmus) 5435 - Added "max_file_uploads" INI directive, which can be set to limit the 6146 - Fixed bug #47560 (explode()'s limit parameter odd behaviour). (Matt) 7064 - Fixed dl() to limit argument size to MAXPATHLEN (CVE-2007-4887). 7747 . memory-limit is always enabled (--enable-memory-limit removed) 7748 . default value if memory-limit is set to 128M 8228 . Allowed PHP_FCGI_MAX_REQUESTS=0 that assumes no limit. 8498 limit support). (Ilia) [all …]
|
/PHP-5.5/sapi/litespeed/ |
H A D | lsapilib.c | 3191 struct rlimit limit = { 0, 0 }; in LSAPI_Init_Env_Parameters() local 3192 setrlimit( RLIMIT_CORE, &limit ); in LSAPI_Init_Env_Parameters()
|
/PHP-5.5/ext/mbstring/ |
H A D | README_PHP3-i18n-ja | 681 string_array = mbsplit(regex, string, limit)
|
/PHP-5.5/sapi/thttpd/ |
H A D | thttpd_patch | 1444 long limit; 2027 iv[1].iov_len = MIN( c->bytes_to_send - c->bytes_sent, c->limit );
|
/PHP-5.5/ext/imap/ |
H A D | php_imap.c | 775 add_assoc_long_ex(return_value, "limit", sizeof("limit"), qlist->limit); in mail_getquota() 779 add_assoc_long_ex(t_map, "limit", sizeof("limit"), qlist->limit); in mail_getquota()
|