Searched refs:fp (Results 1 – 7 of 7) sorted by relevance
/unit/src/ |
H A D | nxt_fastcgi_record_parse.c | 41 fp->out[0] = NULL; in nxt_fastcgi_record_parse() 42 fp->out[1] = NULL; in nxt_fastcgi_record_parse() 44 tail[0] = &fp->out[0]; in nxt_fastcgi_record_parse() 45 tail[1] = &fp->out[1]; in nxt_fastcgi_record_parse() 47 state = fp->state; in nxt_fastcgi_record_parse() 163 fp->type, fp->length, fp->padding); in nxt_fastcgi_record_parse() 221 fp->state = state; in nxt_fastcgi_record_parse() 233 nb = fp->last_buf(fp); in nxt_fastcgi_record_parse() 239 fp->error = 1; in nxt_fastcgi_record_parse() 260 p = fp->pos; in nxt_fastcgi_buffer() [all …]
|
H A D | nxt_fastcgi_source.h | 38 nxt_buf_t *(*last_buf)(nxt_fastcgi_parse_t *fp); 89 void nxt_fastcgi_record_parse(nxt_task_t *task, nxt_fastcgi_parse_t *fp,
|
H A D | nxt_fastcgi_source.c | 71 static nxt_buf_t *nxt_fastcgi_source_last_buf(nxt_fastcgi_parse_t *fp); 711 nxt_fastcgi_source_last_buf(nxt_fastcgi_parse_t *fp) in nxt_fastcgi_source_last_buf() argument 716 fs = fp->data; in nxt_fastcgi_source_last_buf() 718 b = nxt_buf_sync_alloc(fp->mem_pool, NXT_BUF_SYNC_LAST); in nxt_fastcgi_source_last_buf()
|
/unit/src/perl/ |
H A D | nxt_perl_psgi_layer.h | 32 PerlIO *fp; member 46 SV *nxt_perl_psgi_layer_stream_io_create(pTHX_ PerlIO *fp);
|
H A D | nxt_perl_psgi_layer.c | 115 arg->fp = NULL; in nxt_perl_psgi_layer_stream_popped() 360 nxt_perl_psgi_layer_stream_io_create(pTHX_ PerlIO *fp) in nxt_perl_psgi_layer_stream_io_create() argument 371 IoOFP(thatio) = fp; in nxt_perl_psgi_layer_stream_io_create() 372 IoIFP(thatio) = fp; in nxt_perl_psgi_layer_stream_io_create()
|
H A D | nxt_perl_psgi.c | 449 PerlIO *fp; in nxt_perl_psgi_io_init() local 452 fp = nxt_perl_psgi_layer_stream_fp_create(aTHX_ arg->rv, mode); in nxt_perl_psgi_io_init() 453 if (nxt_slow_path(fp == NULL)) { in nxt_perl_psgi_io_init() 457 io = nxt_perl_psgi_layer_stream_io_create(aTHX_ fp); in nxt_perl_psgi_io_init() 459 nxt_perl_psgi_layer_stream_fp_destroy(aTHX_ fp); in nxt_perl_psgi_io_init() 464 arg->fp = fp; in nxt_perl_psgi_io_init() 971 PerlIO *fp; member 990 io_ctx.fp = IoIFP(io); in nxt_perl_psgi_result_body_fh() 993 read_info.eof = PerlIO_eof(io_ctx.fp); in nxt_perl_psgi_result_body_fh() 1011 res = PerlIO_read(ctx->fp, dst, size); in nxt_perl_psgi_io_read() [all …]
|
/unit/test/python/upload/ |
H A D | wsgi.py | 19 form = cgi.FieldStorage(fp=file, environ=environ, keep_blank_values=True)
|