Lines Matching defs:handler
93 xmlhandler handler;
146 PyObject *handler = self->handlers[type];
147 return handler != NULL;
181 /* This handler is used when an error has been detected, in the hope
194 /* Dummy character data handler used when an error (exception) has
196 This is needed since character data handler can't be safely removed
197 from within the character data handler, but can be replaced. It is
198 used only from the character data handler trampoline, and must be
321 /* handler might have changed; drop the rest on the floor
322 * if there isn't a handler anymore
992 PyObject *handler = self->handlers[i];
993 if (handler != NULL) {
994 Py_INCREF(handler);
995 new_parser->handlers[i] = handler;
997 handler_info[i].handler);
1249 /* If we're changing the character data handler, flush all
1250 * cached data with the old handler. Not sure there's a
1260 /* If this is the character data handler, and a character
1261 data handler is already active, we need to be more
1263 character data handler callback function with a no-op
1266 data handler from the C layer if there's any callback
1270 C handler more effectively. */
1277 c_handler = handler_info[handlernum].handler;