Searched refs:handler (Results 1 - 25 of 648) sorted by relevance

1234567891011>>

/macosx-10.10/emacs-93/emacs/oldXMenu/
H A DEvHand.c9 * XMenuEventHandler - Set the XMenu asynchronous event handler.
18 XMenuEventHandler(handler)
19 int (*handler)();
22 * Set the global event handler variable.
24 _XMEventHandler = handler;
/macosx-10.10/eap8021x-198/eapolclient.tproj/
H A DFDHandler.c66 FDHandler * handler = (FDHandler *)info; local
68 if (handler->func) {
69 (*handler->func)(handler->arg1, handler->arg2);
78 FDHandler * handler; local
80 handler = malloc(sizeof(*handler));
81 if (handler == NULL)
83 bzero(handler, sizeo
99 FDHandler * handler; local
129 FDHandler_enable(FDHandler * handler, FDHandler_func * func, void * arg1, void * arg2) argument
139 FDHandler_disable(FDHandler * handler) argument
149 FDHandler_fd(FDHandler * handler) argument
[all...]
H A DFDHandler.h56 FDHandler_enable(FDHandler * handler, FDHandler_func * func,
59 FDHandler_disable(FDHandler * handler);
62 FDHandler_fd(FDHandler * handler);
/macosx-10.10/ruby-106/ruby/ext/psych/lib/psych/
H A Dparser.rb4 # events on the handler that is passed to the constructor. The events can
36 # The handler on which events will be called
37 attr_accessor :handler
43 # Creates a new Psych::Parser instance with +handler+. YAML events will
44 # be called on +handler+. See Psych::Parser for more details.
46 def initialize handler = Handler.new
47 @handler = handler
/macosx-10.10/IOFWDVComponents-207.4.1/MacOS9Src/
H A DDebugMacros.h65 #define AssertionMessage(cond, file, line, handler) \
66 "\pAssertion \"" #cond "\" failed in " #file " at line " #line " goto " #handler
68 #define AssertionFailed(cond, file, line, handler) \
69 OXCART_DEBUGSTR( (StringPtr) AssertionMessage (cond, file, line, handler) );
71 #define AssertionMessageString(cond, file, line, handler) \
72 "\pAssertion \"" #cond "\" failed in " #file " at line " #line " goto " #handler " value -> "
74 #define AssertionFailedString(cond, file, line, handler, str) \
77 PStrCopy( mystr21, AssertionMessageString (cond, file, line, handler)); \
83 #define FailWithVal(cond, handler, num) \
87 AssertionFailedString(cond, __FILE__, __LINE__, handler, myst
[all...]
/macosx-10.10/expat-12/tests/
H A Dtest-6295922.py5 def handler(text): function
9 parser.CharacterDataHandler = handler
/macosx-10.10/smb-759.0/lib/librpc/
H A Dmemory.cpp35 std::new_handler handler; local
39 handler = std::set_new_handler(::abort);
40 std::set_new_handler(handler);
42 handler();
/macosx-10.10/WebCore-7600.1.25/bindings/js/
H A DJSUserMessageHandlersNamespaceCustom.cpp40 if (UserMessageHandler* handler = impl().handler(propertyNameToAtomicString(propertyName), globalObject()->world())) {
41 slot.setValue(this, ReadOnly | DontDelete | DontEnum, toJS(exec, globalObject(), handler));
/macosx-10.10/bind9-45.101/bind9/unit/atf-src/atf-run/
H A Dsignals.hpp41 typedef void (*handler)(const int); typedef in namespace:atf::atf_run
72 const handler m_handler;
77 signal_programmer(const int, const handler);
/macosx-10.10/pyobjc-45/2.5/pyobjc/pyobjc-framework-WebKit/Examples/PyDocURLProtocol/
H A DPyDocEvents.py10 print "handler called"
14 global handler
16 handler = PyDocEventHandler.alloc().init()
19 handler, 'handleEvent:withReplyEvent:',
/macosx-10.10/ruby-106/ruby/ext/psych/lib/psych/visitors/
H A Demitter.rb10 @handler = Psych::Emitter.new io
14 @handler = Psych::Emitter.new io, du
19 @handler.start_stream o.encoding
21 @handler.end_stream
25 @handler.start_document o.version, o.tag_directives, o.implicit
27 @handler.end_document o.implicit_end
31 @handler.scalar o.value, o.anchor, o.tag, o.plain, o.quoted, o.style
35 @handler.start_sequence o.anchor, o.tag, o.implicit, o.style
37 @handler.end_sequence
41 @handler
[all...]
/macosx-10.10/tcl-105/tcl_ext/xotcl/xotcl/library/xml/TclExpat-1.1/
H A Dxmlrole.c68 state->handler = prolog1;
71 state->handler = prolog1;
74 state->handler = prolog1;
77 state->handler = prolog1;
85 state->handler = doctype0;
88 state->handler = error;
113 state->handler = doctype0;
116 state->handler = error;
136 state->handler = error;
153 state->handler
[all...]
/macosx-10.10/WebCore-7600.1.25/page/
H A DWindowTimers.idl31 [Custom] long setTimeout(any handler, [Default=Undefined] optional long timeout);
33 [Custom] long setInterval(any handler, [Default=Undefined] optional long timeout);
H A DUserMessageHandlersNamespace.cpp47 UserMessageHandler* UserMessageHandlersNamespace::handler(const AtomicString& name, DOMWrapperWorld& world) function in class:WebCore::UserMessageHandlersNamespace
49 // First, check if we have a handler instance already.
50 for (auto& handler : m_messageHandlers) {
51 if (handler->name() == name && &handler->world() == &world)
52 return &handler.get();
55 // Second, attempt to create a handler instance from a descriptor.
/macosx-10.10/dcerpc-61/dcerpc/ncklib/
H A Drpcfork.h109 PRIVATE void rpc__atfork ( void *handler);
/macosx-10.10/CPANInternal-159.1/SOAP-Lite-1.11/examples/server/
H A DApache.pm23 sub handler { $server->handler(@_) } subroutine
/macosx-10.10/libstdcxx-104.1/src/
H A Dnew_handler.cc36 set_new_handler(new_handler handler) throw() argument
39 __cxxabiapple::__cxa_new_handler = handler;
/macosx-10.10/pyobjc-45/2.5/pyobjc/pyobjc-core/Lib/PyObjCTools/
H A DMachSignals.py9 message to the CFRunLoop. The handler then causes Python
21 Return the signal handler for signal ``signum``. Returns ``None`` when
22 there is no signal handler for the signal.
26 def signal(signum, handler):
28 Install a new signal handler for ``signum``. Returns the old signal
29 handler (``None`` when there is no previous handler.
32 _machsignals._signalmapping[signum] = handler
/macosx-10.10/pyobjc-45/2.6/pyobjc/pyobjc-core/Lib/PyObjCTools/
H A DMachSignals.py9 message to the CFRunLoop. The handler then causes Python
21 Return the signal handler for signal ``signum``. Returns ``None`` when
22 there is no signal handler for the signal.
26 def signal(signum, handler):
28 Install a new signal handler for ``signum``. Returns the old signal
29 handler (``None`` when there is no previous handler.
32 _machsignals._signalmapping[signum] = handler
/macosx-10.10/pyobjc-45/pyobjc/pyobjc-core-2.5.1/Lib/PyObjCTools/
H A DMachSignals.py9 message to the CFRunLoop. The handler then causes Python
21 Return the signal handler for signal ``signum``. Returns ``None`` when
22 there is no signal handler for the signal.
26 def signal(signum, handler):
28 Install a new signal handler for ``signum``. Returns the old signal
29 handler (``None`` when there is no previous handler.
32 _machsignals._signalmapping[signum] = handler
/macosx-10.10/xnu-2782.1.97/pexpert/i386/
H A Dpe_interrupt.c40 IOInterruptHandler handler; member in struct:i386_interrupt_handler
61 void *, vector->target, IOInterruptHandler, vector->handler,
65 vector->handler(vector->target, NULL, vector->nub, interrupt);
69 void *, vector->target, IOInterruptHandler, vector->handler,
77 IOInterruptHandler handler,
85 vector->handler = handler;
74 PE_install_interrupt_handler(void *nub, __unused int source, void *target, IOInterruptHandler handler, void *refCon) argument
/macosx-10.10/ruby-106/ruby/ext/win32ole/sample/
H A Dienavi2.rb35 ev.handler = IEHandler.new
37 while (ev.handler.loop)
40 ev.handler.put_urls
/macosx-10.10/expat-12/expat/amiga/include/inline4/
H A Dexpat.h39 #define XML_SetCharacterDataHandler(parser, handler) IExpat->XML_SetCharacterDataHandler(parser, handler)
40 #define XML_SetProcessingInstructionHandler(parser, handler) IExpat->XML_SetProcessingInstructionHandler(parser, handler)
41 #define XML_SetCommentHandler(parser, handler) IExpat->XML_SetCommentHandler(parser, handler)
45 #define XML_SetDefaultHandler(parser, handler) IExpat->XML_SetDefaultHandler(parser, handler)
46 #define XML_SetDefaultHandlerExpand(parser, handler) IExpat->XML_SetDefaultHandlerExpand(parser, handler)
[all...]
/macosx-10.10/BerkeleyDB-21/db/java/src/com/sleepycat/asm/
H A DHandler.java33 * Information about an exception handler block.
40 * Beginning of the exception handler's scope (inclusive).
45 * End of the exception handler's scope (exclusive).
50 * Beginning of the exception handler's code.
52 Label handler; field in class:Handler
55 * Internal name of the type of exceptions handled by this handler, or
62 * handled by this handler, or 0 to catch any exceptions.
67 * Next exception handler block info.
/macosx-10.10/JavaScriptCore-7600.1.17/jit/
H A DJITExceptions.cpp51 HandlerInfo* handler = vm->interpreter->unwind(callFrame, exceptionValue); // This may update callFrame. local
55 if (handler) {
56 catchPCForInterpreter = &callFrame->codeBlock()->instructions()[handler->target];
58 catchRoutine = handler->nativeCode.executableAddress();

Completed in 236 milliseconds

1234567891011>>