Searched refs:gate (Results 1 - 21 of 21) sorted by relevance

/macosx-10.10/IOHIDFamily-606.1.7/IOHIDSystem/
H A DIOHIDSecurePromptClient.cpp115 IOCommandGate *gate; // The command gate used to serialize data coming from all member in struct:IOHIDSecurePromptClient_ExpansionData
186 if (!_reserved->gate) {
190 _reserved->gate = IOCommandGate::commandGate(this);
191 require(_reserved->gate, start_error);
193 require(kIOReturnSuccess == loop->addEventSource(_reserved->gate), start_error);
209 if (_reserved->gate) {
210 _reserved->gate->release();
211 _reserved->gate = NULL;
289 return _reserved->gate
[all...]
/macosx-10.10/PowerManagement-494.1.2/AppleSmartBatteryManager/
H A DAppleSmartBatteryManager.cpp56 IOCommandGate * gate; local
93 // Command gate for SmartBatteryManager
100 // Command gate for SmartBattery
101 gate = IOCommandGate::commandGate(fBattery);
102 if (!gate) {
105 wl->addEventSource(gate);
106 fBatteryGate = gate; // enable messages
/macosx-10.10/xnu-2782.1.97/osfmk/i386/
H A Dmp_desc.c285 * Fake gate format:
291 * Real gate format:
304 if ((desc[7] & 0x14) == 0x04) { /* gate */
347 struct real_gate64 gate; member in union:__anon15302
367 real.gate.offset_low16 = (uint16_t)(fakep->offset64 & 0xFFFF);
368 real.gate.selector16 = fakep->lim_or_seg & 0xFFFF;
369 real.gate.IST = fakep->size_or_IST & 0x7;
370 real.gate.access8 = fakep->access;
371 real.gate.offset_high16 = (uint16_t)((fakep->offset64>>16) & 0xFFFF);
372 real.gate
[all...]
/macosx-10.10/xnu-2782.1.97/bsd/netinet/
H A Din_arp.c672 struct sockaddr *gate = rt->rt_gateway; local
703 gate = rt->rt_gateway;
704 SDL(gate)->sdl_type = rt->rt_ifp->if_type;
705 SDL(gate)->sdl_index = rt->rt_ifp->if_index;
720 SDL(gate), rt_key(rt), NULL, rt_key(rt), 0);
726 if (gate->sa_family != AF_LINK ||
727 gate->sa_len < sizeof (null_sdl)) {
733 sizeof (buf)), gate->sa_family, gate->sa_len,
737 SDL(gate)
[all...]
/macosx-10.10/Security-57031.1.35/Security/libsecurity_transform/lib/
H A DCoreFoundationBasics.cpp56 static dispatch_once_t gate = 0; local
58 dispatch_once(&gate,
/macosx-10.10/emacs-93/emacs/lisp/emacs-lisp/
H A Dcl-specs.el103 ((&rest (gate place &optional form))
295 (gate
465 (&or (loop-var . [&or nil loop-var]) [gate symbolp]))
H A Dedebug.el1086 (defvar edebug-gate nil) ;; whether no-match forces an error.
1111 edebug-gate
1489 (edebug-gate t)
1540 ;; Throw a no-match, or signal an error immediately if gate is active.
1545 (if (and edebug-gate (not edebug-&optional))
1560 (edebug-gate edebug-gate) ;; locally bound to limit effect
1644 (gate . edebug-match-gate)
1697 (edebug-gate ni
[all...]
/macosx-10.10/xnu-2782.1.97/bsd/netinet6/
H A Dnd6_rtr.c741 struct sockaddr_in6 def, mask, gate; local
771 Bzero(&gate, sizeof (gate));
773 def.sin6_len = mask.sin6_len = gate.sin6_len
775 def.sin6_family = mask.sin6_family = gate.sin6_family = AF_INET6;
776 gate.sin6_addr = new->rtaddr;
782 (struct sockaddr *)&gate, (struct sockaddr *)&mask,
798 ip6_sprintf(&gate.sin6_addr), if_name(new->ifp),
839 struct sockaddr_in6 def, mask, gate; local
862 Bzero(&gate, sizeo
4246 struct in6_addr *gate = (struct in6_addr *)arg; local
[all...]
H A Dnd6.c2018 struct sockaddr *gate = rt->rt_gateway; local
2114 gate = rt->rt_gateway;
2115 SDL(gate)->sdl_type = ifp->if_type;
2116 SDL(gate)->sdl_index = ifp->if_index;
2155 if (gate->sa_family != AF_LINK ||
2156 gate->sa_len < sizeof (null_sdl)) {
2164 sizeof (buf)), gate->sa_family,
2165 gate->sa_len, if_name(ifp));
2169 SDL(gate)->sdl_type = ifp->if_type;
2170 SDL(gate)
[all...]
/macosx-10.10/vim-55/runtime/syntax/
H A Ddtrace.vim10 " http://src.opensolaris.org/source/xref/onnv/onnv-gate/usr/src/lib/libdtrace/common/dt_lex.l
11 " http://src.opensolaris.org/source/xref/onnv/onnv-gate/usr/src/lib/libdtrace/common/dt_grammar.y
H A Dsdl.vim26 syn keyword sdlStatement synonym dcl signal gate timer signallist signalset
/macosx-10.10/tcl-105/tcl_ext/expect/expect/
H A Dexpect.c84 Tcl_Obj *gate; /* For PAT_RE, a gate-keeper glob pattern member in struct:ecase
188 if (ec->gate) { Tcl_DecrRefCount(ec->gate); }
368 ec->gate = NULL;
486 /* Derive a gate keeper glob pattern which reduces the amount
499 ec.gate = g;
640 if (ec.gate) {
641 Tcl_IncrRefCount(ec.gate);
855 if (e->gate) {
[all...]
/macosx-10.10/xnu-2782.1.97/bsd/net/
H A Droute.c2348 rt_setgate(struct rtentry *rt, struct sockaddr *dst, struct sockaddr *gate) argument
2350 int dlen = SA_SIZE(dst->sa_len), glen = SA_SIZE(gate->sa_len);
2374 if ((dst->sa_len == gate->sa_len) &&
2379 (void) sa_copy(gate, &gate_ss, NULL);
2383 loop = (dst->sa_len == gate->sa_len &&
2384 equal(dst, gate));
2445 * check for cloning loop avoidance (dst == gate).
2447 gwrt = rtalloc1_scoped_locked(gate, 1, RTF_PRCLONING, ifscope);
2567 Bcopy(gate, rt->rt_gateway, gate
[all...]
/macosx-10.10/network_cmds-457/route.tproj/
H A Droute.c1359 struct sockaddr *dst = NULL, *gate = NULL, *mask = NULL; local
1390 gate = sa;
1414 if (gate && rtm->rtm_flags & RTF_GATEWAY)
1415 (void)printf(" gateway: %s\n", routename(gate));
/macosx-10.10/CPANInternal-159.1/Log-Log4perl-1.40/lib/Log/Log4perl/
H A DFilter.pm209 This will open the gate for messages like C<blah blah> because the
H A DFAQ.pm1494 sure to let messages pass through this virtual gate one by one only.
/macosx-10.10/bootp-298/IPConfiguration.bproj/
H A Dipconfigd.c2433 const struct in_addr * gate)
2452 if (gate != NULL) {
2454 values[count] = my_CFStringCreateWithIPAddress(*gate);
2432 route_dict_create(const struct in_addr * dest, const struct in_addr * mask, const struct in_addr * gate) argument
/macosx-10.10/emacs-93/emacs/lisp/play/
H A Ddunnet.el769 (dun-mprincl "The gate will not open.")
771 "As the bus approaches, the gate opens and you drive through.")
1720 There is a road to the northwest leading to a gate that guards a building."
2142 (gate . -19)
2252 (list obj-gate) ;; main-maple-intersection
2428 "It is a large metal gate that is too big to climb over."
/macosx-10.10/CPANInternal-159.1/Mail-Sender-0.8.22/
H A DSender.pm3624 Ed McGuigan <itstech1@gate.net>,
/macosx-10.10/files-662.1.1/private/etc/
H A Dservices1800 # Ronny Bremer <rbremer@future-gate.com>
10178 pda-gate 4012/udp # PDA Gate
10179 pda-gate 4012/tcp # PDA Gate
/macosx-10.10/IOGraphics-485/IOGraphicsFamily/
H A DIOFramebuffer.cpp458 typedef void GateFunction(IOWorkLoop * wl, OSObject * obj, void * reference, bool gate);
4371 // wakeup is not gate specific
4440 if (!controller->wl->inGate()) panic("!gate\n");

Completed in 541 milliseconds