Searched defs:handler (Results 351 - 375 of 732) sorted by relevance

<<11121314151617181920>>

/external/chromium_org/net/http/
H A Dhttp_auth_handler_digest.cc99 scoped_ptr<HttpAuthHandler>* handler) {
106 handler->swap(tmp_handler);
114 // Note that the state of the current handler is not mutated - this way if
92 CreateAuthHandler( HttpAuthChallengeTokenizer* challenge, HttpAuth::Target target, const GURL& origin, CreateReason reason, int digest_nonce_count, const BoundNetLog& net_log, scoped_ptr<HttpAuthHandler>* handler) argument
H A Dhttp_auth_handler_negotiate.cc46 scoped_ptr<HttpAuthHandler>* handler) {
66 handler->swap(tmp_handler);
83 handler->swap(tmp_handler);
39 CreateAuthHandler( HttpAuthChallengeTokenizer* challenge, HttpAuth::Target target, const GURL& origin, CreateReason reason, int digest_nonce_count, const BoundNetLog& net_log, scoped_ptr<HttpAuthHandler>* handler) argument
/external/chromium_org/sandbox/win/src/
H A Dsharedmem_ipc_server.cc222 // Parse, verify and copy the message. The handler operates on a copy
247 Dispatcher* handler = NULL; local
250 handler = dispatcher->OnMessageReady(&ipc_params, &callback_generic);
251 if (handler) {
257 if (!(handler->*callback)(&ipc_info))
265 if (!(handler->*callback)(&ipc_info, args[0]))
273 if (!(handler->*callback)(&ipc_info, args[0], args[1]))
281 if (!(handler->*callback)(&ipc_info, args[0], args[1], args[2]))
289 if (!(handler->*callback)(&ipc_info, args[0], args[1], args[2],
298 if (!(handler
[all...]
/external/chromium_org/sync/engine/
H A Dget_updates_processor_unittest.cc90 MockUpdateHandler* handler = new MockUpdateHandler(type); local
91 update_handler_map_.insert(std::make_pair(type, handler));
93 return handler;
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/ui/
H A DShortcutRegistry.js102 if (handler.call(this, actionIds[i]))
105 this._pendingActionTimer = setTimeout(handler.bind(this, actionIds[i]), 0);
142 function handler(actionId)
/external/chromium_org/third_party/WebKit/Source/modules/mediastream/
H A DRTCDataChannel.cpp55 RTCDataChannel* RTCDataChannel::create(ExecutionContext* context, RTCPeerConnection* connection, PassOwnPtr<WebRTCDataChannelHandler> handler) argument
57 ASSERT(handler);
58 return adoptRefCountedGarbageCollectedWillBeNoop(new RTCDataChannel(context, connection, handler));
63 OwnPtr<WebRTCDataChannelHandler> handler = adoptPtr(peerConnectionHandler->createDataChannel(label, init)); local
64 if (!handler) {
68 return adoptRefCountedGarbageCollectedWillBeNoop(new RTCDataChannel(context, connection, handler.release()));
71 RTCDataChannel::RTCDataChannel(ExecutionContext* context, RTCPeerConnection* connection, PassOwnPtr<WebRTCDataChannelHandler> handler) argument
73 , m_handler(handler)
/external/chromium_org/third_party/WebKit/Source/wtf/
H A DAssertions.cpp318 static void installSignalHandlersForFatalErrors(void (*handler)(int)) argument
320 signal(SIGILL, handler); // 4: illegal instruction (not reset when caught).
321 signal(SIGTRAP, handler); // 5: trace trap (not reset when caught).
322 signal(SIGFPE, handler); // 8: floating point exception.
323 signal(SIGBUS, handler); // 10: bus error.
324 signal(SIGSEGV, handler); // 11: segmentation violation.
325 signal(SIGSYS, handler); // 12: bad argument to system call.
326 signal(SIGPIPE, handler); // 13: write on a pipe with no reader.
327 signal(SIGXCPU, handler); // 24: exceeded CPU time limit.
328 signal(SIGXFSZ, handler); // 2
[all...]
/external/chromium_org/third_party/android_crazy_linker/src/src/
H A Dcrazy_linker_rdebug.cpp274 RDebugRunnable(rdebug_callback_handler_t handler, argument
277 : handler_(handler), rdebug_(rdebug), entry_(entry) { }
302 bool RDebug::PostCallback(rdebug_callback_handler_t handler, argument
309 RDebugRunnable* runnable = new RDebugRunnable(handler, this, entry);
/external/chromium_org/third_party/icu/source/common/
H A Dpropsvec.c334 upvec_compact(UPropsVectors *pv, UPVecCompactHandler *handler, void *context, UErrorCode *pErrorCode) { argument
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/chromium_org/third_party/libjingle/source/talk/xmpp/
H A Drostermodule_unittest.cc166 //! This session handler saves all calls to a string. These are events and
260 XmppTestHandler* handler) {
279 XmppTestHandler handler(engine.get());
289 engine->SetOutputHandler(&handler);
290 engine->AddStanzaHandler(&handler);
291 engine->SetSessionHandler(&handler);
298 RunLogin(this, engine.get(), &handler);
299 EXPECT_EQ("", handler.OutputActivity());
311 EXPECT_EQ(handler.OutputActivity(),
317 EXPECT_EQ(handler
259 RunLogin(RosterModuleTest* obj, XmppEngine* engine, XmppTestHandler* handler) argument
[all...]
/external/chromium_org/third_party/libxml/src/
H A DHTMLtree.c472 xmlCharEncodingHandlerPtr handler = NULL; local
482 handler = xmlFindCharEncodingHandler(encoding);
483 if (handler == NULL)
491 if (handler == NULL)
492 handler = xmlFindCharEncodingHandler("HTML");
493 if (handler == NULL)
494 handler = xmlFindCharEncodingHandler("ascii");
499 buf = xmlOutputBufferCreateFile(out, handler);
535 xmlCharEncodingHandlerPtr handler = NULL; local
564 handler
1038 xmlCharEncodingHandlerPtr handler = NULL; local
1098 xmlCharEncodingHandlerPtr handler = NULL; local
1162 xmlCharEncodingHandlerPtr handler = NULL; local
[all...]
H A Derror.c68 * Default handler for out of context error messages.
84 * @handler: the handler
86 * Set or reset (if NULL) the default handler for generic errors
90 initGenericErrorDefaultFunc(xmlGenericErrorFunc * handler) argument
92 if (handler == NULL)
95 xmlGenericError = (*handler);
101 * @handler: the new handler function
103 * Function to reset the handler an
113 xmlSetGenericErrorFunc(void *ctx, xmlGenericErrorFunc handler) argument
134 xmlSetStructuredErrorFunc(void *ctx, xmlStructuredErrorFunc handler) argument
[all...]
/external/chromium_org/third_party/webrtc/base/
H A Dmacsocketserver.cc57 void (*handler)(int)) {
59 if (!PhysicalSocketServer::SetPosixSignalHandler(signum, handler)) {
63 // Only register the FD once, when the first custom handler is installed.
307 // Install event handler
56 SetPosixSignalHandler(int signum, void (*handler)(int)) argument
H A Dmessagequeue.cc94 void MessageQueueManager::Clear(MessageHandler *handler) { argument
96 // queues to remove this handler from.
98 return Instance()->ClearInternal(handler);
100 void MessageQueueManager::ClearInternal(MessageHandler *handler) { argument
105 (*iter)->Clear(handler);
H A Dmessagequeue.h42 static void Clear(MessageHandler *handler);
58 void ClearInternal(MessageHandler *handler);
135 inline bool Match(MessageHandler* handler, uint32 id) const { argument
136 return (handler == NULL || handler == phandler)
/external/chromium_org/third_party/webrtc/examples/android/media_demo/src/org/webrtc/webrtcdemo/
H A DMediaCodecVideoDecoder.java74 handler.sendMessageDelayed(
75 handler.obtainMessage(DECODE), delayMillis);
90 private DecodeHandler handler; field in class:MediaCodecVideoDecoder
138 handler.sendMessage(handler.obtainMessage(DECODE));
189 handler = new DecodeHandler();
190 // Notify that the thread has created a handler.
/external/chromium_org/ui/events/
H A Devent_processor_unittest.cc309 // Install an event handler on |child| which always prevents the target from
376 // Add a pre-target handler on the child of the root that will mark the event
378 TestEventHandler handler; local
379 child_r->AddPreTargetHandler(&handler);
385 EXPECT_EQ(1, handler.num_key_events());
386 handler.Reset();
388 // Add a post-target handler on the child of the root that will mark the event
391 child_r->RemovePreTargetHandler(&handler);
392 child_r->AddPostTargetHandler(&handler);
398 EXPECT_EQ(1, handler
[all...]
/external/chromium_org/ui/views/
H A Dview_targeter_unittest.cc87 void SetGestureHandler(internal::RootView* root_view, View* handler) { argument
88 root_view->gesture_handler_ = handler;
292 // GESTURE_END events should be targeted to the existing gesture handler,
307 // chain; they are only ever targeted in the case where the gesture handler
311 // Assume that the default gesture handler was set by the previous gesture,
312 // but that this handler is currently NULL. No gesture events should be
338 // If no default gesture handler is currently set, targeting should be
345 // If no default gesture handler is currently set, GESTURE_END events
/external/chromium_org/ui/views/window/
H A Dnon_client_view.cc204 View* handler = local
206 if (handler)
207 return handler;
/external/chromium_org/v8/src/arm/
H A Ddeoptimizer-arm.cc107 intptr_t handler = reinterpret_cast<intptr_t>(xref.address()); local
110 output_frame->SetRegister(r1.code(), handler);
/external/chromium_org/v8/src/arm64/
H A Ddeoptimizer-arm64.cc95 intptr_t handler = reinterpret_cast<intptr_t>(xref.address()); local
98 output_frame->SetRegister(x1.code(), handler);
/external/chromium_org/v8/src/mips/
H A Ddeoptimizer-mips.cc103 intptr_t handler = reinterpret_cast<intptr_t>(xref.address()); local
107 output_frame->SetRegister(s2.code(), handler);
/external/chromium_org/v8/src/mips64/
H A Ddeoptimizer-mips64.cc102 intptr_t handler = reinterpret_cast<intptr_t>(xref.address()); local
106 output_frame->SetRegister(s2.code(), handler);
/external/chromium_org/v8/src/x64/
H A Ddeoptimizer-x64.cc107 intptr_t handler = local
111 output_frame->SetRegister(rbx.code(), handler);
/external/chromium_org/win8/metro_driver/
H A Dtoast_notification_handler.cc105 base::win::MetroNotificationClickedHandler handler,
113 notification_handler(handler) {
98 DesktopNotification( const char* notification_origin, const char* notification_icon, const wchar_t* notification_title, const wchar_t* notification_body, const wchar_t* notification_display_source, const char* notification_id, base::win::MetroNotificationClickedHandler handler, const wchar_t* handler_context) argument

Completed in 914 milliseconds

<<11121314151617181920>>