| /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/ |
| _codecsmodule.c | 1013 /* --- Error handler registry --------------------------------------------- */
1016 "register_error(errors, handler)\n\
1018 Register the specified error handler under the name\n\
1019 errors. handler must be a callable object, that\n\
1027 PyObject *handler;
local 1030 &name, &handler))
1032 if (PyCodec_RegisterError(name, handler))
1038 "lookup_error(errors) -> handler\n\
1040 Return the error handler for the specified error handling name\n\
1041 or raise a LookupError, if no handler exists under this name."); [all...] |
| pyexpat.c | 94 xmlhandler handler;
member in struct:HandlerInfo 147 PyObject *handler = self->handlers[type];
local 148 return handler != NULL;
228 /* This handler is used when an error has been detected, in the hope
241 /* Dummy character data handler used when an error (exception) has
243 This is needed since character data handler can't be safely removed
244 from within the character data handler, but can be replaced. It is
245 used only from the character data handler trampoline, and must be
477 /* handler might have changed; drop the rest on the floor
478 * if there isn't a handler anymore [all...] |
| /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/expat/ |
| xmlrole.h | 88 int (PTRCALL *handler) (struct prolog_state *state,
member in struct:prolog_state 108 (((state)->handler)(state, tok, ptr, end, enc))
|
| /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/ |
| codecs.c | 414 PyErr_SetString(PyExc_TypeError, "handler must be callable");
426 PyObject *handler = NULL;
local 434 handler = PyDict_GetItemString(interp->codec_error_registry, (char *)name);
435 if (!handler)
436 PyErr_Format(PyExc_LookupError, "unknown error handler name '%.400s'", name);
438 Py_INCREF(handler);
439 return handler;
|
| /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/ |
| test_pyexpat.py | 2 # handler, are obscure and unhelpful.
439 def handler(text):
function in function:sf1296433Test.test_parse_only_xml_data 443 parser.CharacterDataHandler = handler
476 # Feed 512 bytes of character data: the handler should be called
|
| /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/ |
| _codecsmodule.c | 1013 /* --- Error handler registry --------------------------------------------- */
1016 "register_error(errors, handler)\n\
1018 Register the specified error handler under the name\n\
1019 errors. handler must be a callable object, that\n\
1027 PyObject *handler;
local 1030 &name, &handler))
1032 if (PyCodec_RegisterError(name, handler))
1038 "lookup_error(errors) -> handler\n\
1040 Return the error handler for the specified error handling name\n\
1041 or raise a LookupError, if no handler exists under this name."); [all...] |
| pyexpat.c | 94 xmlhandler handler;
member in struct:HandlerInfo 147 PyObject *handler = self->handlers[type];
local 148 return handler != NULL;
228 /* This handler is used when an error has been detected, in the hope
241 /* Dummy character data handler used when an error (exception) has
243 This is needed since character data handler can't be safely removed
244 from within the character data handler, but can be replaced. It is
245 used only from the character data handler trampoline, and must be
477 /* handler might have changed; drop the rest on the floor
478 * if there isn't a handler anymore [all...] |
| /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/expat/ |
| xmlrole.h | 88 int (PTRCALL *handler) (struct prolog_state *state,
member in struct:prolog_state 108 (((state)->handler)(state, tok, ptr, end, enc))
|
| /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/ |
| codecs.c | 414 PyErr_SetString(PyExc_TypeError, "handler must be callable");
426 PyObject *handler = NULL;
local 434 handler = PyDict_GetItemString(interp->codec_error_registry, (char *)name);
435 if (!handler)
436 PyErr_Format(PyExc_LookupError, "unknown error handler name '%.400s'", name);
438 Py_INCREF(handler);
439 return handler;
|
| /external/ImageMagick/MagickCore/ |
| identify.c | 1137 handler; local [all...] |
| magick.c | 1358 *handler; local [all...] |
| /external/ImageMagick/coders/ |
| json.c | 1251 handler; local [all...] |
| /external/apache-xml/src/main/java/org/apache/xml/utils/ |
| FastStringBuffer.java | 974 * @exception org.xml.sax.SAXException may be thrown by handler's [all...] |
| /external/autotest/frontend/client/src/autotest/tko/ |
| SeriesSelector.java | 35 private final ChangeHandler handler; field in class:SeriesSelector 59 name.addChangeHandler(handler); 156 public SeriesSelector(ChangeHandler handler) { 157 this.handler = handler;
|
| /external/deqp/framework/qphelper/ |
| qpCrashHandler.c | 21 * \brief System handler handler override 173 /* If no handler present (how could that be?), don't handle. */ 176 DBGPRINT(("qpCrashHandler::unhandledExceptionFilter(): no crash handler registered\n")); 187 /* Acquire crash handler lock. Otherwise we might get strange behavior when multiple threads enter crash handler simultaneously. */ 239 /* Don't execute crash handler function if debugger is present. */ 246 /* Acquire crash handler lock. */ 264 qpCrashHandler* handler = (qpCrashHandler*)deCalloc(sizeof(qpCrashHandler)); local 266 if (!handler) 469 qpCrashHandler* handler = (qpCrashHandler*)deCalloc(sizeof(qpCrashHandler)); local [all...] |
| /external/expat/lib/ |
| xmlrole.h | 116 int (PTRCALL *handler) (struct prolog_state *state, member in struct:prolog_state 136 (((state)->handler)(state, tok, ptr, end, enc))
|
| /external/google-breakpad/src/client/linux/handler/ |
| exception_handler.cc | 31 // signals. We rely on the signal handler running on the thread which crashed 49 // (set signal handler to ThreadEntry (static function to bounce 66 #include "client/linux/handler/exception_handler.h" 194 // ones. There is a bug in these functions where a request to set the handler 196 // signal is repeatedly sent to breakpad's signal handler. 209 // The global exception handler stack. This is needed because there may exist 250 std::vector<ExceptionHandler*>::iterator handler = local 252 g_handler_stack_->erase(handler); 334 // Reset signal handler with the right flags. 342 // When resetting the handler fails, try to reset th 389 ExceptionHandler* handler; member in struct:google_breakpad::ThreadArgument [all...] |
| /external/google-breakpad/src/client/mac/handler/ |
| exception_handler.cc | 38 #include "client/mac/handler/exception_handler.h" 39 #include "client/mac/handler/minidump_generator.h" 83 google_breakpad::ExceptionHandler *handler; member in union:google_breakpad::__anon20749 311 ExceptionHandler handler(dump_path, NULL, callback, callback_context, false, 313 return handler.WriteMinidump(write_exception_stream); 412 // forwarding the exception to the next handler. 428 // At this time, we should have called Uninstall() on the exception handler 443 // Find the first exception handler that matches the exception 495 // Uninstall our handler so that we don't get in a loop if the process of 499 // If the actual exception code is zero, then we're calling this handler [all...] |
| /external/guava/guava-tests/test/com/google/common/eventbus/ |
| EventBusTest.java | 125 final RecordingSubscriberExceptionHandler handler = local 127 final EventBus eventBus = new EventBus(handler); 140 exception, handler.exception); 142 eventBus, handler.context.getEventBus()); 145 handler.context.getEvent()); 147 subscriber, handler.context.getSubscriber()); 150 handler.context.getSubscriberMethod());
|
| /external/icu/android_icu4j/src/main/java/android/icu/impl/ |
| TextTrieMap.java | 80 LongestMatchHandler<V> handler = new LongestMatchHandler<V>(); local 81 find(text, start, handler); 83 matchLen[0] = handler.getMatchLength(); 85 return handler.getMatches(); 88 public void find(CharSequence text, ResultHandler<V> handler) { 89 find(text, 0, handler); 92 public void find(CharSequence text, int offset, ResultHandler<V> handler) { 94 find(_root, chitr, handler); 97 private synchronized void find(Node node, CharIterator chitr, ResultHandler<V> handler) { 100 if (!handler.handlePrefixMatch(chitr.processedLength(), values)) [all...] |
| /external/icu/android_icu4j/src/main/java/android/icu/impl/locale/ |
| KeyTypeData.java | 92 SpecialTypeHandler handler; field in class:KeyTypeData.SpecialType 93 SpecialType(SpecialTypeHandler handler) { 94 this.handler = handler; 165 if (st.handler.isWellFormed(type)) { 169 return st.handler.canonicalize(type); 202 if (st.handler.isWellFormed(type)) { 206 return st.handler.canonicalize(type);
|
| /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/ |
| TextTrieMap.java | 78 LongestMatchHandler<V> handler = new LongestMatchHandler<V>(); local 79 find(text, start, handler); 81 matchLen[0] = handler.getMatchLength(); 83 return handler.getMatches(); 86 public void find(CharSequence text, ResultHandler<V> handler) { 87 find(text, 0, handler); 90 public void find(CharSequence text, int offset, ResultHandler<V> handler) { 92 find(_root, chitr, handler); 95 private synchronized void find(Node node, CharIterator chitr, ResultHandler<V> handler) { 98 if (!handler.handlePrefixMatch(chitr.processedLength(), values)) [all...] |
| /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/locale/ |
| KeyTypeData.java | 90 SpecialTypeHandler handler; field in class:KeyTypeData.SpecialType 91 SpecialType(SpecialTypeHandler handler) { 92 this.handler = handler; 163 if (st.handler.isWellFormed(type)) { 167 return st.handler.canonicalize(type); 200 if (st.handler.isWellFormed(type)) { 204 return st.handler.canonicalize(type);
|
| /external/javassist/src/main/javassist/bytecode/analysis/ |
| Analyzer.java | 94 private int handler; field in class:Analyzer.ExceptionInfo 98 private ExceptionInfo(int start, int end, int handler, Type type) { 101 this.handler = handler; 301 merge(queue, newFrame, exception.handler);
|
| /external/jdiff/src/jdiff/ |
| Comments.java | 61 DefaultHandler handler = new CommentsHandler(oldComments_); local 80 parser.setContentHandler(handler); 81 parser.setErrorHandler(handler);
|