Lines Matching refs:handler

4 for every output handler op.
10 Starting the default output handler:
14 Starting an user handler by zval:
18 Starting an internal handler without context:
19 …// php_ob_set_internal_handler(my_php_output_handler_func_t, buffer_size, "output handler name", e…
22 Starting an internal handler with context:
29 Testing whether a certain output handler has already been started:
30 // php_ob_handler_used("output handler name");
77 Issue a warning because of an output handler conflict:
78 …// php_ob_init_conflict("to be started handler name", "to be tested if already started handler nam…
81 Registering a conflict checking function, which will be checked prior starting the handler:
85 …rse conflict checking function, which will be checked prior starting the specified foreign handler:
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:
109 ## Output handler hooks
111 The output handler can change its abilities at runtime. Eg. the gz handler can
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