Searched defs:line_len (Results 1 - 7 of 7) sorted by relevance
| /PHP_5_3/ext/iconv/ |
| H A D | iconv.c | 2066 long line_len = 76; local 2127 line_len = Z_LVAL_P(pval); 2150 field_value, field_value_len, line_len, lfchars, scheme_id,
|
| /PHP_5_3/ext/interbase/ |
| H A D | ibase_service.c | 279 long heap_buf_size = 200, line_len; local 306 if (! (line_len = isc_vax_integer(result, 2))) { 314 if (!heap_buf || (heap_p - heap_buf + line_len +2) > heap_buf_size) { 317 while (heap_buf_size < (res_size + line_len +2)) { 324 *(result+line_len) = 0; 326 heap_p += line_len +1;
|
| /PHP_5_3/ext/standard/ |
| H A D | filters.c | 338 unsigned int line_len; member in struct:_php_conv_base64_encode 367 static php_conv_err_t php_conv_base64_encode_ctor(php_conv_base64_encode *inst, unsigned int line_len, const char *lbchars, size_t lbchars_len, int lbchars_dup, int persistent) argument 372 inst->line_ccnt = line_len; 373 inst->line_len = line_len; 417 line_ccnt = inst->line_len; 440 line_ccnt = inst->line_len; 495 line_ccnt = inst->line_len; 522 line_ccnt = inst->line_len; 550 line_ccnt = inst->line_len; 750 unsigned int line_len; member in struct:_php_conv_qprint_encode 934 php_conv_qprint_encode_ctor(php_conv_qprint_encode *inst, unsigned int line_len, const char *lbchars, size_t lbchars_len, int lbchars_dup, int opts, int persistent) argument 1336 unsigned int line_len = 0; local 1379 unsigned int line_len = 0; local [all...] |
| H A D | file.c | 1093 size_t line_len = 0; local 1104 buf = php_stream_get_line(stream, NULL, 0, &line_len); 1115 if (php_stream_get_line(stream, buf, len, &line_len) == NULL) { 1121 Z_STRVAL_P(return_value) = php_addslashes(buf, line_len, &Z_STRLEN_P(return_value), 1 TSRMLS_CC); 1124 ZVAL_STRINGL(return_value, buf, line_len, 0); 1128 Z_STRVAL_P(return_value) = erealloc(buf, line_len + 1);
|
| /PHP_5_3/main/ |
| H A D | SAPI.h | 165 uint line_len; member in struct:__anon246
|
| /PHP_5_3/ext/spl/ |
| H A D | spl_directory.c | 2049 size_t line_len = 0; local 2064 if (php_stream_get_line(intern->u.file.stream, buf, intern->u.file.max_line_len, &line_len) == NULL) { 2068 buf[line_len] = '\0'; 2071 buf = php_stream_get_line(intern->u.file.stream, NULL, 0, &line_len); 2079 line_len = strcspn(buf, "\r\n"); 2080 buf[line_len] = '\0'; 2084 buf = php_addslashes(buf, line_len, &len, 1 TSRMLS_CC); 2085 line_len = len; 2089 intern->u.file.current_line_len = line_len;
|
| /PHP_5_3/ext/pdo_pgsql/ |
| H A D | pgsql_driver.c | 662 size_t line_len = 0; local 665 while ((buf = php_stream_get_line(stream, NULL, 0, &line_len)) != NULL) { 666 if (PQputCopyData(H->server, buf, line_len) != 1) {
|
Completed in 21 milliseconds