Lines Matching refs:output

1 # API adjustment to the old output control code
4 for every output handler op.
6 Checking output control layers status:
10 Starting the default output handler:
19 …// php_ob_set_internal_handler(my_php_output_handler_func_t, buffer_size, "output handler name", e…
29 Testing whether a certain output handler has already been started:
30 // php_ob_handler_used("output handler name");
33 Flushing one output buffer:
37 Flushing all output buffers:
41 Cleaning one output buffer:
45 Cleaning all output buffers:
49 Discarding one output buffer:
53 Discarding all output buffers:
57 Stopping (and dropping) one output buffer:
61 Stopping (and dropping) all output buffers:
65 Retrieving output buffers contents:
69 Retrieving output buffers length:
73 Retrieving output buffering level:
77 Issue a warning because of an output handler conflict:
82 // not possible with old API, unless hardcoding into output.c
89 Facilitating a context from within an output handler callable with ob_start():
93 Disabling of the output handler by itself:
97 Marking an output handler immutable by itself because of irreversibility of its operation:
101 Restarting the output handler because of a CLEAN operation:
105 Recognizing by the output handler itself if it gets discarded:
111 The output handler can change its abilities at runtime. Eg. the gz handler can
112 remove the CLEANABLE and REMOVABLE bits when the first output has passed through it;
118 pointer to the opaque field of the output handler context
120 pass a int* pointer as second arg to receive the flags set for the output handler
122 pass a int* pointer as second arg to receive the level of this output handler
125 the second arg is ignored; marks the output handler to be neither cleanable
128 the second arg is ignored; marks the output handler as disabled