| /prebuilts/ndk/7/platforms/android-9/arch-arm/usr/include/linux/ |
| interrupt.h | 56 irqreturn_t (*handler)(int, void *, struct pt_regs *); member in struct:irqaction
|
| /prebuilts/ndk/7/platforms/android-9/arch-x86/usr/include/linux/ |
| interrupt.h | 56 irqreturn_t (*handler)(int, void *, struct pt_regs *); member in struct:irqaction
|
| /prebuilts/ndk/8/platforms/android-14/arch-arm/usr/include/linux/ |
| interrupt.h | 56 irqreturn_t (*handler)(int, void *, struct pt_regs *); member in struct:irqaction
|
| /prebuilts/ndk/8/platforms/android-14/arch-mips/usr/include/linux/ |
| interrupt.h | 56 irqreturn_t (*handler)(int, void *, struct pt_regs *); member in struct:irqaction
|
| /prebuilts/ndk/8/platforms/android-14/arch-x86/usr/include/linux/ |
| interrupt.h | 56 irqreturn_t (*handler)(int, void *, struct pt_regs *); member in struct:irqaction
|
| /prebuilts/ndk/8/platforms/android-3/arch-arm/usr/include/linux/ |
| interrupt.h | 56 irqreturn_t (*handler)(int, void *, struct pt_regs *); member in struct:irqaction
|
| /prebuilts/ndk/8/platforms/android-4/arch-arm/usr/include/linux/ |
| interrupt.h | 56 irqreturn_t (*handler)(int, void *, struct pt_regs *); member in struct:irqaction
|
| /prebuilts/ndk/8/platforms/android-5/arch-arm/usr/include/linux/ |
| interrupt.h | 56 irqreturn_t (*handler)(int, void *, struct pt_regs *); member in struct:irqaction
|
| /prebuilts/ndk/8/platforms/android-8/arch-arm/usr/include/linux/ |
| interrupt.h | 56 irqreturn_t (*handler)(int, void *, struct pt_regs *); member in struct:irqaction
|
| /prebuilts/ndk/8/platforms/android-9/arch-arm/usr/include/linux/ |
| interrupt.h | 56 irqreturn_t (*handler)(int, void *, struct pt_regs *); member in struct:irqaction
|
| /prebuilts/ndk/8/platforms/android-9/arch-mips/usr/include/linux/ |
| interrupt.h | 56 irqreturn_t (*handler)(int, void *, struct pt_regs *); member in struct:irqaction
|
| /prebuilts/ndk/8/platforms/android-9/arch-x86/usr/include/linux/ |
| interrupt.h | 56 irqreturn_t (*handler)(int, void *, struct pt_regs *); member in struct:irqaction
|
| /system/netd/ |
| MDnsSdListener.h | 76 static void *threadStart(void *handler); 103 class Handler : public NetdCommand { 105 Handler(Monitor *m, MDnsSdListener *listener); 106 virtual ~Handler();
|
| /external/chromium/third_party/libjingle/source/talk/base/ |
| physicalsocketserver.cc | 619 // This is called directly from our real signal handler, so it must be 620 // signal-handler-safe. That means it cannot assume anything about the 621 // user-level state of the process, since the handler could be executed at any 634 // nothing we can safely do from a signal handler. 683 // These are boolean flags that will be set in our signal handler and read 685 // benign. The signal handler sets the flag before signaling the pipe, so 688 // possible that the second time the handler may set the flag while it's still 732 // the same time as we unset our handler for it. It is not an error 734 LOG(LS_INFO) << "Received signal with no handler: " << signum; 736 // Otherwise, execute our handler [all...] |
| /external/dexmaker/src/main/java/com/google/dexmaker/stock/ |
| ProxyBuilder.java | 56 * InvocationHandler handler = new InvocationHandler() { 71 * .handler(handler) 79 * {@link #handler(InvocationHandler)} passing in an {@link InvocationHandler}, and then call 81 * calls will be delegated to the invocation handler, except as noted below. 84 * super method for a given proxy. This allows the invocation handler to selectively override some 95 * Only non-private, non-final, non-static methods will be dispatched to the invocation handler. 109 * that is to say calls a non-private non-final method from the constructor, the invocation handler 131 private InvocationHandler handler; field in class:ProxyBuilder 155 public ProxyBuilder<T> handler(InvocationHandler handler) method in class:ProxyBuilder [all...] |
| /external/tagsoup/src/org/ccil/cowan/tagsoup/ |
| Parser.java | 111 "http://xml.org/sax/features/lexical-handler/parameter-entities"; 256 "http://xml.org/sax/properties/lexical-handler"; 374 throw new SAXNotSupportedException("Your lexical handler is not a LexicalHandler"); 414 public void setDTDHandler (DTDHandler handler) { 415 theDTDHandler = (handler == null) ? this : handler; 422 public void setContentHandler (ContentHandler handler) { 423 theContentHandler = (handler == null) ? this : handler; 430 public void setErrorHandler (ErrorHandler handler) { [all...] |
| /libcore/luni/src/main/java/java/net/ |
| URLClassLoader.java | 589 URLHandler handler = getHandler(n++); local 590 if (handler == null) { 593 handler.findResources(name, result); 744 URLHandler handler = getHandler(n++); local 745 if (handler == null) { 748 Class<?> res = handler.findClass(packageName, classFileName, className); 777 // use jar protocol as the stream handler protocol 798 URLHandler handler = getHandler(n++); local 799 if (handler == null) { 802 URL res = handler.findResource(name) [all...] |
| /dalvik/vm/mterp/out/ |
| InterpAsm-mips.S | 732 * structure, then jumps to the return handler. 749 * structure, then jumps to the return handler. 767 * structure, then jumps to the return handler. [all...] |
| /external/libxml2/ |
| xmlsave.c | 80 xmlCharEncodingHandlerPtr handler; member in struct:_xmlSaveCtxt 388 ret->handler = xmlFindCharEncodingHandler(encoding); 389 if (ret->handler == NULL) { 1766 xmlCharEncodingHandlerPtr handler; local 2388 xmlCharEncodingHandlerPtr handler = NULL; local 2531 xmlCharEncodingHandlerPtr handler = NULL; local [all...] |
| /cts/suite/audio_quality/test_description/ |
| processing_main.py | 217 handler = CommandHandler(conn) variable 219 handler.run()
|
| /cts/tests/tests/media/src/android/media/cts/ |
| AudioRecordTest.java | 26 import android.os.Handler; 187 // use handler 188 final Handler handler = new Handler(Looper.getMainLooper()) { local 196 mAudioRecord.setRecordPositionUpdateListener(listener, handler); 208 // The handler argument is only ever used for getting the associated Looper
|
| /cts/tests/tests/webkit/src/android/webkit/cts/ |
| WebViewClientTest.java | 299 HttpAuthHandler handler, String host, String realm) { 300 super.onReceivedHttpAuthRequest(view, handler, host, realm);
|
| /dalvik/tests/044-proxy/src/ |
| BasicTest.java | 85 InvocationHandler handler = new MyInvocationHandler(proxyMe); local 91 /* create a proxy object, passing the handler object in */ 98 proxy = cons.newInstance(new Object[] { handler }); 210 * Invocation handler, defining the implementation of the proxy functions.
|
| WrappedThrow.java | 30 InvocationHandler handler = new WTInvocationHandler(mix); local 36 handler); 176 * Invocation handler for our proxy class.
|
| /dalvik/vm/ |
| Exception.cpp | 620 DexCatchHandler* handler = dexCatchIteratorNext(&iterator); local 622 if (handler == NULL) { 626 if (handler->typeIdx == kDexNoIndex) { 631 return handler->address; 635 dvmDexGetResolvedClass(pDvmDex, handler->typeIdx); 664 throwable = dvmResolveClass(method->clazz, handler->typeIdx, 676 handler->typeIdx, 691 return handler->address; [all...] |