OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ex_ptr
(Results
1 - 10
of
10
) sorted by null
/external/qemu/slirp/
slirp.c
605
struct ex_list *
ex_ptr
;
local
613
for (
ex_ptr
= exec_list;
ex_ptr
;
ex_ptr
=
ex_ptr
->ex_next) {
614
if (
ex_ptr
->ex_addr == ah->ar_tip[3])
944
struct ex_list *
ex_ptr
;
local
946
for (
ex_ptr
= exec_list;
ex_ptr
;
ex_ptr
= ex_ptr->ex_next
1055
struct ex_list *
ex_ptr
;
local
[
all
...]
misc.c
116
add_exec(struct ex_list **
ex_ptr
, int do_pty, char *exec, int addr, int port)
121
for (tmp_ptr = *
ex_ptr
; tmp_ptr; tmp_ptr = tmp_ptr->ex_next) {
126
tmp_ptr = *
ex_ptr
;
127
*
ex_ptr
= (struct ex_list *)malloc(sizeof(struct ex_list));
128
(*
ex_ptr
)->ex_fport = port;
129
(*
ex_ptr
)->ex_addr = addr;
130
(*
ex_ptr
)->ex_pty = do_pty;
131
(*
ex_ptr
)->ex_exec = (do_pty == 3) ? exec : strdup(exec);
132
(*
ex_ptr
)->ex_next = tmp_ptr;
tcp_subr.c
1236
struct ex_list *
ex_ptr
;
local
[
all
...]
ip_input.c
142
struct ex_list *
ex_ptr
;
local
147
for (
ex_ptr
= exec_list;
ex_ptr
;
ex_ptr
=
ex_ptr
->ex_next)
148
if (
ex_ptr
->ex_addr == host)
151
if (!
ex_ptr
)
tcp_input.c
249
struct ex_list *
ex_ptr
;
local
362
for (
ex_ptr
= exec_list;
ex_ptr
;
ex_ptr
=
ex_ptr
->ex_next)
363
if (
ex_ptr
->ex_fport == ti->ti_dport &&
364
(ntohl(ti->ti_dst.s_addr) & 0xff) ==
ex_ptr
->ex_addr)
367
if (!
ex_ptr
)
653
for(
ex_ptr
= exec_list;
ex_ptr
; ex_ptr = ex_ptr->ex_next)
[
all
...]
/external/qemu/slirp-android/
slirp.c
686
struct ex_list *
ex_ptr
;
local
698
for (
ex_ptr
= exec_list;
ex_ptr
;
ex_ptr
=
ex_ptr
->ex_next) {
699
if (
ex_ptr
->ex_addr == ar_tip_low)
1039
struct ex_list *
ex_ptr
;
local
1041
for (
ex_ptr
= exec_list;
ex_ptr
;
ex_ptr
= ex_ptr->ex_next
1150
struct ex_list *
ex_ptr
;
local
[
all
...]
misc.c
96
add_exec(struct ex_list **
ex_ptr
, int do_pty, char *exec, int addr, int port)
101
for (tmp_ptr = *
ex_ptr
; tmp_ptr; tmp_ptr = tmp_ptr->ex_next) {
106
tmp_ptr = *
ex_ptr
;
107
*
ex_ptr
= (struct ex_list *)malloc(sizeof(struct ex_list));
108
(*
ex_ptr
)->ex_fport = port;
109
(*
ex_ptr
)->ex_addr = addr;
110
(*
ex_ptr
)->ex_pty = do_pty;
111
(*
ex_ptr
)->ex_exec = (do_pty == 3) ? exec : strdup(exec);
112
(*
ex_ptr
)->ex_next = tmp_ptr;
tcp_subr.c
966
struct ex_list *
ex_ptr
;
local
991
for (
ex_ptr
= exec_list;
ex_ptr
;
ex_ptr
=
ex_ptr
->ex_next) {
992
if (
ex_ptr
->ex_fport == so->so_faddr_port &&
993
command ==
ex_ptr
->ex_addr) {
994
if (
ex_ptr
->ex_pty == 3) {
996
so->extra = (void *)
ex_ptr
->ex_exec;
999
do_pty =
ex_ptr
->ex_pty
[
all
...]
ip_input.c
142
struct ex_list *
ex_ptr
;
local
147
for (
ex_ptr
= exec_list;
ex_ptr
;
ex_ptr
=
ex_ptr
->ex_next)
148
if (
ex_ptr
->ex_addr == host)
151
if (!
ex_ptr
)
tcp_input.c
249
struct ex_list *
ex_ptr
;
local
362
for (
ex_ptr
= exec_list;
ex_ptr
;
ex_ptr
=
ex_ptr
->ex_next)
363
if (
ex_ptr
->ex_fport == port_geth(ti->ti_dport) &&
364
(ip_geth(ti->ti_dst) & 0xff) ==
ex_ptr
->ex_addr)
367
if (!
ex_ptr
)
658
for(
ex_ptr
= exec_list;
ex_ptr
; ex_ptr = ex_ptr->ex_next)
[
all
...]
Completed in 161 milliseconds