/dalvik/libcore/logging/src/main/java/java/util/logging/ |
SocketHandler.java | 27 * A handler that writes log messages to a socket connection. 29 * This handler reads the following properties from the log manager to 36 * class to be associated with this handler, defaults to {@code null} if this 39 * formatter class to be associated with this handler, defaults to 43 * handler will use to encode log messages, defaults to {@code null} if this 46 * this handler should connect to. There's no default value for this property. 48 * this handler should connect to. There's no default value for this property. 51 * This handler buffers the outgoing messages, but flushes each time a log 78 * have the required permission to control this handler. 103 * have the required permission to control this handler [all...] |
/packages/apps/Bluetooth/src/com/android/bluetooth/pbap/ |
BluetoothPbapCallLogComposer.java | 117 for (OneEntryHandler handler : mHandlerList) { 118 if (!handler.onInit(mContext)) { 127 for (OneEntryHandler handler : mHandlerList) { 128 handler.onInit(mContext); 147 public void addHandler(OneEntryHandler handler) { 148 if (handler != null) { 149 mHandlerList.add(handler); 173 for (OneEntryHandler handler : mHandlerList) { 174 if (!handler.onEntryCreated(vcard)) { 179 for (OneEntryHandler handler : mHandlerList) [all...] |
/frameworks/base/telephony/java/com/android/internal/telephony/ |
Phone.java | 21 import android.os.Handler; 277 * Use {@link #registerForPreciseCallStateChanged(Handler, int, Object) 330 void registerForUnknownConnection(Handler h, int what, Object obj); 335 void unregisterForUnknownConnection(Handler h); 346 void registerForPreciseCallStateChanged(Handler h, int what, Object obj); 352 void unregisterForPreciseCallStateChanged(Handler h); 367 void registerForNewRingingConnection(Handler h, int what, Object obj); 374 void unregisterForNewRingingConnection(Handler h); 384 void registerForIncomingRing(Handler h, int what, Object obj); 391 void unregisterForIncomingRing(Handler h) [all...] |
/frameworks/base/core/java/android/accounts/ |
AccountManager.java | 26 import android.os.Handler; 116 * {@link Handler} as parameters. These methods return immediately but 118 * {@link AccountManagerCallback#run} will be invoked on the Handler's 196 private final Handler mMainHandler; 214 mMainHandler = new Handler(mContext.getMainLooper()); 220 public AccountManager(Context context, IAccountManager service, Handler handler) { 223 mMainHandler = handler; 394 * @param handler {@link Handler} identifying the callback thread [all...] |
/external/expat/doc/ |
reference.html | 80 <li><a href="#setting">Handler Setting Functions</a> 154 handler) functions with the parser and then start feeding it the 156 call the appropriate handler for that part (if you've registered one.) 177 <dd>Set handler for text.</dd> 190 above functions (it doesn't need to set a character handler.) The 193 parent element that contains them. The start handler does all the 217 } /* End of start handler */ 226 } /* End of end handler */ 452 information onto the stack in the start handler and you pop it off in 453 the end handler.</p [all...] |
/external/neven/Embedded/common/src/b_BasicEm/ |
Context.h | 32 /** error handler function pointer */ 35 /** callback handler function pointer */ 58 #define bbs_ERR_OUT_OF_MEMORY 2 /* malloc handler returns with NULL*/ 105 /** error function handler */ 108 /** callback function handler */ 160 /** sets error handler; returns pointer to previous error handler 161 * Pointer to Error handler can be NULL (->no handler call) 162 * The error handler is called by function pushError diectly after an error was poste [all...] |
/sdk/sdkmanager/libs/sdklib/tests/com/android/sdklib/repository/ |
SdkRepositoryTest.java | 54 * A SAX error handler that captures the errors and warnings.
73 * Verifies if the handler captures some errors or warnings.
114 private Validator getValidator(int version, CaptureErrorHandler handler) throws SAXException {
119 if (handler != null) {
120 validator.setErrorHandler(handler);
143 CaptureErrorHandler handler = new CaptureErrorHandler();
local 144 Validator validator = getValidator(1, handler);
146 handler.verify();
155 CaptureErrorHandler handler = new CaptureErrorHandler();
local 156 Validator validator = getValidator(2, handler);
167 CaptureErrorHandler handler = new CaptureErrorHandler(); local 197 CaptureErrorHandler handler = new CaptureErrorHandler(); local [all...] |
/dalvik/libcore/xml/src/main/java/org/apache/xalan/transformer/ |
TreeWalker2Result.java | 40 /** The result tree handler */ 50 * @param handler The Result tree handler to use 53 SerializationHandler handler) 56 super(handler, null); 59 m_handler = handler;
|
/dalvik/libcore/xml/src/main/java/org/w3c/dom/ |
UserDataHandler.java | 17 * <code>Node.setUserData()</code> the application can provide a handler 21 * nodes. This interface defines that handler. 52 * This method is called whenever the node for which this handler is 56 * the handler is DOM implementation dependent. 59 * @param key Specifies the key for which this handler is being called. 60 * @param data Specifies the data for which this handler is being called.
|
/external/webkit/WebKit/android/wds/ |
Command.h | 61 class Handler { 63 virtual ~Handler() {} 71 const Handler& handler) 75 , m_handler(handler) {} 100 const Handler& m_handler;
|
/frameworks/base/core/java/android/os/ |
ResultReceiver.java | 29 final Handler mHandler; 60 * <var>handler</var> if given, or from an arbitrary thread if null. 62 public ResultReceiver(Handler handler) { 64 mHandler = handler; 69 * always asynchronously if the receiver has supplied a Handler in which
|
/frameworks/base/test-runner/src/android/test/ |
IsolatedContext.java | 37 import android.os.Handler; 122 super(IsolatedContext.this, null /* IAccountManager */, null /* handler */); 126 Handler handler, boolean updateImmediately) { 136 AccountManagerCallback<Account[]> callback, Handler handler) {
|
/cts/tests/src/android/content/cts/ |
MockContextWrapperService.java | 23 import android.os.Handler; 41 private Handler mHandler = new Handler() {
|
/cts/tests/src/android/widget/cts/ |
ViewGroupStubActivity.java | 22 import android.os.Handler; 29 private final Handler mHandler = new Handler();
|
/dalvik/docs/opcodes/ |
opcode-0d-move-exception.html | 18 instruction of any exception handler whose caught exception is not to be 20 exception handler; anywhere else is invalid. 50 instruction handler, that is, its offset in the code array must match one of
|
/dalvik/libcore/xml/src/test/java/tests/api/org/xml/sax/support/ |
NoInstanceXMLReader.java | 64 public void setContentHandler(ContentHandler handler) { 67 public void setDTDHandler(DTDHandler handler) { 73 public void setErrorHandler(ErrorHandler handler) {
|
/dalvik/tests/044-proxy/src/ |
Clash.java | 28 InvocationHandler handler = new ClashInvocationHandler(); local 34 handler); 43 handler);
|
/frameworks/base/core/java/android/ddm/ |
DdmRegister.java | 24 * Just a place to stick handler registrations, instead of scattering 34 * If you write a handler, add a registration call here. 40 * logging). It also allows debugging of DDM handler initialization.
|
/frameworks/base/core/java/android/text/ |
ClipboardManager.java | 21 import android.os.Handler; 51 public ClipboardManager(Context context, Handler handler) {
|
/frameworks/base/core/java/android/webkit/ |
GeolocationPermissions.java | 19 import android.os.Handler; 62 private Handler mHandler; 63 private Handler mUIHandler; 65 // A queue to store messages until the handler is ready. 95 * Creates the UI message handler. Must be called on the UI thread. 100 mUIHandler = new Handler() { 124 * Creates the message handler. Must be called on the WebKit thread. 129 mHandler = new Handler() { 176 * Utility function to send a message to our handler. 190 * Utility function to send a message to the handler on the UI threa [all...] |
/frameworks/base/core/tests/coretests/src/android/app/activity/ |
RemoteSubActivityScreen.java | 22 import android.os.Handler; 27 Handler mHandler = new Handler();
|
/frameworks/base/core/tests/coretests/src/android/widget/gridview/ |
GridScrollListener.java | 21 import android.os.Handler; 33 Handler mHandler = new Handler();
|
/frameworks/base/core/tests/coretests/src/android/widget/listview/ |
ListScrollListener.java | 21 import android.os.Handler; 34 Handler mHandler = new Handler();
|
/frameworks/base/services/java/com/android/server/am/ |
AppWaitingForDebuggerDialog.java | 20 import android.os.Handler; 60 private final Handler mHandler = new Handler() {
|
/dalvik/libcore/xml/src/main/java/org/w3c/dom/ls/ |
DOMImplementationLS.java | 74 * the "<a href='http://www.w3.org/TR/DOM-Level-3-Core/core.html#parameter-error-handler'> 75 * error-handler</a>" configuration parameter is <code>null</code>. However, implementations 76 * may provide a default error handler at creation time. In that case, 77 * the initial value of the <code>"error-handler"</code> configuration 79 * reference to the default error handler. 93 * the value of the <code>"error-handler"</code> configuration 95 * provide a default error handler at creation time. In that case, the 96 * initial value of the <code>"error-handler"</code> configuration 98 * reference to the default error handler.
|