Lines Matching refs:output

4 API adjustment to the old output control code:
7 and there's an API call for every output handler op.
9 Checking output control layers status:
13 Starting the default output handler:
22 …// php_ob_set_internal_handler(my_php_output_handler_func_t, buffer_size, "output handler name", e…
32 Testing whether a certain output handler has already been started:
33 // php_ob_handler_used("output handler name" TSRMLS_CC);
36 Flushing one output buffer:
40 Flushing all output buffers:
44 Cleaning one output buffer:
48 Cleaning all output buffers:
52 Discarding one output buffer:
56 Discarding all output buffers:
60 Stopping (and dropping) one output buffer:
64 Stopping (and dropping) all output buffers:
68 Retrieving output buffers contents:
72 Retrieving output buffers length:
76 Retrieving output buffering level:
80 Issue a warning because of an output handler conflict:
85 // not possible with old API, unless hardcoding into output.c
92 Facilitating a context from within an output handler callable with ob_start():
96 Disabling of the output handler by itself:
100 Marking an output handler immutable by itself because of irreversibility of its operation:
104 Restarting the output handler because of a CLEAN operation:
108 Recognizing by the output handler itself if it gets discarded:
115 The output handler can change its abilities at runtime. Eg. the gz handler can
116 remove the CLEANABLE and REMOVABLE bits when the first output has passed through it;
121 pointer to the opaque field of the output handler context
123 pass a int* pointer as second arg to receive the flags set for the output handler
125 pass a int* pointer as second arg to receive the level of this output handler
128 the second arg is ignored; marks the output handler to be neither cleanable
131 the second arg is ignored; marks the output handler as disabled