| /external/sepolicy/tools/ |
| insertkeys.py | 3 from xml.sax import saxutils, handler, make_parser namespace 102 class ReplaceTags(handler.ContentHandler): 116 handler.ContentHandler.__init__(self)
|
| /external/smali/dexlib/src/main/java/org/jf/dexlib/ |
| CodeItem.java | 635 for (EncodedTypeAddrPair handler: encodedCatchHandler.handlers) { 636 assert newAddressByOriginalAddress.indexOfKey(handler.handlerAddress) >= 0; 637 handler.handlerAddress = newAddressByOriginalAddress.get(handler.handlerAddress); [all...] |
| /external/valgrind/main/coregrind/m_sigframe/ |
| sigframe-amd64-darwin.c | 56 ucontext and retrieved from it later, so the handler can modify it 61 handler, although do point them somewhere non-faulting. 108 extra 2 args to be ignored (inside the handler). (We hope!) */ 113 void *handler, 165 VG_(set_IP)(tid, (ULong)handler); 169 VG_TRACK( pre_mem_write, Vg_CoreSignal, tid, "signal handler frame", 189 tid, (Addr)handler, (Addr)frame ); 208 /* why -8 ? because the signal handler's return will have popped
|
| sigframe-x86-darwin.c | 56 ucontext and retrieved from it later, so the handler can modify it 61 handler, although do point them somewhere non-faulting. 111 extra 2 args to be ignored (inside the handler). */ 116 void *handler, 168 VG_(set_IP)(tid, (UInt)handler); 172 VG_TRACK( pre_mem_write, Vg_CoreSignal, tid, "signal handler frame", 189 tid, (Addr)handler, (Addr)frame ); 208 /* why -4 ? because the signal handler's return will have popped
|
| /frameworks/base/media/java/android/media/ |
| JetPlayer.java | 26 import android.os.Handler; 104 * Handler for jet events and status updates coming from the native code 396 private class NativeEventHandler extends Handler 467 * Use this method to receive JET events in the Handler associated with another 470 * @param handler the Handler that will receive the event notification messages. 472 public void setEventListener(OnJetEventListener listener, Handler handler) { 478 if (handler != null) { 479 mEventHandler = new NativeEventHandler(this, handler.getLooper()) [all...] |
| /frameworks/base/services/java/com/android/server/ |
| NetworkTimeUpdateService.java | 29 import android.os.Handler; 72 // NTP lookup is done on this thread and handler 73 private Handler mHandler; 268 /** Handler to do the network accesses on */ 269 private class MyHandler extends Handler { 291 private Handler mHandler; 293 SettingsObserver(Handler handler, int msg) { 294 super(handler); 295 mHandler = handler; [all...] |
| /frameworks/wilhelm/src/ |
| locks.c | 184 // compute the entry in the handler table using object ID and bit number 185 AttributeHandler handler = handlerTable[index][bit]; local 186 if (NULL != handler) { 187 asynchronous &= ~(*handler)(thiz);
|
| /libcore/dom/src/test/java/org/w3c/domts/ |
| XercesHTML2DocumentBuilderFactory.java | 203 HTMLHandler handler = local 205 parser.parse(url.toString(), handler); local 206 doc = handler.getHTMLDocument();
|
| XercesHTMLDocumentBuilderFactory.java | 203 HTMLHandler handler = local 205 parser.parse(url.toString(), handler); local 206 doc = handler.getHTMLDocument();
|
| /libcore/luni/src/main/java/org/apache/harmony/lang/annotation/ |
| AnnotationFactory.java | 189 Object handler = null; local 191 && (handler = Proxy.getInvocationHandler(obj)) instanceof AnnotationFactory ) { 192 AnnotationFactory other = (AnnotationFactory) handler;
|
| /libcore/luni/src/test/java/libcore/java/util/logging/ |
| OldLogManagerTest.java | 25 import java.util.logging.Handler; 43 static Handler handler = null; field in class:OldLogManagerTest 48 handler = new MockHandler(); 70 handler = null; 232 public static class MockHandler extends Handler {
|
| /libcore/luni/src/test/java/tests/api/java/lang/reflect/ |
| ProxyTest.java | 234 InvocationHandler handler = new InvocationHandler() { local 243 handler); 245 assertTrue("Did not return invocation handler ", Proxy 246 .getInvocationHandler(p) == handler);
|
| /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/templates/ |
| NewTemplateWizardState.java | 57 /** Template handler responsible for instantiating templates and reading resources */ 188 TemplateHandler handler = getTemplateHandler(); local 189 if (handler != null) { 190 TemplateMetadata template = handler.getTemplate();
|
| /system/core/sh/ |
| error.c | 67 struct jmploc *handler; variable in typeref:struct:jmploc 79 * just do a longjmp to the exception handler. The type of exception is 86 if (handler == NULL) 89 longjmp(handler->loc, 1);
|
| eval.c | 876 savehandler = handler; 877 handler = &jmploc; 882 handler = savehandler; /* restore from vfork(2) */ 947 handler = savehandler; 948 longjmp(handler->loc, 1); 950 savehandler = handler; 951 handler = &jmploc; 963 handler = savehandler; 987 savehandler = handler; 989 handler = &jmploc [all...] |
| /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/ |
| PointerTracker.java | 373 public static PointerTracker getPointerTracker(final int id, final KeyEventHandler handler) { 378 final PointerTracker tracker = new PointerTracker(i, handler); 429 private PointerTracker(final int id, final KeyEventHandler handler) { 430 if (handler == null) { 436 setKeyDetectorInner(handler.getKeyDetector()); 437 mListener = handler.getKeyboardActionListener(); 438 mDrawingProxy = handler.getDrawingProxy(); 439 mTimerProxy = handler.getTimerProxy(); [all...] |
| /external/chromium/net/http/ |
| http_auth_unittest.cc | 133 scoped_ptr<HttpAuthHandler> handler; local 140 &handler); 142 if (handler.get()) { 143 EXPECT_EQ(tests[i].challenge_scheme, handler->auth_scheme()); 144 EXPECT_STREQ(tests[i].challenge_realm, handler->realm().c_str());
|
| http_auth_cache_unittest.cc | 267 scoped_ptr<HttpAuthHandler> handler( 271 origin, handler->realm(), handler->auth_scheme(), auth_challenge, 273 cache.Add(origin, handler->realm(), handler->auth_scheme(), auth_challenge, 275 cache.Add(origin, handler->realm(), handler->auth_scheme(), auth_challenge,
|
| /external/icu4c/common/ |
| propsvec.c | 334 upvec_compact(UPropsVectors *pv, UPVecCompactHandler *handler, void *context, UErrorCode *pErrorCode) { 343 if(handler==NULL) { 382 handler(context, start, start, count, row+2, valueColumns, pErrorCode); 394 /* Call the handler once more to signal the start of delivering real values. */ 395 handler(context, UPVEC_START_REAL_VALUES_CP, UPVEC_START_REAL_VALUES_CP, 403 * vector values, and call the handler function for each vector. 422 handler(context, start, limit-1, count, pv->v+count, valueColumns, pErrorCode);
|
| /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/webkit/Source/WebCore/inspector/front-end/ |
| ExtensionAPI.js | 277 console.error("Uncaught exception in extension audit event handler: " + e); 406 registerHandler: function(command, handler) 408 this._handlers[command] = handler; 435 var handler = this._handlers[request.command]; 436 if (handler) 437 handler.call(this, request);
|
| /frameworks/base/core/java/android/hardware/input/ |
| InputManager.java | 25 import android.os.Handler; 282 * @param handler The handler on which the listener should be invoked, or null 287 public void registerInputDeviceListener(InputDeviceListener listener, Handler handler) { 295 mInputDeviceListeners.add(new InputDeviceListenerDelegate(listener, handler)); 761 private static final class InputDeviceListenerDelegate extends Handler { 764 public InputDeviceListenerDelegate(InputDeviceListener listener, Handler handler) { 765 super(handler != null ? handler.getLooper() : Looper.myLooper()) [all...] |
| /libcore/xml/src/main/java/org/xmlpull/v1/sax2/ |
| Driver.java | 48 "http://xml.org/sax/properties/declaration-handler"; 51 "http://xml.org/sax/properties/lexical-handler"; 253 public void setDTDHandler (DTDHandler handler) {} 257 public void setContentHandler (ContentHandler handler) 259 this.contentHandler = handler; 264 public void setErrorHandler(ErrorHandler handler) { 265 this.errorHandler = handler;
|
| /frameworks/base/core/java/android/webkit/ |
| CallbackProxy.java | 28 import android.os.Handler; 48 * This class is created in the UI thread so its handler and any private classes 49 * that extend Handler will operate in the UI thread. 51 class CallbackProxy extends Handler { 374 HttpAuthHandler handler = (HttpAuthHandler) msg.obj; local 377 mWebViewClient.onReceivedHttpAuthRequest(mWebView.getWebView(), handler, local 387 (SslErrorHandler) map.get("handler"), 405 (ClientCertRequestHandler) map.get("handler"), [all...] |
| /external/chromium/chrome/browser/ui/webui/chromeos/ |
| sim_unlock_ui.cc | 83 // The handler for Javascript messages related to the "sim-unlock" view. 133 explicit TaskProxy(const base::WeakPtr<SimUnlockHandler>& handler) 134 : handler_(handler) { 137 TaskProxy(const base::WeakPtr<SimUnlockHandler>& handler, 140 : handler_(handler), 183 // Single handler for PIN/PUK code operations. 197 // Notifies SIM Security tab handler that RequirePin preference change 657 SimUnlockHandler* handler = new SimUnlockHandler(); local 658 AddMessageHandler((handler)->Attach(this)); 659 handler->Init(contents) [all...] |