Searched defs:line_len (Results 1 - 7 of 7) sorted by relevance
| /PHP_TRUNK/ext/iconv/ |
| H A D | iconv.c | 2134 long line_len = 76; local 2195 line_len = Z_LVAL_P(pval); 2218 field_value, field_value_len, line_len, lfchars, scheme_id,
|
| /PHP_TRUNK/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_TRUNK/main/ |
| H A D | SAPI.h | 168 uint line_len; member in struct:__anon273
|
| /PHP_TRUNK/ext/standard/ |
| H A D | file.c | 1000 size_t line_len = 0; local 1011 buf = php_stream_get_line(stream, NULL, 0, &line_len); 1022 if (php_stream_get_line(stream, buf, len, &line_len) == NULL) { 1027 ZVAL_STRINGL(return_value, buf, line_len, 0); 1031 Z_STRVAL_P(return_value) = erealloc(buf, line_len + 1);
|
| 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 971 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 1373 unsigned int line_len = 0; local 1416 unsigned int line_len = 0; local [all...] |
| /PHP_TRUNK/ext/spl/ |
| H A D | spl_directory.c | 2045 size_t line_len = 0; local 2059 if (php_stream_get_line(intern->u.file.stream, buf, intern->u.file.max_line_len, &line_len) == NULL) { 2063 buf[line_len] = '\0'; 2066 buf = php_stream_get_line(intern->u.file.stream, NULL, 0, &line_len); 2074 line_len = strcspn(buf, "\r\n"); 2075 buf[line_len] = '\0'; 2079 intern->u.file.current_line_len = line_len;
|
| /PHP_TRUNK/ext/pdo_pgsql/ |
| H A D | pgsql_driver.c | 685 size_t line_len = 0; local 688 while ((buf = php_stream_get_line(stream, NULL, 0, &line_len)) != NULL) { 689 if (PQputCopyData(H->server, buf, line_len) != 1) {
|
Completed in 21 milliseconds