Searched refs:handler (Results 226 - 250 of 1334) sorted by relevance

1234567891011>>

/external/valgrind/main/none/tests/
H A Dsyscall-restart2.c11 static void handler(int s) function
37 sa.sa_handler = handler;
/external/chromium_org/content/renderer/media/
H A Dmedia_stream_dispatcher.cc33 // A request is identified by pair (request_id, handler), or ipc_request.
39 Request(const base::WeakPtr<MediaStreamDispatcherEventHandler>& handler, argument
42 : handler(handler),
49 return (request_id1 == request_id && handler1.get() == handler.get());
51 base::WeakPtr<MediaStreamDispatcherEventHandler> handler; member in struct:content::MediaStreamDispatcher::Request
59 base::WeakPtr<MediaStreamDispatcherEventHandler> handler; member in struct:content::MediaStreamDispatcher::Stream
255 new_stream.handler = request.handler;
259 if (request.handler
[all...]
/external/apache-xml/src/main/java/org/apache/xml/serializer/
H A DDOM3Serializer.java132 * @param handler the Level 3 DOMErrorHandler
134 public void setErrorHandler(DOMErrorHandler handler); argument
/external/chromium_org/ash/host/
H A Dash_window_tree_host_x11_unittest.cc92 scoped_ptr<RootWindowEventHandler> handler(
100 EXPECT_EQ(ui::ET_UNKNOWN, handler->last_touch_type());
101 EXPECT_EQ(-1, handler->last_touch_id());
109 EXPECT_EQ(ui::ET_UNKNOWN, handler->last_touch_type());
110 EXPECT_EQ(-1, handler->last_touch_id());
111 EXPECT_EQ(gfx::Point(0, 0), handler->last_touch_location());
118 EXPECT_EQ(ui::ET_TOUCH_PRESSED, handler->last_touch_type());
119 EXPECT_EQ(0, handler->last_touch_id());
120 EXPECT_EQ(gfx::Point(1500, 1500), handler->last_touch_location());
126 EXPECT_EQ(ui::ET_TOUCH_MOVED, handler
[all...]
/external/chromium_org/ash/keyboard_overlay/
H A Dkeyboard_overlay_view.cc38 WebContentsHandler* handler)
39 : views::WebDialogView(context, delegate, handler) {
72 WebContentsHandler* handler,
80 new KeyboardOverlayView(context, delegate, handler);
35 KeyboardOverlayView( content::BrowserContext* context, WebDialogDelegate* delegate, WebContentsHandler* handler) argument
70 ShowDialog( content::BrowserContext* context, WebContentsHandler* handler, const GURL& url) argument
/external/chromium_org/chrome/browser/apps/
H A Dapp_url_redirector.cc64 DVLOG(1) << "Launching app handler with URL: "
113 const UrlHandlerInfo* handler = local
115 if (handler) {
116 DVLOG(1) << "Found matching app handler for redirection: "
118 << handler->id;
123 handler->id));
127 DVLOG(1) << "Skipping redirection: no matching app handler found";
/external/chromium_org/content/public/browser/
H A Dbrowser_url_handler.h26 // If a handler handles |url|, it should :
28 // If the URL is not handled by a handler, it should return false.
32 // Returns the null handler for use with |AddHandlerPair()|.
46 // Add the specified handler pair to the list of URL handlers.
48 // Note that normally, the reverse handler is only used if the modified URL is
52 virtual void AddHandlerPair(URLHandler handler,
/external/chromium_org/net/http/
H A Dhttp_auth_handler_factory.h33 CREATE_CHALLENGE, // Create a handler in response to a challenge.
34 CREATE_PREEMPTIVE, // Create a handler preemptively.
56 // the caller through |*handler| and OK is returned.
58 // If |*challenge| specifies an unsupported authentication scheme, |*handler|
61 // If |*challenge| is improperly formed, |*handler| is set to NULL and
64 // |create_reason| indicates why the handler is being created. This is used
83 scoped_ptr<HttpAuthHandler>* handler) = 0;
85 // Creates an HTTP authentication handler based on the authentication
94 scoped_ptr<HttpAuthHandler>* handler);
96 // Creates an HTTP authentication handler base
[all...]
/external/chromium_org/ppapi/c/dev/
H A Dppb_messaging_deprecated.h41 const struct PPP_MessageHandler_0_1_Deprecated* handler,
/external/chromium_org/sync/android/java/src/org/chromium/sync/signin/
H A DAccountManagerDelegate.java26 boolean notifyAuthFailure, AccountManagerCallback<Bundle> callback, Handler handler);
29 Activity activity, AccountManagerCallback<Bundle> callback, Handler handler);
41 AccountManagerCallback<Boolean> callback, Handler handler);
50 Activity activity, AccountManagerCallback<Bundle> callback, Handler handler);
25 getAuthToken(Account account, String authTokenType, boolean notifyAuthFailure, AccountManagerCallback<Bundle> callback, Handler handler) argument
28 getAuthToken(Account account, String authTokenType, Bundle options, Activity activity, AccountManagerCallback<Bundle> callback, Handler handler) argument
40 removeAccount(Account account, AccountManagerCallback<Boolean> callback, Handler handler) argument
49 confirmCredentials(Account account, Bundle bundle, Activity activity, AccountManagerCallback<Bundle> callback, Handler handler) argument
/external/chromium_org/third_party/webrtc/modules/desktop_capture/x11/
H A Dshared_x_display.cc46 void SharedXDisplay::AddEventHandler(int type, XEventHandler* handler) { argument
47 event_handlers_[type].push_back(handler);
50 void SharedXDisplay::RemoveEventHandler(int type, XEventHandler* handler) { argument
56 std::remove(handlers->second.begin(), handlers->second.end(), handler);
/external/chromium_org/third_party/yasm/source/patched-yasm/frontends/yasm/
H A Dyasm-options.h44 int (*handler) (char *cmd, /*@null@*/ char *param, int extra); member in struct:opt_option_s
45 int extra; /* extra value for handler */
/external/chromium_org/tools/python/google/
H A Dlogging_utils.py74 # to set the handler of the root logging object, we need to do setup
79 handler = StdoutStderrHandler(threshold=threshold)
80 handler.setLevel(level)
81 handler.setFormatter(formatter)
82 root.addHandler(handler)
/external/clang/test/CodeGen/
H A D2007-09-28-PackedUnionMember.c25 extern long bork(FuncPtr handler, const struct E *list);
/external/jarjar/src/main/com/tonicsystems/jarjar/
H A DDepFind.java34 public void run(String from, String to, DepHandler handler) throws IOException { argument
56 handler.handleStart();
64 new DepFindVisitor(classes, entry.getSource(), handler),
75 handler.handleEnd();
/external/mockito/src/org/mockito/plugins/
H A DMockMaker.java46 * <li>Your proxy object should carry the {@code handler} with it. For example, if you generate byte code
47 * to create the proxy you could generate an extra field to keep the {@code handler} with the generated object.
48 * Your implementation of {@code MockMaker} is required to provide this instance of {@code handler} when
54 * @param handler See {@link org.mockito.invocation.MockHandler}.
63 MockHandler handler
67 * Returns the handler for the {@code mock}. <b>Do not</b> provide your own implementations at this time
72 * @return may return null - it means that there is no handler attached to provided object.
79 * Replaces the existing handler on {@code mock} with {@code newHandler}.
81 * <p>The invocation handler actually store invocations to achieve
83 * a new instance of the invocation handler
[all...]
/external/chromium_org/v8/test/mjsunit/harmony/
H A Dproxies-function.js33 function CreateFrozen(handler, callTrap, constructTrap) {
34 if (handler.fix === undefined) handler.fix = function() { return {} }
35 var f = Proxy.createFunction(handler, callTrap, constructTrap)
43 var handler = {
58 var handler = {
63 var f = Proxy.createFunction(handler, callTrap)
240 TestCall(false, Proxy.createFunction(handler, function(x, y) {
245 TestCall(true, Proxy.createFunction(handler, function(x, y) {
251 TestCall(false, CreateFrozen(handler, functio
[all...]
/external/apache-http/src/org/apache/http/impl/conn/tsccm/
H A DRefQueueWorker.java48 * on to a handler for appropriate processing.
62 /** The handler for the references found. */
67 * The thread executing this handler.
77 * @param handler the handler to pass the references to
79 public RefQueueWorker(ReferenceQueue<?> queue, RefQueueHandler handler) { argument
83 if (handler == null) {
88 refHandler = handler;
/external/apache-xml/src/main/java/org/apache/xalan/extensions/
H A DExtensionNamespaceSupport.java73 ExtensionHandler handler = null;
95 handler = (ExtensionHandler)con.newInstance(m_args);
103 return handler;
/external/apache-xml/src/main/java/org/apache/xpath/functions/
H A DFuncNormalizeSpace.java66 ContentHandler handler)
76 dtm.dispatchCharactersEvents(node, handler, true);
82 obj.dispatchCharactersEvents(handler);
65 executeCharsToContentHandler(XPathContext xctxt, ContentHandler handler) argument
/external/chromium_org/ash/wm/overview/
H A Dtransparent_activate_window_button.cc30 // Initializes the event handler transparent window.
44 aura::Window* handler = widget->GetNativeWindow(); local
45 handler->parent()->StackChildAtBottom(handler);
/external/chromium_org/chrome/browser/invalidation/
H A Dfake_invalidation_service.h35 syncer::InvalidationHandler* handler) OVERRIDE;
37 syncer::InvalidationHandler* handler,
40 syncer::InvalidationHandler* handler) OVERRIDE;
H A Dinvalidation_service_android.h46 syncer::InvalidationHandler* handler) OVERRIDE;
48 syncer::InvalidationHandler* handler,
51 syncer::InvalidationHandler* handler) OVERRIDE;
/external/chromium_org/chrome/browser/sync/test/integration/
H A Dfake_server_invalidation_service.h33 syncer::InvalidationHandler* handler) OVERRIDE;
35 syncer::InvalidationHandler* handler,
38 syncer::InvalidationHandler* handler) OVERRIDE;
/external/chromium_org/components/invalidation/
H A Dinvalidation_notifier.h56 virtual void RegisterHandler(InvalidationHandler* handler) OVERRIDE;
57 virtual void UpdateRegisteredIds(InvalidationHandler* handler,
59 virtual void UnregisterHandler(InvalidationHandler* handler) OVERRIDE;

Completed in 1364 milliseconds

1234567891011>>