Searched refs:ev (Results 1 - 25 of 257) sorted by relevance

1234567891011

/macosx-10.10/llvmCore-3425.0.34/lib/Support/Unix/
H A Dsystem_error.inc23 _system_error_category::message(int ev) const {
24 return _do_message::message(ev);
28 _system_error_category::default_error_condition(int ev) const {
30 if (ev > ELAST)
31 return error_condition(ev, system_category());
33 return error_condition(ev, generic_category());
/macosx-10.10/screen-22/screen/
H A Dsched.c45 evenq(ev)
46 struct event *ev;
49 debug3("New event fd %d type %d queued %d\n", ev->fd, ev->type, ev->queued);
50 if (ev->queued)
53 if (ev->type == EV_TIMEOUT)
59 if (ev->pri > evp->pri)
61 ev->next = evp;
62 *evpp = ev;
93 struct event *ev, *min; local
116 struct event *ev; local
[all...]
/macosx-10.10/WebCore-7600.1.25/platform/efl/
H A DPlatformWheelEventEfl.cpp46 PlatformWheelEvent::PlatformWheelEvent(const Evas_Event_Mouse_Wheel* ev) argument
47 : PlatformEvent(PlatformEvent::Wheel, evas_key_modifier_is_set(ev->modifiers, "Shift"), evas_key_modifier_is_set(ev->modifiers, "Control"), evas_key_modifier_is_set(ev->modifiers, "Alt"), evas_key_modifier_is_set(ev->modifiers, "Meta"), currentTime())
48 , m_position(IntPoint(ev->canvas.x, ev->canvas.y))
49 , m_globalPosition(IntPoint(ev->canvas.x, ev->canvas.y))
55 if (ev
[all...]
/macosx-10.10/llvmCore-3425.0.34/lib/Object/
H A DError.cpp24 virtual std::string message(int ev) const;
25 virtual error_condition default_error_condition(int ev) const;
33 std::string _object_error_category::message(int ev) const {
34 switch (ev) {
48 error_condition _object_error_category::default_error_condition(int ev) const {
49 if (ev == object_error::success)
/macosx-10.10/ruby-106/ruby/test/win32ole/
H A Derr_in_callback.rb4 ev = WIN32OLE_EVENT.new(db)
5 ev.on_event('WillConnect') {|*args|
H A Dtest_win32ole_event.rb55 ev = WIN32OLE_EVENT.new("A")
60 ev = WIN32OLE_EVENT.new(@db)
61 ev.on_event {|*args| default_handler(*args)}
76 ev = WIN32OLE_EVENT.new(@db, 'ConnectionEvents')
77 ev.on_event {|*args| default_handler(*args)}
84 ev = WIN32OLE_EVENT.new(@db)
85 ev.on_event(:WillConnect) {|*args|
94 ev = WIN32OLE_EVENT.new(@db, 'ConnectionEvents')
95 ev.on_event('WillConnect') {|*args| handler1}
96 ev
[all...]
/macosx-10.10/Heimdal-398.1.2/lib/libedit/src/
H A Dhistory.c81 #define HNEXT(h, ev) (*(h)->h_next)((h)->h_ref, ev)
82 #define HFIRST(h, ev) (*(h)->h_first)((h)->h_ref, ev)
83 #define HPREV(h, ev) (*(h)->h_prev)((h)->h_ref, ev)
84 #define HLAST(h, ev) (*(h)->h_last)((h)->h_ref, ev)
85 #define HCURR(h, ev) (*(h)->h_curr)((h)->h_ref, ev)
213 history_def_first(ptr_t p, TYPE(HistEvent) *ev) argument
233 history_def_last(ptr_t p, TYPE(HistEvent) *ev) argument
253 history_def_next(ptr_t p, TYPE(HistEvent) *ev) argument
278 history_def_prev(ptr_t p, TYPE(HistEvent) *ev) argument
304 history_def_curr(ptr_t p, TYPE(HistEvent) *ev) argument
325 history_def_set(ptr_t p, TYPE(HistEvent) *ev, const int n) argument
352 history_set_nth(ptr_t p, TYPE(HistEvent) *ev, int n) argument
376 history_def_add(ptr_t p, TYPE(HistEvent) *ev, const Char *str) argument
402 history_deldata_nth(history_t *h, TYPE(HistEvent) *ev, int num, void **data) argument
465 history_def_insert(history_t *h, TYPE(HistEvent) *ev, const Char *str) argument
495 history_def_enter(ptr_t p, TYPE(HistEvent) *ev, const Char *str) argument
547 history_def_clear(ptr_t p, TYPE(HistEvent) *ev) argument
[all...]
/macosx-10.10/libedit-40/src/
H A Dhistory.c81 #define HNEXT(h, ev) (*(h)->h_next)((h)->h_ref, ev)
82 #define HFIRST(h, ev) (*(h)->h_first)((h)->h_ref, ev)
83 #define HPREV(h, ev) (*(h)->h_prev)((h)->h_ref, ev)
84 #define HLAST(h, ev) (*(h)->h_last)((h)->h_ref, ev)
85 #define HCURR(h, ev) (*(h)->h_curr)((h)->h_ref, ev)
213 history_def_first(void *p, TYPE(HistEvent) *ev) argument
233 history_def_last(void *p, TYPE(HistEvent) *ev) argument
253 history_def_next(void *p, TYPE(HistEvent) *ev) argument
278 history_def_prev(void *p, TYPE(HistEvent) *ev) argument
304 history_def_curr(void *p, TYPE(HistEvent) *ev) argument
325 history_def_set(void *p, TYPE(HistEvent) *ev, const int n) argument
352 history_set_nth(void *p, TYPE(HistEvent) *ev, int n) argument
376 history_def_add(void *p, TYPE(HistEvent) *ev, const Char *str) argument
402 history_deldata_nth(history_t *h, TYPE(HistEvent) *ev, int num, void **data) argument
465 history_def_insert(history_t *h, TYPE(HistEvent) *ev, const Char *str) argument
497 history_def_enter(void *p, TYPE(HistEvent) *ev, const Char *str) argument
549 history_def_clear(void *p, TYPE(HistEvent) *ev) argument
[all...]
/macosx-10.10/llvmCore-3425.0.34/lib/Support/
H A Dsystem_error.cpp30 error_category::default_error_condition(int ev) const {
31 return error_condition(ev, *this);
45 _do_message::message(int ev) const {
46 return std::string(sys::StrError(ev));
52 virtual std::string message(int ev) const LLVM_OVERRIDE;
61 _generic_error_category::message(int ev) const {
63 if (ev > ELAST)
66 return _do_message::message(ev);
78 virtual std::string message(int ev) const LLVM_OVERRIDE;
79 virtual error_condition default_error_condition(int ev) cons
[all...]
/macosx-10.10/ruby-106/ruby/ext/win32ole/sample/
H A Dienavi.rb25 ev = WIN32OLE_EVENT.new(ie, 'DWebBrowserEvents')
27 ev.on_event {|*args| default_handler(*args)}
28 ev.on_event("NavigateComplete") {|url| navigate(url)}
29 ev.on_event("Quit") {|*args| stop_msg_loop}
H A Dienavi2.rb34 ev = WIN32OLE_EVENT.new(ie)
35 ev.handler = IEHandler.new
37 while (ev.handler.loop)
40 ev.handler.put_urls
/macosx-10.10/lukemftp-14/tnftp/libedit/
H A Dhistory.c70 #define HNEXT(h, ev) (*(h)->h_next)((h)->h_ref, ev)
71 #define HFIRST(h, ev) (*(h)->h_first)((h)->h_ref, ev)
72 #define HPREV(h, ev) (*(h)->h_prev)((h)->h_ref, ev)
73 #define HLAST(h, ev) (*(h)->h_last)((h)->h_ref, ev)
74 #define HCURR(h, ev) (*(h)->h_curr)((h)->h_ref, ev)
111 HistEvent ev; /* What we return */ member in struct:hentry_t
195 history_def_first(ptr_t p, HistEvent *ev) argument
215 history_def_last(ptr_t p, HistEvent *ev) argument
235 history_def_next(ptr_t p, HistEvent *ev) argument
260 history_def_prev(ptr_t p, HistEvent *ev) argument
286 history_def_curr(ptr_t p, HistEvent *ev) argument
307 history_def_set(ptr_t p, HistEvent *ev, const int n) argument
333 history_def_add(ptr_t p, HistEvent *ev, const char *str) argument
380 history_def_insert(history_t *h, HistEvent *ev, const char *str) argument
409 history_def_enter(ptr_t p, HistEvent *ev, const char *str) argument
461 history_def_clear(ptr_t p, HistEvent *ev) argument
482 HistEvent ev; local
512 HistEvent ev; local
524 history_setsize(History *h, HistEvent *ev, int num) argument
544 history_getsize(History *h, HistEvent *ev) argument
563 history_setunique(History *h, HistEvent *ev, int uni) argument
579 history_getunique(History *h, HistEvent *ev) argument
596 HistEvent ev; local
645 HistEvent ev; local
699 HistEvent ev; local
743 history_prev_event(History *h, HistEvent *ev, int num) argument
760 history_next_event(History *h, HistEvent *ev, int num) argument
777 history_prev_string(History *h, HistEvent *ev, const char *str) argument
795 history_next_string(History *h, HistEvent *ev, const char *str) argument
813 history(History *h, HistEvent *ev, int fun, ...) argument
[all...]
/macosx-10.10/ksh-23/ksh/src/lib/libast/cdt/
H A Ddtclose.c35 int ev, type; local
43 ev = (*disc->eventf)(dt, DT_CLOSE, (Void_t*)1, disc);
44 else ev = 0;
45 if(ev < 0) /* cannot close */
54 if(ev == 0 ) /* release all allocated data */
/macosx-10.10/lsof-53/lsof/lib/
H A Dckkv.c52 ckkv(d, er, ev, ea)
55 char *ev; /* expected version; NULL, no test */
78 if (ev && strcmp(ev, u.version)) {
81 Pn, d, ev, u.version);
/macosx-10.10/IOKitUser-1050.1.21/hidsystem.subproj/
H A DHIDParamTest.c36 mach_port_t ev, service, iter; local
51 &ev)
57 return( ev );
61 void TestParams( io_connect_t ev )
73 kr = IOHIDSetMouseLocation( ev, 200, 200 )
85 kr = IOHIDPostEvent ( ev, NX_KEYDOWN, loc, &event,
89 kr = IOHIDPostEvent ( ev, NX_KEYUP, loc, &event,
/macosx-10.10/configd-699.1.5/Plugins/KernelEventMonitor/
H A Deventmon.c274 copy_if_name(const struct net_event_data * ev, char * ifr_name, int ifr_len) argument
276 snprintf(ifr_name, ifr_len, "%s%d", ev->if_name, ev->if_unit);
301 struct kev_in_data * ev; local
303 ev = (struct kev_in_data *)event_data;
304 if (dataLen < sizeof(*ev)) {
308 copy_if_name(&ev->link_data, ifr_name, sizeof(ifr_name));
313 struct kev_in_collision * ev; local
315 ev = (struct kev_in_collision *)event_data;
316 if ((dataLen < sizeof(*ev))
330 struct kev_in_portinuse * ev; local
341 const struct kev_in_arpfailure * ev; local
353 const struct kev_in_arpalive * ev; local
371 struct kev_in6_data * ev; local
397 struct net_event_data * ev; local
[all...]
/macosx-10.10/Security-57031.1.35/Security/include/security_utilities/
H A Dtqueue.h70 void putBefore(Event *ev) argument
71 { back = ev->back; fwd = ev; ev->back = back->fwd = this; mScheduled = true; }
100 Event *ev = first.fwd; local
107 ev = event->back;
112 for (; ev != &first; ev = ev->fwd) {
113 if (ev
[all...]
/macosx-10.10/Security-57031.1.35/Security/libsecurity_utilities/lib/
H A Dtqueue.h70 void putBefore(Event *ev) argument
71 { back = ev->back; fwd = ev; ev->back = back->fwd = this; mScheduled = true; }
100 Event *ev = first.fwd; local
107 ev = event->back;
112 for (; ev != &first; ev = ev->fwd) {
113 if (ev
[all...]
/macosx-10.10/OpenSSH-189/openssh/openbsd-compat/
H A Dstrtonum.c43 } ev[4] = { local
50 ev[0].err = errno;
64 *errstrp = ev[error].errstr;
65 errno = ev[error].err;
/macosx-10.10/dtrace-147/test/tst/common/proc/
H A Dtst.sigwait.c39 struct sigevent ev; local
45 ev.sigev_notify = SIGEV_SIGNAL;
46 ev.sigev_signo = SIGUSR1;
48 if (timer_create(CLOCK_REALTIME, &ev, &tid) == -1) {
/macosx-10.10/xnu-2782.1.97/bsd/kern/
H A Dkern_ecc.c44 struct ecc_event ev; local
51 if (KERN_SUCCESS != ecc_log_get_next_event(&ev)) {
58 retval = sysctl_io_opaque(req, &ev, sizeof(ev), &changed);
/macosx-10.10/xnu-2782.1.97/osfmk/kern/
H A Decc.h45 extern kern_return_t ecc_log_record_event(const struct ecc_event *ev);
51 extern kern_return_t ecc_log_get_next_event(struct ecc_event *ev);
H A Dkern_ecc.c75 ecc_log_record_event(const struct ecc_event *ev) argument
79 if (ev->count > ECC_EVENT_INFO_DATA_ENTRIES) {
80 panic("Count of %u on ecc event is too large.", (unsigned)ev->count);
94 bcopy(ev, &ecc_data[ecc_data_next_write], sizeof(*ev));
107 ecc_log_get_next_event(struct ecc_event *ev) argument
122 bcopy(&ecc_data[ecc_data_next_read], ev, sizeof(*ev));
/macosx-10.10/ncurses-44/ncurses/ncurses/tty/
H A Dlib_twait.c114 _nc_event *ev = evl->events[n]; local
116 if (ev->type == _NC_EVENT_TIMEOUT_MSEC) {
117 event_delay = ev->data.timeout_msec;
222 _nc_event *ev = evl->events[n]; local
224 if (ev->type == _NC_EVENT_FILE
225 && (ev->data.fev.flags & _NC_EVENT_FILE_READABLE)) {
226 fds[count].fd = ev->data.fev.fd;
244 _nc_event *ev = evl->events[n]; local
246 if (ev->type == _NC_EVENT_FILE
247 && (ev
328 _nc_event *ev = evl->events[n]; local
352 _nc_event *ev = evl->events[n]; local
379 _nc_event *ev = evl->events[n]; local
[all...]
/macosx-10.10/ksh-23/ksh/src/lib/libast/sfio/
H A Dsfexcept.c38 reg int ev, local, lock; local
58 ev = (*(disc->exceptf))(f,type,&io,disc);
65 SFMTXRETURN(f, ev);
66 if(ev < 0)
68 if(ev > 0)
122 if((ev = sfclose(pf)) < 0) /* can't close, restack */
128 ev = ev < 0 ? SF_EDONE : SF_ESTACK;
130 else ev = SF_EDONE;
132 SFMTXRETURN(f, ev);
[all...]

Completed in 242 milliseconds

1234567891011