HomeSort by relevance Sort by last modified time
    Searched refs:gate (Results 1 - 20 of 20) sorted by null

  /external/libnfc-nci/src/nfa/hci/
nfa_hci_api.c 200 ** Description This function will allocate the gate if any specified or an
201 ** available generic gate for the app to provide an entry point
203 ** communication with other host. When the gate is
205 ** with NFA_HCI_ALLOCATE_GATE_EVT with the gate id. The allocated
206 ** Gate information will be stored in non volatile memory.
209 ** NFA_STATUS_FAILED if no generic gate is available
212 tNFA_STATUS NFA_HciAllocGate (tNFA_HANDLE hci_handle, UINT8 gate)
222 if ( (gate)
223 &&((gate < NFA_HCI_FIRST_HOST_SPECIFIC_GENERIC_GATE) || (gate > NFA_HCI_LAST_PROP_GATE) || (gate == NFA_HCI_CONNECTIVITY_GATE))
    [all...]
nfa_hci_act.c 428 evt_data.gates_pipes.gate[evt_data.gates_pipes.num_gates++] = pg->gate_id;
442 /* Loop through all pipes that are connected to connectivity gate */
477 ** Description action function to allocate gate
488 p_gate = nfa_hciu_alloc_gate (p_evt_data->gate_info.gate, app_handle);
494 /* No app owns the gate yet */
499 /* Some other app owns the gate */
501 NFA_TRACE_ERROR1 ("nfa_hci_api_alloc_gate (): The Gate (0X%02x) already taken!", p_evt_data->gate_info.gate);
505 evt_data.allocated.gate = p_gate ? p_gate->gate_id : 0;
516 ** Description action function to deallocate the given generic gate
    [all...]
  /external/libnfc-nci/src/nfa/include/
nfa_hci_api.h 45 #define NFA_HCI_ALLOCATE_GATE_EVT 0x03 /* A generic gate allocated to the application */
46 #define NFA_HCI_DEALLOCATE_GATE_EVT 0x04 /* A generic gate is released */
84 UINT8 local_gate; /* local gate id */
86 UINT8 dest_gate; /* Peer gate to which this pipe is connected */
111 UINT8 gate[NFA_HCI_MAX_GATE_CB]; /* List of generic gates allocated to the application */ member in struct:__anon3590
119 tNFA_STATUS status; /* Status of response to allocate gate request */
120 UINT8 gate; /* The gate allocated to the application */ member in struct:__anon3591
126 tNFA_STATUS status; /* Status of response to deallocate gate request */
127 UINT8 gate; /* The gate deallocated from the application * member in struct:__anon3592
    [all...]
  /external/dhcpcd/
configure.c 444 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.s_addr = r->dest.s_addr
    [all...]
if-bsd.c 234 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);
if-linux.c 256 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));
net.h 85 struct in_addr gate; member in struct:rt
dhcp.c 596 memcpy(&rt->gate.s_addr, p, 4);
822 memcpy(&route->gate.s_addr, p, 4);
838 memcpy(&route->gate.s_addr, p, 4);
    [all...]
if-options.c 667 parse_addr(&rt->gate, NULL, np) == -1)
682 if (parse_addr(&rt->gate, NULL, p) == -1)
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/bin/tests/multisect/
multisect1.asm 24 ; DPMI, and called through a call-gate from ring-3.
  /external/chromium_org/third_party/webrtc/modules/audio_processing/agc/
digital_agc.c 315 int16_t gate, gain_adj; local
482 // Gate processing (lower gain during absence of speech)
494 gate = 1000 + zeros_fast - zeros - stt->vadNearend.stdShortTerm;
496 if (gate < 0)
502 gate = (int16_t)WEBRTC_SPL_RSHIFT_W32((int32_t)gate + tmp32, 3);
503 stt->gatePrevious = gate;
505 // gate < 0 -> no gate
506 // gate > 2500 -> max gat
    [all...]
  /external/chromium_org/v8/test/mjsunit/harmony/
proxies-example-membrane.js 195 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/libnfc-nci/src/nfa/int/
nfa_hci_int.h 38 #define NFA_HCI_LAST_HOST_SPECIFIC_GATE 0xEF /* Lost host specific gate */
55 #define NFA_HCI_STATE_REMOVE_GATE 0x05 /* Removing all pipes prior to removing the gate */
78 NFA_HCI_API_GET_APP_GATE_PIPE_EVT, /* Get the list of gate and pipe associated to the application */
79 NFA_HCI_API_ALLOC_GATE_EVT, /* Allocate a dyanmic gate for the application */
80 NFA_HCI_API_DEALLOC_GATE_EVT, /* Deallocate a previously allocated gate to the application */
139 UINT8 gate; member in struct:__anon3733
147 UINT8 gate; member in struct:__anon3734
223 UINT8 gate; member in struct:__anon3742
295 tNFA_HCI_API_ALLOC_GATE gate_info; /* Allocate a dynamic gate to the application */
296 tNFA_HCI_API_DEALLOC_GATE gate_dealloc; /* Deallocate the gate allocated to the application *
    [all...]
  /bionic/libc/kernel/uapi/asm-x86/asm/
kvm.h 259 __u8 gate; member in struct:kvm_pit_channel_state
  /development/ndk/platforms/android-L/arch-x86/include/asm/
kvm.h 259 __u8 gate; member in struct:kvm_pit_channel_state
  /development/ndk/platforms/android-L/arch-x86_64/include/asm/
kvm.h 259 __u8 gate; member in struct:kvm_pit_channel_state
  /external/kernel-headers/original/uapi/asm-x86/asm/
kvm.h 238 __u8 gate; member in struct:kvm_pit_channel_state
  /external/linux-tools-perf/perf-3.12.0/arch/x86/include/uapi/asm/
kvm.h 238 __u8 gate; member in struct:kvm_pit_channel_state
  /external/oprofile/events/mips/74K/
events 29 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/
btt.tex 481 xmgrace\footnote{\texttt{http://plasma-gate.weizmann.ac.il/Grace/}
    [all...]

Completed in 632 milliseconds