Searched refs:so (Results 1 - 25 of 128) sorted by relevance

123456

/vbox/src/VBox/ExtPacks/VBoxDTrace/onnv/cmd/dtrace/test/tst/common/pid/
H A Derr.D_PDESC_ZERO.badlib.d36 pid$1:libbmc_sucks.so.1::entry
H A Dtst.probemod.ksh37 # matches as well as the full module name. We'll use 'libc.so.1'
38 # (and therefore 'libc' and 'libc.so') as it's definitely there.
41 for lib in libc libc.so libc.so.1 'lib[c]*'; do
H A Dtst.manypids.ksh37 for lib in `ls -1 /lib/lib*.so.1 | grep -v ld.so.1`; do
H A Dtst.provregex2.ksh46 all: main altlib.so
54 altlib.so: altlib.o
55 cc -z defs -G -o altlib.so altlib.o -lc
86 if ((alt = dlopen("./altlib.so", RTLD_LAZY | RTLD_LOCAL))
88 printf("dlopen of altlib.so failed: %s\n", dlerror());
93 printf("failed to lookup 'go' in altlib.so\n");
/vbox/src/VBox/ExtPacks/VBoxDTrace/onnv/cmd/dtrace/demo/user/
H A Dlibc.d27 pid$target:libc.so::entry
/vbox/src/VBox/ExtPacks/VBoxDTrace/onnv/cmd/dtrace/test/tst/common/plockstat/
H A Dtst.available.d33 plockstat$1:libc.so.1::
/vbox/src/VBox/Frontends/Common/VBoxKeyboard/
H A DMakefile22 VBoxKeyboard.so : keyboard.o
23 gcc -shared -o VBoxKeyboard.so keyboard.o -lX11
/vbox/src/VBox/Devices/Network/slirp/
H A Dudp.c93 struct socket *so; local
219 so = NULL;
226 so = udp_last_so;
227 if ( so->so_lport != uh->uh_sport
228 || so->so_laddr.s_addr != ip->ip_src.s_addr)
237 so = tmp;
242 so = NULL;
246 udp_last_so = so;
251 if (so == NULL)
257 if ((so
396 udp_output2(PNATState pData, struct socket *so, struct mbuf *m, struct sockaddr_in *saddr, struct sockaddr_in *daddr, int iptos) argument
455 udp_output(PNATState pData, struct socket *so, struct mbuf *m, struct sockaddr_in *addr) argument
512 udp_attach(PNATState pData, struct socket *so) argument
574 udp_detach(PNATState pData, struct socket *so) argument
602 struct socket *so; local
[all...]
H A Dsocket.c51 LogFlowFunc(("Enter: fBindSocket:%RTbool, so:%R[natsock], u32ForeignAddr:%RTnaipv4\n", fBindSocket, pSo, u32ForeignAddr));
145 struct socket *so; local
147 for (so = head->so_next; so != head; so = so->so_next)
149 if ( so->so_lport == lport
150 && so->so_laddr.s_addr == laddr.s_addr
151 && so->so_faddr.s_addr == faddr.s_addr
152 && so
167 struct socket *so; local
185 sofree(PNATState pData, struct socket *so) argument
239 soread(PNATState pData, struct socket *so) argument
434 sorecvoob(PNATState pData, struct socket *so) argument
464 sosendoob(struct socket *so) argument
528 sowrite(PNATState pData, struct socket *so) argument
679 sorecvfrom(PNATState pData, struct socket *so) argument
830 sosendto(PNATState pData, struct socket *so, struct mbuf *m) argument
936 struct socket *so; local
1049 sorwakeup(struct socket *so) argument
1064 sowwakeup(struct socket *so) argument
1076 soisfconnecting(struct socket *so) argument
1084 soisfconnected(struct socket *so) argument
1093 sofcantrcvmore(struct socket *so) argument
1110 sofcantsendmore(struct socket *so) argument
1125 soisfdisconnected(struct socket *so) argument
1143 sofwdrain(struct socket *so) argument
1322 sorecvfrom_icmp_unix(PNATState pData, struct socket *so) argument
[all...]
H A Dslirp.c30 * furnished to do so, subject to the following conditions:
75 # define DO_ENGAGE_EVENT1(so, fdset, label) \
77 if ( so->so_poll_index != -1 \
78 && so->s == polls[so->so_poll_index].fd) \
80 polls[so->so_poll_index].events |= N_(fdset ## _poll); \
85 polls[poll_index].fd = (so)->s; \
86 (so)->so_poll_index = poll_index; \
92 # define DO_ENGAGE_EVENT2(so, fdset1, fdset2, label) \
94 if ( so
491 struct socket *so; local
620 struct socket *so, *so_next; local
[all...]
H A Dtcp_subr.c90 struct socket *so = tp->t_socket; local
96 n->ti_src = so->so_faddr;
97 n->ti_dst = so->so_laddr;
98 n->ti_sport = so->so_fport;
99 n->ti_dport = so->so_lport;
150 * ti points into m so the next line is just making
198 tcp_newtcpcb(PNATState pData, struct socket *so) argument
209 tp->t_socket = so;
212 * Init srtt to TCPTV_SRTTBASE (0), so we can tell that we have no
213 * rtt estimate. Set rttvar so tha
282 struct socket *so = tp->t_socket; local
404 tcp_fconnect(PNATState pData, struct socket *so) argument
468 struct socket *so; local
600 tcp_attach(PNATState pData, struct socket *so) argument
[all...]
H A Dtcp_input.c100 struct socket *so = tp->t_socket; local
170 * our data already. If so, drop the data from the incoming
270 if (so->so_state & SS_FCANTSENDMORE)
273 sbappend(pData, so, q->tqe_m);
299 struct socket *so = 0; local
324 so = inso;
325 Log4(("NAT: tcp_input: %R[natsock]\n", so));
327 tp = sototcpcb(so);
328 m = so->so_m;
329 so
1745 tcp_fconnect_failed(PNATState pData, struct socket *so, int sockerr) argument
2008 struct socket *so = tp->t_socket; local
[all...]
H A Dslirp_state.h92 struct socket *so; member in struct:port_forward_rule
430 # define QSOCKET_FOREACH(so, sonext, label) \
431 for ((so) = VBOX_X2(queue_ ## label ## _label).so_next; \
432 (so) != &(VBOX_X2(queue_ ## label ## _label)); \
433 (so) = (sonext)) \
435 (sonext) = (so)->so_next; \
436 Log5(("%s:%d Processing so:%R[natsock]\n", __FUNCTION__, __LINE__, (so)));
439 # define LOOP_LABEL(label, so, sonext) /* empty*/
441 # define DO_TCP_INPUT(data, mbuf, size, so) tcp_inpu
[all...]
H A Ddebug.c242 struct socket *so, *so_next; local
249 QSOCKET_FOREACH(so, so_next, tcp)
251 n = RTStrPrintf(buff, sizeof(buff), "tcp[%s]", so->so_tcpcb?tcpstates[so->so_tcpcb->t_state]:"NONE");
256 buff, so->s, inet_ntoa(so->so_laddr), RT_N2H_U16(so->so_lport));
258 inet_ntoa(so->so_faddr), RT_N2H_U16(so->so_fport),
259 SBUF_LEN(&so
[all...]
H A Dsocket.h97 void (* so_timeout)(PNATState pData, struct socket *so, void *arg);
128 # define SOCKET_LOCK(so) do {} while (0)
129 # define SOCKET_UNLOCK(so) do {} while (0)
130 # define SOCKET_LOCK_CREATE(so) do {} while (0)
131 # define SOCKET_LOCK_DESTROY(so) do {} while (0)
H A Dtcp_timer.c66 register struct socket *so, *so_next; local
71 so = tcb.so_next;
72 if (so)
73 QSOCKET_FOREACH (so, so_next, tcp)
75 if ( (tp = (struct tcpcb *)so->so_tcpcb)
83 LOOP_LABEL(tcp, so, so_next);
205 * keep retransmitting it, it'll keep eating the zeroes, so we keep
243 * so we'll take the next rtt measurement as our srtt;
H A Dsbuf.c106 * (the socket is non-blocking, so we won't hang)
109 sbappend(PNATState pData, struct socket *so, struct mbuf *m) argument
115 LogFlow(("sbappend: so = %lx, m = %lx, m->m_len = %d\n", (long)so, (long)m, m ? m->m_len : 0));
131 if (so->so_urgc)
133 sbappendsb(pData, &so->so_rcv, m);
135 sosendoob(so);
143 if (so->so_rcv.sb_cc == 0)
160 ret = send(so->s, buf, mlen, 0);
176 sbappendsb(pData, &so
[all...]
H A Dtcp_output.c94 register struct socket *so = tp->t_socket; local
156 if (off < SBUF_LEN(&so->so_snd))
167 len = min(SBUF_LEN(&so->so_snd), win) - off;
192 if (SEQ_LT(tp->snd_nxt + len, tp->snd_una + SBUF_LEN(&so->so_snd)))
195 win = sbspace(&so->so_rcv);
212 len + off >= SBUF_LEN(&so->so_snd))
242 if (2 * adv >= (long) SBUF_SIZE(&so->so_rcv))
257 * and we have not yet done so, or we're retransmitting the FIN,
286 if ( SBUF_LEN(&so->so_snd)
424 sbcopy(&so
[all...]
/vbox/src/VBox/ExtPacks/VBoxDTrace/onnv/cmd/dtrace/test/tst/common/vars/
H A Dtst.ucaller.ksh29 # This test is a bit naughty; it's assuming that ld.so.1 has an implementation
30 # of calloc(3C), and that it's implemented in terms of the ld.so.1
42 pid\$target:ld.so.1:calloc:entry
47 pid\$target:ld.so.1:malloc:entry
53 pid\$target:ld.so.1:calloc:return
/vbox/src/VBox/Devices/EFI/Firmware/
H A Dedksetup.sh36 echo Please note: This script must be \'sourced\' so the environment can be changed.
/vbox/src/VBox/ExtPacks/VBoxDTrace/onnv/cmd/dtrace/test/tst/common/usdt/
H A Dtst.dlclose1.ksh46 all: main livelib.so deadlib.so
55 livelib.so: livelib.o prov.o
56 cc -z defs -G -o livelib.so livelib.o prov.o -lc
68 deadlib.so: deadlib.o
69 cc -z defs -G -o deadlib.so deadlib.o -lc
78 rm -f main livelib.so deadlib.so
115 if ((live = dlopen("./livelib.so", RTLD_LAZY | RTLD_LOCAL)) == NULL) {
116 printf("dlopen of livelib.so faile
[all...]
H A Dtst.dlclose3.ksh46 all: main livelib.so deadlib.so
55 livelib.so: livelib.o prov.o
56 cc -z defs -G -o livelib.so livelib.o prov.o -lc
68 deadlib.so: deadlib.o
69 cc -z defs -G -o deadlib.so deadlib.o -lc
78 rm -f main livelib.so deadlib.so
121 if ((live = dlopen("./livelib.so", RTLD_LAZY | RTLD_LOCAL)) == NULL) {
122 printf("dlopen of livelib.so faile
[all...]
H A Dtst.dlclose2.ksh41 all: main livelib.so deadlib.so
50 livelib.so: livelib.o prov.o
51 cc -z defs -G -o livelib.so livelib.o prov.o -lc
63 deadlib.so: deadlib.o
64 cc -z defs -G -o deadlib.so deadlib.o -lc
73 rm -f main livelib.so deadlib.so
111 if ((live = dlopen("./livelib.so", RTLD_LAZY | RTLD_LOCAL)) == NULL) {
112 printf("dlopen of livelib.so faile
[all...]
/vbox/src/VBox/Additions/solaris/Installer/
H A Dpreremove.sh69 if test -f "/usr/lib/VBoxOGL.so" && test -f "/usr/X11/lib/mesa/libGL_original_.so.1"; then
70 mv -f /usr/X11/lib/mesa/libGL_original_.so.1 /usr/X11/lib/mesa/libGL.so.1
74 if test -f "/usr/lib/amd64/VBoxOGL.so" && test -f "/usr/X11/lib/mesa/amd64/libGL_original_.so.1"; then
75 mv -f /usr/X11/lib/mesa/amd64/libGL_original_.so.1 /usr/X11/lib/mesa/amd64/libGL.so.1
/vbox/src/VBox/Devices/Network/slirp/dnsproxy/
H A Ddnsproxy.c23 * Software is furnished to do so, subject to the following conditions:
116 timeout(PNATState pData, struct socket *so, void *arg) argument
131 req, req->dnsgen, pData->dnsgen, so));
165 ip->ip_src.s_addr = so->so_laddr.s_addr;
168 udp->uh_sport = so->so_lport;
172 /* req points to so->so_timeout_arg */
177 dnsproxy_query(pData, so, m, iphlen);
178 /* should we free so->so_m ? */
183 /* This socket (so) will be detached, so w
[all...]

Completed in 145 milliseconds

123456