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

/external/dhcpcd/
H A Dconfigure.c444 if (rt->gate.s_addr == INADDR_ANY)
447 else if (rt->gate.s_addr == rt->dest.s_addr &&
453 inet_ntoa(rt->gate));
456 addr, inet_ntocidr(rt->net), inet_ntoa(rt->gate));
495 rt->gate.s_addr == 0)
554 rt->gate.s_addr = 0;
573 r->gate.s_addr = 0;
588 if (rt->gate.s_addr == 0)
615 if (r->gate.s_addr == iface->addr.s_addr &&
617 r->gate
[all...]
H A Dif-bsd.c234 if (rt->gate.s_addr != INADDR_ANY ||
239 if (rt->dest.s_addr == rt->gate.s_addr &&
260 ADDADDR(&rt->gate);
404 COPYOUT(rt.gate, rti_info[RTAX_GATEWAY]);
437 COPYOUT(rt.gate, rti_info[RTAX_BRD]);
439 &rt.dest, &rt.net, &rt.gate);
H A Dif-linux.c256 rt.gate.s_addr = INADDR_ANY;
266 memcpy(&rt.gate.s_addr, RTA_DATA(rta),
267 sizeof(rt.gate.s_addr));
566 if (rt->gate.s_addr == INADDR_ANY ||
567 (rt->gate.s_addr == rt->dest.s_addr &&
583 if (rt->dest.s_addr != rt->gate.s_addr ||
586 &rt->gate.s_addr, sizeof(rt->gate.s_addr));
H A Dnet.h85 struct in_addr gate; member in struct:rt
H A Ddhcp.c592 memcpy(&rt->gate.s_addr, p, 4);
818 memcpy(&route->gate.s_addr, p, 4);
834 memcpy(&route->gate.s_addr, p, 4);
H A Dif-options.c667 parse_addr(&rt->gate, NULL, np) == -1)
682 if (parse_addr(&rt->gate, NULL, p) == -1)
/external/libnfc-nci/src/nfa/hci/
H A Dnfa_hci_api.c199 ** Description This function will allocate an available generic gate for
202 ** When the generic gate is allocated (or if an error occurs),
204 ** the gate id. The allocated Gate information will be stored in
208 ** NFA_STATUS_FAILED if no generic gate is available
223 /* Request HCI to allocate a gate to the application */
240 ** Description This function will release the specified gate that was
242 ** gate is released (or if an error occurs), the app will be
243 ** notified with NFA_HCI_DEALLOCATE_GATE_EVT with the gate id.
249 tNFA_STATUS NFA_HciDeallocGate (tNFA_HANDLE hci_handle, UINT8 gate) argument
259 if ((gate < NFA_HCI_FIRST_HOST_SPECIFIC_GENERIC_GAT
879 NFA_HciAddStaticPipe(tNFA_HANDLE hci_handle, UINT8 host, UINT8 gate, UINT8 pipe) argument
[all...]
H A Dnfa_hci_act.c427 evt_data.gates_pipes.gate[evt_data.gates_pipes.num_gates++] = pg->gate_id;
449 ** Description action function to allocate a generic gate
462 evt_data.allocated.gate = p_gate ? p_gate->gate_id : 0;
473 ** Description action function to deallocate the given generic gate
489 gate_id = p_evt_data->gate_dealloc.gate;
500 evt_data.deallocated.gate = gate_id;;
536 /* Delete pipes on the gate */
590 /* Verify that the app owns the gate that the pipe is being created on */
596 NFA_TRACE_ERROR2 ("nfa_hci_api_create_pipe Cannot create pipe! APP: 0x%02x does not own the gate:0x%x", p_evt_data->create_pipe.hci_handle, p_evt_data->create_pipe.source_gate);
1042 /* Allocate a proprietary gate */
[all...]
/external/qemu/hw/
H A Di8254.c48 uint8_t gate; /* timer start */ member in struct:PITChannelState
190 if (s->gate < val) {
198 if (s->gate < val) {
206 s->gate = val;
212 return s->gate;
411 qemu_put_8s(f, &s->gate);
442 qemu_get_8s(f, &s->gate);
461 s->gate = (i != 2);
484 s->gate = 1;
/external/libnfc-nci/src/nfa/include/
H A Dnfa_hci_api.h44 #define NFA_HCI_ALLOCATE_GATE_EVT 0x03 /* A generic gate allocated to the application */
45 #define NFA_HCI_DEALLOCATE_GATE_EVT 0x04 /* A generic gate is released */
83 UINT8 local_gate; /* local gate id */
85 UINT8 dest_gate; /* Peer gate to which this pipe is connected */
110 UINT8 gate[NFA_HCI_MAX_GATE_CB]; member in struct:__anon7578
118 UINT8 gate; member in struct:__anon7579
125 UINT8 gate; member in struct:__anon7580
342 ** Description This function will allocate an available generic gate for
345 ** When the generic gate is allocated (or if an error occurs),
347 ** the gate i
[all...]
/external/v8/test/mjsunit/harmony/
H A Dproxies-example-membrane.js195 var gate = Object.freeze({
202 gate: gate
247 m.gate.disable();
265 m.gate.enable();
425 var gate = Object.freeze({
434 return Object.freeze({ wrapper: asDry(wetTarget), gate: gate });
494 m.gate.revoke()
/external/webrtc/src/modules/audio_processing/agc/
H A Ddigital_agc.c320 WebRtc_Word16 gate, gain_adj; local
489 gate = 1000 + zeros_fast - zeros - stt->vadNearend.stdShortTerm;
491 if (gate < 0)
497 gate = (WebRtc_Word16)WEBRTC_SPL_RSHIFT_W32((WebRtc_Word32)gate + tmp32, 3);
498 stt->gatePrevious = gate;
500 // gate < 0 -> no gate
501 // gate > 2500 -> max gate
[all...]
/external/kernel-headers/original/asm-x86/
H A Ddesc_32.h53 #define DESCTYPE_TASK 0x85 /* present, system, DPL-0, task gate */
54 #define DESCTYPE_INT 0x8e /* present, system, DPL-0, interrupt gate */
55 #define DESCTYPE_TRAP 0x8f /* present, system, DPL-0, trap gate */
146 static inline void _set_gate(int gate, unsigned int type, void *addr, unsigned short seg) argument
150 write_idt_entry(idt_table, gate, a, b);
/external/libnfc-nci/src/nfa/int/
H A Dnfa_hci_int.h55 #define NFA_HCI_STATE_REMOVE_GATE 0x05 /* Removing all pipes prior to removing the gate */
77 NFA_HCI_API_GET_APP_GATE_PIPE_EVT, /* Get the list of gate and pipe associated to the application */
78 NFA_HCI_API_ALLOC_GATE_EVT, /* Allocate a dyanmic gate for the application */
79 NFA_HCI_API_DEALLOC_GATE_EVT, /* Deallocate a previously allocated gate to the application */
146 UINT8 gate; member in struct:__anon7719
222 UINT8 gate; member in struct:__anon7727
294 tNFA_HCI_API_ALLOC_GATE gate_info; /* Allocate a dynamic gate to the application */
295 tNFA_HCI_API_DEALLOC_GATE gate_dealloc; /* Deallocate the gate allocated to the application */
322 UINT8 local_gate; /* local gate id */
324 UINT8 dest_gate; /* Peer gate t
[all...]
/external/valgrind/main/VEX/priv/
H A Dguest_arm_toIR.c8364 Bool gate = False; local
8375 gate = True;
8387 gate = True;
8391 if (gate) {
8422 Bool gate = False; local
8432 gate = True;
8443 gate = True;
8447 if (gate) {
8484 Bool gate = False; local
8496 gate
8543 Bool gate = False; local
8601 Bool gate = False; local
8659 Bool gate = False; local
8720 Bool gate = False; local
8769 Bool gate = False; local
8819 Bool gate = False; local
8869 Bool gate = False; local
8919 Bool gate = False; local
8968 Bool gate = False; local
9018 Bool gate = False; local
9068 Bool gate = False; local
9118 Bool gate = False; local
9163 Bool gate = False; local
9208 Bool gate = False; local
9253 Bool gate = False; local
9298 Bool gate = False; local
9343 Bool gate = False; local
9388 Bool gate = False; local
9433 Bool gate = False; local
9486 Bool gate = False; local
9555 Bool gate = False; local
9623 Bool gate = False; local
9698 Bool gate = False, isAD = False; local
9777 Bool gate = False, isAD = False; local
9867 Bool gate = False; local
9937 Bool gate = False; local
10010 Bool gate = False; local
10096 Bool gate = False; local
10160 Bool gate = False; local
[all...]
/external/qemu/android/config/linux-x86/asm/
H A Dkvm.h215 __u8 gate; member in struct:kvm_pit_channel_state
/external/qemu/android/config/linux-x86_64/asm/
H A Dkvm.h215 __u8 gate; member in struct:kvm_pit_channel_state
/external/oprofile/events/mips/74K/
H A Devents29 event:0xb counters:0,2 um:zero minimum:500 name:IFU_IDU_MISS_PRED_UPSTREAM_CYCLES : 11-0 Cycles IFU-IDU gate is closed (to prevent upstream from getting ahead) due to mispredicted branch
30 event:0xc counters:0,2 um:zero minimum:500 name:IFU_IDU_CLOGED_DOWNSTREAM_CYCLES : 12-0 Cycles IFU-IDU gate is closed (waiting for downstream to unclog) due to MTC0/MFC0 sequence in pipe, EHB, or blocked DD, DR, or DS
105 event:0x40b counters:1,3 um:zero minimum:500 name:IFU_IDU_NO_FETCH_CYCLES : 11-1 Cycles IFU-IDU gate open but no instructions fetched by IFU
/external/blktrace/btt/doc/
H A Dbtt.tex481 xmgrace\footnote{\texttt{http://plasma-gate.weizmann.ac.il/Grace/}

Completed in 2219 milliseconds