| /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/authoring/ |
| Mp4TrackImpl.java | 40 private String handler; field in class:Mp4TrackImpl 47 handler = trackBox.getMediaBox().getHandlerBox().getHandlerType(); 203 return handler; 217 "handler='" + handler + '\'' +
|
| /external/quake/quake/src/WinQuake/ |
| dosisms.h | 85 void dos_registerintr(int intr, void (*handler)(void));
|
| /external/webkit/Source/WebKit/chromium/src/ |
| DebuggerAgentManager.h | 57 // agents and v8 debugger. It will set debug output handler as long as at least 63 // would expect some actions from the handler. If there is no appropriate 73 static void setMessageLoopDispatchHandler(WebDevToolsAgent::MessageLoopDispatchHandler handler);
|
| /external/wpa_supplicant_8/src/radius/ |
| radius_client.h | 205 * RadiusRxResult - RADIUS client RX handler result 211 * This stops handler calls and frees the message. 218 * This stops handler calls, but does not free the message; the handler 225 * RADIUS_RX_UNKNOWN - Message is not for this handler 239 RadiusRxResult (*handler)
|
| /external/zxing/qr_scanner/src/com/google/zxing/client/android/camera/ |
| CameraManager.java | 26 import android.os.Handler; 60 * Preview frames are delivered here, which we pass on to the registered handler. Make sure to 61 * clear the handler so it will only receive one message. 64 /** Autofocus callbacks arrive here, and are dispatched to the Handler which requested them. */ 144 * A single preview frame will be returned to the handler supplied. The data will arrive as byte[] 148 * @param handler The handler to send the message to. 151 public void requestPreviewFrame(Handler handler, int message) { 154 previewCallback.setHandler(handler, message) [all...] |
| /frameworks/av/include/media/stagefright/foundation/ |
| ALooper.h | 43 handler_id registerHandler(const sp<AHandler> &handler);
|
| ALooperRoster.h | 30 const sp<ALooper> looper, const sp<AHandler> &handler);
|
| /frameworks/base/services/java/com/android/server/location/ |
| LocationProviderProxy.java | 26 import android.os.Handler; 59 int initialPackageNamesResId, Handler handler) { 62 handler); 72 int initialPackageNamesResId, Handler handler) { 77 mNewServiceWork, handler);
|
| /frameworks/native/services/surfaceflinger/ |
| MessageQueue.h | 45 // return true if message has a handler 46 virtual bool handler() = 0; 48 // waits for the handler to be processed 63 class Handler : public MessageHandler { 72 Handler(MessageQueue& queue) : mQueue(queue), mEventMask(0) { } 79 friend class Handler; 86 sp<Handler> mHandler;
|
| /libcore/luni/src/main/java/org/apache/harmony/xml/ |
| ExpatReader.java | 53 = "http://xml.org/sax/properties/lexical-handler"; 181 public void setContentHandler(ContentHandler handler) { 182 this.contentHandler = handler; 189 public void setErrorHandler(ErrorHandler handler) { 190 this.errorHandler = handler; 198 * Returns the current lexical handler. 200 * @return the current lexical handler, or null if none has been registered 208 * Registers a lexical event handler. Supports neither 212 * <p>If the application does not register a lexical handler, all 216 * <p>Applications may register a new or different handler in th [all...] |
| /packages/apps/Nfc/src/com/android/nfc/echoserver/ |
| EchoServer.java | 26 import android.os.Handler; 84 static class EchoMachine implements Handler.Callback { 105 final Handler handler; field in class:EchoServer.EchoMachine 116 handler = new Handler(this); 129 handler.sendMessageDelayed(handler.obtainMessage(), ECHO_DELAY_IN_MS);
|
| /external/chromium/chrome/browser/ui/login/ |
| login_prompt.cc | 230 DCHECK(login_details->handler() != this); 233 if (*login_details->handler()->auth_info() != *auth_info()) 236 // Set or cancel the auth in this handler. 389 LoginHandler* handler) 390 : request_url_(request_url), auth_info_(auth_info), handler_(handler) { 455 // Set the password form for the handler (by copy). 477 LoginHandler* handler = LoginHandler::Create(auth_info, request); local 480 request->url(), auth_info, handler)); 481 return handler;
|
| /external/chromium/chrome/common/ |
| sqlite_utils.cc | 16 // The vanilla error handler implements the common fucntionality for all the 18 // the Handler() function. 49 // The default error handler factory is also in charge of managing the 58 SQLErrorHandler* handler; local 60 handler = new DebugSQLErrorHandler; 62 handler = new ReleaseSQLErrorHandler; 64 AddHandler(handler); 65 return handler; 69 void AddHandler(SQLErrorHandler* handler) { 71 errors_.push_back(handler); [all...] |
| /external/chromium/net/http/ |
| http_auth_controller.cc | 68 AuthTarget DetermineAuthTarget(const HttpAuthHandler* handler) { 69 switch (handler->target()) { 71 if (handler->origin().SchemeIsSecure()) 76 if (handler->origin().SchemeIsSecure()) 87 void HistogramAuthEvent(HttpAuthHandler* handler, AuthEvent auth_event) { 99 HttpAuth::Scheme auth_scheme = handler->auth_scheme(); 143 AuthTarget auth_target = DetermineAuthTarget(handler); 223 // Try to create a handler using the previous auth challenge. 267 // Give the existing auth handler first try at the authentication headers. 386 // to know about it. If an entry for (origin, handler->realm()) alread [all...] |
| /external/libppp/src/ |
| exec.c | 88 struct execdevice *dev = device2exec(p->handler); 120 struct execdevice *dev = device2exec(p->handler); 123 p->handler->removefromset = NULL; 125 p->handler->removefromset = exec_RemoveFromSet; 146 struct execdevice *dev = device2exec(p->handler); 207 struct execdevice *dev = device2exec(p->handler); 233 struct execdevice *dev = device2exec(p->handler);
|
| tty.c | 120 struct ttydevice *dev = device2tty(p->handler); 183 struct ttydevice *dev = device2tty(p->handler); 198 struct ttydevice *dev = device2tty(p->handler); 229 struct ttydevice *dev = device2tty(p->handler); 255 struct ttydevice *dev = device2tty(p->handler); 384 struct ttydevice *dev = device2tty(p->handler); 409 struct ttydevice *dev = device2tty(p->handler); 420 struct ttydevice *dev = device2tty(p->handler); 434 struct ttydevice *dev = device2tty(p->handler); 476 struct ttydevice *dev = device2tty(p->handler); [all...] |
| /external/v8/test/mjsunit/harmony/ |
| proxies-example-membrane.js | 31 // A simple no-op handler. Adapted from: 158 var handler = Proxy.create(Object.freeze({ 162 print("handler enter", name, arg); 164 print("handler exit", name, arg, "returning", str(x)); 170 registerObject(handler, "handler"); 188 return Proxy.createFunction(handler, callTrap, constructTrap); 191 return Proxy.create(handler, prototype); 318 print("dry handler enter", name, arg); 323 print("dry handler exit", name, arg, "returning", str(x)) [all...] |
| /packages/apps/Settings/src/com/android/settings/bluetooth/ |
| BluetoothEventManager.java | 49 private final Map<String, Handler> mHandlerMap; 55 interface Handler { 59 void addHandler(String action, Handler handler) { 60 mHandlerMap.put(action, handler); 64 void addProfileHandler(String action, Handler handler) { 65 mHandlerMap.put(action, handler); 80 mHandlerMap = new HashMap<String, Handler>(); 148 Handler handler = mHandlerMap.get(action) [all...] |
| /dalvik/vm/mterp/out/ |
| InterpAsm-armv7-a-neon.S | 598 * structure, then jumps to the return handler. 614 * structure, then jumps to the return handler. 631 * structure, then jumps to the return handler. [all...] |
| InterpAsm-armv7-a.S | 598 * structure, then jumps to the return handler. 614 * structure, then jumps to the return handler. 631 * structure, then jumps to the return handler. [all...] |
| InterpAsm-armv5te-vfp.S | 586 * structure, then jumps to the return handler. 602 * structure, then jumps to the return handler. 619 * structure, then jumps to the return handler. [all...] |
| /frameworks/base/services/java/com/android/server/wifi/ |
| WifiController.java | 34 import android.os.Handler; 183 Handler handler = new Handler(looper); local 185 registerForStayAwakeModeChange(handler); 187 registerForWifiIdleTimeChange(handler); 189 registerForWifiSleepPolicyChange(handler); 217 private void registerForStayAwakeModeChange(Handler handler) { 218 ContentObserver contentObserver = new ContentObserver(handler) { [all...] |
| /external/valgrind/main/coregrind/m_sigframe/ |
| sigframe-arm-linux.c | 106 /* set SIGSEGV to default handler */ 166 void *handler, UInt flags, 175 VG_TRACK( pre_mem_write, Vg_CoreSignal, tst->tid, "signal handler frame", 206 void *handler, 235 "signal handler siginfo", (Addr)rsf, 247 handler, flags, mask, restorer); 253 handler, flags, mask, restorer); 269 tst->arch.vex.guest_R15T = (Addr) handler; /* R15 == PC */
|
| /frameworks/base/core/java/android/os/ |
| MessageQueue.java | 27 * but rather through {@link Handler} objects associated with the Looper. 63 * wait for more. Return true to keep your idle handler active, false 79 * @param handler The IdleHandler to be added. 81 public void addIdleHandler(IdleHandler handler) { 82 if (handler == null) { 86 mIdleHandlers.add(handler); 95 * @param handler The IdleHandler to be removed. 97 public void removeIdleHandler(IdleHandler handler) { 99 mIdleHandlers.remove(handler); 197 mPendingIdleHandlers[i] = null; // release the reference to the handler [all...] |
| /external/libxml2/ |
| parserInternals.c | 950 xmlCharEncFirstLineInt(xmlCharEncodingHandler *handler, xmlBufferPtr out, 955 xmlCharEncodingHandlerPtr handler, int len); 958 xmlCharEncodingHandlerPtr handler, int len); 972 xmlCharEncodingHandlerPtr handler; local 1045 handler = xmlGetCharEncodingHandler(enc); 1046 if (handler == NULL) { [all...] |