Searched defs:max_len (Results 1 - 7 of 7) sorted by relevance
| /PHP_5_3/ext/mbstring/oniguruma/ |
| H A D | regparse.h | 185 OnigDistance max_len; /* max length (byte) */ member in struct:__anon239
|
| /PHP_5_3/ext/interbase/ |
| H A D | ibase_query.c | 1555 unsigned long max_len = 0; local 1591 max_len = isc_vax_integer(&bl_info[i+2], item_len); 1597 if (max_len == 0) { 1600 max_len TSRMLS_CC)) {
|
| /PHP_5_3/ext/odbc/ |
| H A D | php_odbc.c | 1463 SQLUSMALLINT max_len; local 1475 rc = SQLGetInfo(result->conn_ptr->hdbc,SQL_MAX_CURSOR_NAME_LEN, (void *)&max_len,sizeof(max_len),&len); 1480 if (max_len > 0) { 1481 cursorname = emalloc(max_len + 1); 1482 rc = SQLGetCursorName(result->stmt,cursorname,(SQLSMALLINT)max_len,&len); 1493 snprintf(cursorname, max_len+1, "php_curs_%d", (int)result->stmt);
|
| /PHP_5_3/main/ |
| H A D | spprintf.c | 795 PHPAPI int vspprintf(char **pbuf, size_t max_len, const char *format, va_list ap) /* {{{ */ argument 801 if (max_len && xbuf.len > max_len) { 802 xbuf.len = max_len; 812 PHPAPI int spprintf(char **pbuf, size_t max_len, const char *format, ...) /* {{{ */ argument 818 cc = vspprintf(pbuf, max_len, format, ap);
|
| /PHP_5_3/main/streams/ |
| H A D | streams.c | 1354 size_t len = 0, max_len; local 1393 max_len = ssbuf.sb.st_size + step; 1395 max_len = step; 1398 ptr = *buf = pemalloc_rel_orig(max_len, persistent); 1400 while((ret = php_stream_read(src, ptr, max_len - len))) { 1402 if (len + min_room >= max_len) { 1403 *buf = perealloc_rel_orig(*buf, max_len + step, persistent); 1404 max_len += step;
|
| /PHP_5_3/ext/spl/ |
| H A D | spl_directory.c | 2513 /* {{{ proto void SplFileObject::setMaxLineLen(int max_len) 2517 long max_len; local 2521 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "l", &max_len) == FAILURE) { 2525 if (max_len < 0) { 2530 intern->u.file.max_line_len = max_len; 2884 ZEND_ARG_INFO(0, max_len)
|
| /PHP_5_3/Zend/ |
| H A D | zend_exceptions.c | 550 int zend_spprintf(char **message, int max_len, char *format, ...) /* {{{ */ argument 556 len = zend_vspprintf(message, max_len, format, arg);
|
Completed in 23 milliseconds