Searched defs:so (Results 1 - 25 of 111) sorted by relevance

12345

/external/libgsm/src/
H A Dcode.c62 word so[160]; local
64 Gsm_Preprocess (S, s, so);
65 Gsm_LPC_Analysis (S, so, LARc);
66 Gsm_Short_Term_Analysis_Filter (S, LARc, so);
71 so+k*40, /* d [0..39] IN */
/external/qemu/slirp/
H A Dif.c10 int if_queued = 0; /* Number of packets queued so far */
136 if_output(struct socket *so, struct mbuf *ifm) argument
142 DEBUG_ARG("so = %lx", (long)so);
163 if (so == ifq->ifq_so) {
165 ifm->ifq_so = so;
172 if (so && (so->so_iptos & IPTOS_LOWDELAY)) {
179 if (ifq->ifq_so == so) {
180 ifm->ifq_so = so;
[all...]
H A Dip_output.c56 ip_output(struct socket *so, struct mbuf *m0) argument
64 DEBUG_ARG("so = %lx", (long)so);
103 if_output(so, m);
188 if_output(so, m);
H A Dtcp_timer.c49 register struct socket *so; local
54 so = tcb.so_next;
55 if (so)
56 for (; so != &tcb; so = so->so_next)
57 if ((tp = (struct tcpcb *)so->so_tcpcb) &&
170 * keep retransmitting it, it'll keep eating the zeroes, so we keep
208 * so we'll take the next rtt measurement as our srtt;
H A Dsbuf.c69 * (the socket is non-blocking, so we won't hang)
72 sbappend(struct socket *so, struct mbuf *m) argument
77 DEBUG_ARG("so = %lx", (long)so);
92 if (so->so_urgc) {
93 sbappendsb(&so->so_rcv, m);
95 sosendoob(so);
103 if (!so->so_rcv.sb_cc)
104 ret = slirp_send(so, m->m_data, m->m_len, 0);
113 sbappendsb(&so
[all...]
H A Ddebug.c19 /* Carry over one item from main.c so that the tty's restored.
80 * a buffer, depending on "type", so that the stats can be sent over
300 struct socket *so; local
307 for (so = tcb.so_next; so != &tcb; so = so->so_next) {
309 n = sprintf(buff, "tcp[%s]", so->so_tcpcb?tcpstates[so->so_tcpcb->t_state]:"NONE");
314 buff, so
[all...]
H A Dip_icmp.c116 struct socket *so; local
118 if ((so = socreate()) == NULL) goto freeit;
119 if(udp_attach(so) == -1) {
122 sofree(so);
126 so->so_m = m;
127 so->so_faddr = ip->ip_dst;
128 so->so_fport = htons(7);
129 so->so_laddr = ip->ip_src;
130 so->so_lport = htons(9);
131 so
[all...]
H A Dtcp_output.c69 register struct socket *so = tp->t_socket; local
128 if (off < so->so_snd.sb_cc)
137 len = min(so->so_snd.sb_cc, win) - off;
161 if (SEQ_LT(tp->snd_nxt + len, tp->snd_una + so->so_snd.sb_cc))
164 win = sbspace(&so->so_rcv);
180 len + off >= so->so_snd.sb_cc)
208 if (2 * adv >= (long) so->so_rcv.sb_datalen)
223 * and we have not yet done so, or we're retransmitting the FIN,
252 if (so->so_snd.sb_cc && tp->t_timer[TCPT_REXMT] == 0 &&
361 sbcopy(&so
[all...]
/external/qemu/slirp-android/
H A Dif.c10 int if_queued = 0; /* Number of packets queued so far */
136 if_output(struct socket *so, struct mbuf *ifm) argument
142 DEBUG_ARG("so = %lx", (long)so);
163 if (so == ifq->ifq_so) {
165 ifm->ifq_so = so;
172 if (so && (so->so_iptos & IPTOS_LOWDELAY)) {
179 if (ifq->ifq_so == so) {
180 ifm->ifq_so = so;
[all...]
H A Dip_output.c56 ip_output(struct socket *so, struct mbuf *m0) argument
64 DEBUG_ARG("so = %lx", (long)so);
103 if_output(so, m);
188 if_output(so, m);
H A Dtcp_timer.c49 register struct socket *so; local
54 so = tcb.so_next;
55 if (so)
56 for (; so != &tcb; so = so->so_next)
57 if ((tp = (struct tcpcb *)so->so_tcpcb) &&
170 * keep retransmitting it, it'll keep eating the zeroes, so we keep
208 * so we'll take the next rtt measurement as our srtt;
H A Dsbuf.c69 * (the socket is non-blocking, so we won't hang)
72 sbappend(struct socket *so, struct mbuf *m) argument
77 DEBUG_ARG("so = %lx", (long)so);
92 if (so->so_urgc) {
93 sbappendsb(&so->so_rcv, m);
95 sosendoob(so);
103 if (!so->so_rcv.sb_cc)
104 ret = slirp_send(so, m->m_data, m->m_len, 0);
113 sbappendsb(&so
[all...]
H A Dtcp_output.c69 register struct socket *so = tp->t_socket; local
128 if (off < so->so_snd.sb_cc)
137 len = min(so->so_snd.sb_cc, win) - off;
161 if (SEQ_LT(tp->snd_nxt + len, tp->snd_una + so->so_snd.sb_cc))
164 win = sbspace(&so->so_rcv);
180 len + off >= so->so_snd.sb_cc)
208 if (2 * adv >= (long) so->so_rcv.sb_datalen)
223 * and we have not yet done so, or we're retransmitting the FIN,
252 if (so->so_snd.sb_cc && tp->t_timer[TCPT_REXMT] == 0 &&
361 sbcopy(&so
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/llvmpipe/
H A Dlp_state_so.c11 * permit persons to whom the Software is furnished to do so, subject to
40 struct lp_so_state *so; local
41 so = (struct lp_so_state *) CALLOC_STRUCT(lp_so_state);
43 if (so) {
44 so->base.num_outputs = templ->num_outputs;
45 memcpy(so->base.stride, templ->stride, sizeof(templ->stride));
46 memcpy(so->base.output, templ->output,
49 return so;
54 void *so)
57 struct lp_so_state *lp_so = (struct lp_so_state *) so;
53 llvmpipe_bind_stream_output_state(struct pipe_context *pipe, void *so) argument
68 llvmpipe_delete_stream_output_state(struct pipe_context *pipe, void *so) argument
[all...]
/external/chromium_org/third_party/mesa/src/src/mesa/state_tracker/
H A Dst_cb_syncobj.c11 * permit persons to whom the Software is furnished to do so, subject to
60 struct st_sync_object *so = (struct st_sync_object*)obj; local
62 screen->fence_reference(screen, &so->fence, NULL);
63 FREE(so);
70 struct st_sync_object *so = (struct st_sync_object*)obj; local
73 assert(so->fence == NULL);
75 pipe->flush(pipe, &so->fence);
81 struct st_sync_object *so = (struct st_sync_object*)obj; local
83 if (so->fence && screen->fence_signalled(screen, so
94 struct st_sync_object *so = (struct st_sync_object*)obj; local
[all...]
/external/mesa3d/src/gallium/drivers/llvmpipe/
H A Dlp_state_so.c11 * permit persons to whom the Software is furnished to do so, subject to
40 struct lp_so_state *so; local
41 so = (struct lp_so_state *) CALLOC_STRUCT(lp_so_state);
43 if (so) {
44 so->base.num_outputs = templ->num_outputs;
45 memcpy(so->base.stride, templ->stride, sizeof(templ->stride));
46 memcpy(so->base.output, templ->output,
49 return so;
54 void *so)
57 struct lp_so_state *lp_so = (struct lp_so_state *) so;
53 llvmpipe_bind_stream_output_state(struct pipe_context *pipe, void *so) argument
68 llvmpipe_delete_stream_output_state(struct pipe_context *pipe, void *so) argument
[all...]
/external/mesa3d/src/mesa/state_tracker/
H A Dst_cb_syncobj.c11 * permit persons to whom the Software is furnished to do so, subject to
60 struct st_sync_object *so = (struct st_sync_object*)obj; local
62 screen->fence_reference(screen, &so->fence, NULL);
63 FREE(so);
70 struct st_sync_object *so = (struct st_sync_object*)obj; local
73 assert(so->fence == NULL);
75 pipe->flush(pipe, &so->fence);
81 struct st_sync_object *so = (struct st_sync_object*)obj; local
83 if (so->fence && screen->fence_signalled(screen, so
94 struct st_sync_object *so = (struct st_sync_object*)obj; local
[all...]
/external/wpa_supplicant_8/hostapd/src/eap_peer/
H A Deap_methods.h68 int eap_peer_method_load(const char *so);
73 static inline int eap_peer_method_load(const char *so) argument
/external/wpa_supplicant_8/src/eap_peer/
H A Deap_methods.h68 int eap_peer_method_load(const char *so);
73 static inline int eap_peer_method_load(const char *so) argument
/external/wpa_supplicant_8/wpa_supplicant/src/eap_peer/
H A Deap_methods.h68 int eap_peer_method_load(const char *so);
73 static inline int eap_peer_method_load(const char *so) argument
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/softpipe/
H A Dsp_query.c11 * permit persons to whom the Software is furnished to do so, subject to
44 struct pipe_query_data_so_statistics so; member in struct:softpipe_query
97 sq->so.primitives_storage_needed = 0;
99 sq->so.num_primitives_written = 0;
137 sq->so.primitives_storage_needed =
140 sq->so.num_primitives_written =
167 memcpy(vresult, &sq->so,
183 *result = sq->so.num_primitives_written;
/external/ipsec-tools/src/libipsec/
H A Dtest-policy.c155 int so; local
171 if ((so = socket(family, SOCK_DGRAM, 0)) < 0)
179 if (setsockopt(so, proto, optname, policy, len) < 0) {
181 close(so);
187 if (getsockopt(so, proto, optname, getbuf, &len) < 0) {
189 close(so);
202 close(so);
211 close (so);
225 int so; local
242 if ((so
[all...]
/external/ipsec-tools/src/racoon/
H A Dkmpstat.c95 static int so; variable
108 so = socket(AF_UNIX, SOCK_STREAM, 0);
109 if (so < 0)
112 if (connect(so, (struct sockaddr *)&name, sizeof(name)) < 0) {
113 (void)close(so);
126 if ((len = send(so, combuf->v, combuf->l, 0)) == -1) {
128 (void)close(so);
149 if ((len = recv(so, &h, sizeof(h), MSG_PEEK)) == -1)
168 if ((len = recv(so, p, h.ac_len, 0)) < 0) {
/external/mesa3d/src/gallium/drivers/softpipe/
H A Dsp_query.c11 * permit persons to whom the Software is furnished to do so, subject to
44 struct pipe_query_data_so_statistics so; member in struct:softpipe_query
97 sq->so.primitives_storage_needed = 0;
99 sq->so.num_primitives_written = 0;
137 sq->so.primitives_storage_needed =
140 sq->so.num_primitives_written =
167 memcpy(vresult, &sq->so,
183 *result = sq->so.num_primitives_written;
/external/valgrind/main/coregrind/m_demangle/
H A Ddemangle.c50 itself encoded using Z-escaping (see pub_core_redir.h) so as to
80 2.1, which AFAICT is compatible with "GPL 2 or later" and so is OK
125 // so we just let it slide without aborting or telling the user.
143 'so' as NULL is acceptable if the caller is only interested in the
147 /*OUT*/HChar* so, Int soLen,
155 if (so) { \
157 so[soLen-1] = 0; oflow = True; \
159 so[soi++] = ch; so[soi] = 0; \
175 vg_assert(soLen > 0 || (soLen == 0 && so
146 maybe_Z_demangle( const HChar* sym, HChar* so, Int soLen, HChar* fn, Int fnLen, Bool* isWrap, Int* eclassTag, Int* eclassPrio ) argument
[all...]

Completed in 685 milliseconds

12345