Searched refs:event (Results 226 - 250 of 1579) sorted by relevance

1234567891011>>

/macosx-10.10/bind9-45.101/bind9/lib/dns/
H A Dvalidator.c186 if (val->event->rdataset != NULL)
187 dns_rdataset_settrust(val->event->rdataset, dns_trust_answer);
188 if (val->event->sigrdataset != NULL)
189 dns_rdataset_settrust(val->event->sigrdataset,
194 marksecure(dns_validatorevent_t *event) { argument
195 dns_rdataset_settrust(event->rdataset, dns_trust_secure);
196 if (event->sigrdataset != NULL)
197 dns_rdataset_settrust(event->sigrdataset, dns_trust_secure);
204 if (val->event == NULL)
211 val->event
398 fetch_callback_validator(isc_task_t *task, isc_event_t *event) argument
477 dsfetched(isc_task_t *task, isc_event_t *event) argument
555 dsfetched2(isc_task_t *task, isc_event_t *event) argument
645 keyvalidated(isc_task_t *task, isc_event_t *event) argument
716 dsvalidated(isc_task_t *task, isc_event_t *event) argument
793 cnamevalidated(isc_task_t *task, isc_event_t *event) argument
1295 authvalidated(isc_task_t *task, isc_event_t *event) argument
1984 dns_validatorevent_t *event; local
2353 dns_validatorevent_t *event; local
3314 dlvvalidated(isc_task_t *task, isc_event_t *event) argument
3372 dlvfetched(isc_task_t *task, isc_event_t *event) argument
3977 isc_event_t *event; local
4004 validator_start(isc_task_t *task, isc_event_t *event) argument
4128 dns_validatorevent_t *event; local
4220 isc_event_t *event; local
[all...]
/macosx-10.10/Security-57031.1.35/Security/libsecurity_codesigning/CodeSigningHelper/
H A Dmain.c88 fetchData(xpc_connection_t peer, xpc_object_t event) argument
94 pid = (pid_t)xpc_dictionary_get_int64(event, "pid");
98 xpc_object_t reply = xpc_dictionary_create_reply(event);
157 static void CodeSigningHelper_peer_event_handler(xpc_connection_t peer, xpc_object_t event) argument
159 xpc_type_t type = xpc_get_type(event);
165 const char *cmd = xpc_dictionary_get_string(event, "command");
169 fetchData(peer, event);
178 xpc_connection_set_event_handler(peer, ^(xpc_object_t event) {
179 CodeSigningHelper_peer_event_handler(peer, event);
/macosx-10.10/Security-57031.1.35/securityd/src/
H A Dnotifications.cpp66 NotificationEvent event, const CssmData &data)
68 RefPointer<Notification> message = new Notification(domain, event, 0, data);
74 NotificationEvent event, uint32 sequence, const CssmData &data)
77 RefPointer<Notification> message = new Notification(domain, event, sequence, data);
91 if (listener->domain == kNotificationDomainAll || (message->domain == listener->domain && listener->wants(message->event)))
128 : domain(inDomain), event(inEvent), sequence(seq), data(Allocator::standard(), inData)
130 secdebug("notify", "%p notification created domain 0x%lx event %ld seq %ld",
131 this, domain, event, sequence);
136 secdebug("notify", "%p notification done domain 0x%lx event %ld seq %ld",
137 this, domain, event, sequenc
65 notify(NotificationDomain domain, NotificationEvent event, const CssmData &data) argument
73 notify(NotificationDomain domain, NotificationEvent event, uint32 sequence, const CssmData &data) argument
[all...]
H A Dnotifications.h71 // inject an event into the notification system
73 NotificationEvent event, const CssmData &data);
75 NotificationEvent event, uint32 sequence, const CssmData &data);
81 bool wants(NotificationEvent event) argument
82 { return (1 << event) & events; }
87 Notification(NotificationDomain domain, NotificationEvent event,
92 const NotificationEvent event; member in class:Listener::Notification
/macosx-10.10/WebCore-7600.1.25/html/
H A DTextFieldInputType.cpp102 // Grab this input element to keep reference even if JS event handler
124 // If the user is still editing this field, dispatch an input event rather than a change event.
125 // The change event will be dispatched when editing finishes.
147 void TextFieldInputType::handleKeydownEvent(KeyboardEvent* event) argument
152 if (!frame || !frame->editor().doTextFieldCommandFromEvent(&element(), event))
154 event->setDefaultHandled();
157 void TextFieldInputType::handleKeydownEventForSpinButton(KeyboardEvent* event) argument
161 const String& key = event->keyIdentifier();
168 event
171 forwardEvent(Event* event) argument
212 shouldSubmitImplicitly(Event* event) argument
379 handleBeforeTextInsertedEvent(BeforeTextInsertedEvent* event) argument
[all...]
/macosx-10.10/WebInspectorUI-7600.1.17/UserInterface/Views/
H A DProbeSetDetailsSection.js95 _addProbeButtonClicked: function(event)
97 function createProbeFromEnteredExpression(visiblePopover, event)
99 if (event.keyCode !== 13)
101 var expression = event.target.value;
112 textBox.addEventListener("click", function (event) {event.target.select()});
116 var target = WebInspector.Rect.rectFromClientRect(event.target.getBoundingClientRect());
121 _removeButtonClicked: function(event)
126 _clearSamplesButtonClicked: function(event)
H A DBreakpointTreeElement.js106 oncontextmenu: function(event)
108 var contextMenu = new WebInspector.ContextMenu(event);
198 _probeSetAdded: function(event)
200 var probeSet = event.data.probeSet;
205 _probeSetRemoved: function(event)
207 var probeSet = event.data.probeSet;
212 _samplesCleared: function(event)
216 var oldTable = event.data.oldTable;
239 _breakpointLocationDidChange: function(event)
241 console.assert(event
[all...]
H A DTimelineOverview.js306 _handleScrollEvent: function(event)
324 _handleWheelEvent: function(event)
327 if (event.__cloned)
332 if (Math.abs(event.deltaX) >= Math.abs(event.deltaY) * 0.5) {
333 // Clone the event to dispatch it on the scroll container. Mark it as cloned so we don't get into a loop.
334 var newWheelEvent = new event.constructor(event.type, event);
342 var mouseOffset = event
[all...]
H A DQuickConsole.js47 // Our keyboard shortcut above will respect the default prevented and ignore the event
50 // would be for CodeMirror's event handler to pass if it doesn't do anything.
159 _framePageExecutionContextsChanged: function(event)
161 var frame = event.target;
174 _frameExecutionContextsCleared: function(event)
176 var frame = event.target;
179 if (event.data.committingProvisionalLoad && !this._restoreSelectedExecutionContextForFrame) {
191 _frameAdded: function(event)
193 var frame = event.data.frame;
197 _frameRemoved: function(event)
[all...]
H A DSection.css58 .section .header .title, .event-bar .header .title {
69 .section .header label, .event-bar .header label {
73 .section.expanded .header label, .event-bar.expanded .header label {
77 .section .header .subtitle, .event-bar .header .subtitle {
89 .section .properties, .event-bar .event-properties {
93 .section.expanded .properties, .event-bar.expanded .event-properties {
173 .section .properties .name, .event-properties .name {
185 .section .properties .number, .event
[all...]
/macosx-10.10/WebKit2-7600.1.25/UIProcess/efl/
H A DWebViewEfl.cpp132 void WebViewEfl::sendMouseEvent(const Evas_Event_Mouse_Down* event) argument
134 ASSERT(event);
135 m_page->handleMouseEvent(NativeWebMouseEvent(event, transformFromScene(), m_userViewportTransform.toAffineTransform()));
138 void WebViewEfl::sendMouseEvent(const Evas_Event_Mouse_Up* event) argument
140 ASSERT(event);
141 m_page->handleMouseEvent(NativeWebMouseEvent(event, transformFromScene(), m_userViewportTransform.toAffineTransform()));
144 void WebViewEfl::sendMouseEvent(const Evas_Event_Mouse_Move* event) argument
146 ASSERT(event);
147 m_page->handleMouseEvent(NativeWebMouseEvent(event, transformFromScene(), m_userViewportTransform.toAffineTransform()));
/macosx-10.10/WebKit2-7600.1.25/WebProcess/Plugins/PDF/
H A DPDFLayerControllerDetails.h80 - (void)mouseDown:(NSEvent *)event;
81 - (void)rightMouseDown:(NSEvent *)event;
82 - (void)mouseMoved:(NSEvent *)event;
83 - (void)mouseUp:(NSEvent *)event;
84 - (void)mouseDragged:(NSEvent *)event;
85 - (void)mouseEntered:(NSEvent *)event;
86 - (void)mouseExited:(NSEvent *)event;
88 - (NSMenu *)menuForEvent:(NSEvent *)event;
107 - (bool)keyDown:(NSEvent *)event;
/macosx-10.10/ruby-106/ruby/ext/psych/
H A Dpsych_parser.c233 yaml_event_t event; local
279 if(!yaml_parser_parse(parser, &event)) {
289 switch(event.type) {
295 args[1] = INT2NUM((long)event.data.stream_start.encoding);
305 VALUE version = event.data.document_start.version_directive ?
308 INT2NUM((long)event.data.document_start.version_directive->major),
309 INT2NUM((long)event.data.document_start.version_directive->minor)
312 if(event.data.document_start.tag_directives.start) {
314 event.data.document_start.tag_directives.start;
316 event
[all...]
/macosx-10.10/AppleUSBIrDA-145.2.4/IrDA/Stack/
H A DIrLMP.cpp49 {kUnexpectedEvent, "irlmp: unexpected event"},
105 if (fPendingRequests) { // cleanup pending event list
176 void TIrLMP::NextState(ULong event) argument
180 HandleReadyStateEvent(event);
184 HandleDiscoverStateEvent(event);
188 HandleResolveAddressStateEvent(event);
205 void TIrLMP::HandleReadyStateEvent(ULong event) argument
207 switch (event) {
273 HandleDiscoverStateEvent(event); // lots of discovers while connected and
277 XTRACE(kUnexpectedEvent, fState, event);
288 HandleDiscoverStateEvent(ULong event) argument
372 HandleResolveAddressStateEvent(ULong event) argument
[all...]
/macosx-10.10/Security-57031.1.35/Security/sec/ipc/
H A Dserver.c247 static void securityd_xpc_dictionary_handler(const xpc_connection_t connection, xpc_object_t event) { argument
248 xpc_type_t type = xpc_get_type(event);
259 replyMessage = xpc_dictionary_create_reply(event);
261 uint64_t operation = xpc_dictionary_get_uint64(event, kSecXPCKeyOperation);
293 CFDictionaryRef query = SecXPCDictionaryCopyDictionary(event, kSecXPCKeyQuery, &error);
306 CFDictionaryRef query = SecXPCDictionaryCopyDictionary(event, kSecXPCKeyQuery, &error);
319 CFDictionaryRef query = SecXPCDictionaryCopyDictionary(event, kSecXPCKeyQuery, &error);
321 CFDictionaryRef attributesToUpdate = SecXPCDictionaryCopyDictionary(event, kSecXPCKeyAttributesToUpdate, &error);
333 CFDictionaryRef query = SecXPCDictionaryCopyDictionary(event, kSecXPCKeyQuery, &error);
343 SecTrustStoreRef ts = SecXPCDictionaryGetTrustStore(event, kSecXPCKeyDomai
[all...]
/macosx-10.10/WebCore-7600.1.25/platform/gtk/
H A DGtkPopupMenu.cpp44 m_keyPressHandlerID = g_signal_connect(m_popup.get(), "key-press-event", G_CALLBACK(GtkPopupMenu::keyPressEventCallback), this);
75 void GtkPopupMenu::popUp(const IntSize& menuSize, const IntPoint& menuPosition, int itemCount, int selectedItem, const GdkEvent* event) argument
113 guint button = event && event->type == GDK_BUTTON_PRESS ? event->button.button : 1;
114 guint32 activateTime = event ? gdk_event_get_time(event) : GDK_CURRENT_TIME;
118 gtk_menu_popup_for_device(GTK_MENU(m_popup.get()), event ? gdk_event_get_device(event) : 0, 0, 0,
152 bool GtkPopupMenu::typeAheadFind(GdkEventKey* event) argument
229 keyPressEventCallback(GtkWidget*, GdkEventKey* event, GtkPopupMenu* popupMenu) argument
[all...]
H A DPlatformKeyboardEventGtk.cpp553 static PlatformEvent::Type eventTypeForGdkKeyEvent(GdkEventKey* event) argument
555 return event->type == GDK_KEY_RELEASE ? PlatformEvent::KeyUp : PlatformEvent::KeyDown;
558 static PlatformEvent::Modifiers modifiersForGdkKeyEvent(GdkEventKey* event) argument
561 if (event->state & GDK_SHIFT_MASK || event->keyval == GDK_3270_BackTab)
563 if (event->state & GDK_CONTROL_MASK)
565 if (event->state & GDK_MOD1_MASK)
567 if (event->state & GDK_META_MASK)
572 // Keep this in sync with the other platform event constructors
573 PlatformKeyboardEvent::PlatformKeyboardEvent(GdkEventKey* event, cons argument
[all...]
/macosx-10.10/WebKit2-7600.1.25/UIProcess/ios/
H A DRemoteLayerTreeHostIOS.mm42 - (UIView *)_findDescendantViewAtPoint:(CGPoint)point withEvent:(UIEvent *)event;
50 - (UIView *)_recursiveFindDescendantScrollViewAtPoint:(CGPoint)point withEvent:(UIEvent *)event
52 if (self.clipsToBounds && ![self pointInside:point withEvent:event])
59 if ([view pointInside:subviewPoint withEvent:event] && [view isKindOfClass:[UIScrollView class]])
65 if (UIView *hitView = [view _recursiveFindDescendantScrollViewAtPoint:subviewPoint withEvent:event])
72 - (UIView *)_findDescendantViewAtPoint:(CGPoint)point withEvent:(UIEvent *)event
74 return [self _recursiveFindDescendantScrollViewAtPoint:point withEvent:event];
83 - (UIView *)hitTest:(CGPoint)point withEvent:(UIEvent *)event
85 return [self _findDescendantViewAtPoint:point withEvent:event];
/macosx-10.10/ncurses-44/ncurses/menu/
H A Dm_driver.c447 MEVENT event; local
450 getmouse(&event);
451 if ((event.bstate & (BUTTON1_CLICKED |
454 && wenclose(uwin, event.y, event.x))
459 int ry = event.y, rx = event.x; /* screen coordinates */
468 if (event.bstate & BUTTON1_CLICKED)
470 else if (event.bstate & BUTTON1_DOUBLE_CLICKED)
472 else if (event
[all...]
/macosx-10.10/WebInspectorUI-7600.1.17/UserInterface/Models/
H A DResourceCollection.js127 _resourceURLDidChange: function(event)
129 var resource = event.target;
134 var oldURL = event.data.oldURL;
143 _resourceTypeDidChange: function(event)
145 var resource = event.target;
150 var oldType = event.data.oldType;
/macosx-10.10/tcl-105/tk/tk/macosx/
H A DtkMacOSXHLEvents.c4 * Implements high level event support for the Macintosh. Currently, the
5 * only event that really does anything is the Quit event.
35 static OSErr QuitHandler(const AppleEvent *event,
37 static OSErr OappHandler(const AppleEvent *event,
39 static OSErr RappHandler(const AppleEvent *event,
41 static OSErr OdocHandler(const AppleEvent *event,
43 static OSErr PrintHandler(const AppleEvent *event,
45 static OSErr ScriptHandler(const AppleEvent *event,
47 static OSErr PrefsHandler(const AppleEvent *event,
174 QuitHandler( const AppleEvent *event, AppleEvent *reply, SRefCon handlerRefcon) argument
217 OappHandler( const AppleEvent *event, AppleEvent *reply, SRefCon handlerRefcon) argument
252 RappHandler( const AppleEvent *event, AppleEvent *reply, SRefCon handlerRefcon) argument
290 PrefsHandler( const AppleEvent *event, AppleEvent *reply, SRefCon handlerRefcon) argument
325 OdocHandler( const AppleEvent *event, AppleEvent *reply, SRefCon handlerRefcon) argument
416 PrintHandler( const AppleEvent * event, AppleEvent * reply, SRefCon handlerRefcon) argument
502 ScriptHandler( const AppleEvent *event, AppleEvent *reply, SRefCon handlerRefcon) argument
[all...]
/macosx-10.10/tcl-105/tk84/tk/macosx/
H A DtkMacOSXHLEvents.c4 * Implements high level event support for the Macintosh. Currently,
5 * the only event that really does anything is the Quit event.
35 static OSErr QuitHandler(const AppleEvent * event, AppleEvent * reply,
37 static OSErr OappHandler(const AppleEvent * event, AppleEvent * reply,
39 static OSErr RappHandler(const AppleEvent * event, AppleEvent * reply,
41 static OSErr OdocHandler(const AppleEvent * event, AppleEvent * reply,
43 static OSErr PrintHandler(const AppleEvent * event, AppleEvent * reply,
45 static OSErr ScriptHandler(const AppleEvent * event, AppleEvent * reply,
47 static OSErr PrefsHandler(const AppleEvent * event, AppleEven
157 QuitHandler( const AppleEvent * event, AppleEvent * reply, long handlerRefcon) argument
199 OappHandler( const AppleEvent * event, AppleEvent * reply, long handlerRefcon) argument
231 RappHandler( const AppleEvent * event, AppleEvent * reply, long handlerRefcon) argument
266 PrefsHandler( const AppleEvent * event, AppleEvent * reply, long handlerRefcon) argument
298 OdocHandler( const AppleEvent * event, AppleEvent * reply, long handlerRefcon) argument
387 PrintHandler( const AppleEvent * event, AppleEvent * reply, long handlerRefcon) argument
476 ScriptHandler( const AppleEvent * event, AppleEvent * reply, long handlerRefcon) argument
[all...]
/macosx-10.10/xnu-2782.1.97/iokit/Kernel/
H A DIOEventSource.cpp115 int IOEventSource::sleepGate(void *event, UInt32 type) argument
119 res = workLoop->sleepGate(event, type);
124 int IOEventSource::sleepGate(void *event, AbsoluteTime deadline, UInt32 type) argument
128 res = workLoop->sleepGate(event, deadline, type);
133 void IOEventSource::wakeupGate(void *event, bool oneThread) { workLoop->wakeupGate(event, oneThread); } argument
/macosx-10.10/BerkeleyDB-21/db/mutex/
H A Dmut_win32.c23 * Common code to get an event handle. This is executed whenever a mutex
28 * We pass security attributes so that the created event is accessible by all
64 __db_syserr(env, ret, "Win32 create event failed");
110 HANDLE event; local
130 event = NULL;
180 if (event == NULL)
185 if (event != NULL) {
186 CloseHandle(event);
216 if (event == NULL) {
223 if ((ret = get_handle(env, mutexp, &event)) !
255 HANDLE event; local
[all...]
/macosx-10.10/IOHIDFamily-606.1.7/IOHIDFamily/
H A DIOHIDEventSystem.cpp292 IOHIDEvent * event = &(eventArgsRef->events[i]); local
294 IOLog("IOHIDEventSystem::handleHIDEventGated: type=%d", event->type);
295 switch ( event->type )
298 IOLog(" usagePage=%x usage=%x value=%d repeat=%d", event->data.keyboard.usagePage, event->data.keyboard.usage, event->data.keyboard.value, event->data.keyboard.repeat);
302 IOLog(" buttons=%x dx=%d dy=%d", event->data.mouse.buttons, event->data.mouse.dx, event
[all...]

Completed in 255 milliseconds

1234567891011>>