OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:sinfo
(Results
1 - 10
of
10
) sorted by null
/external/iptables/extensions/
libxt_connbytes.c
33
struct xt_connbytes_info *
sinfo
= cb->data;
local
39
sinfo
->count.from = cb->val.u64_range[0];
40
sinfo
->count.to = cb->val.u64_range[0];
42
sinfo
->count.to = cb->val.u64_range[1];
44
i =
sinfo
->count.from;
45
sinfo
->count.from =
sinfo
->count.to;
46
sinfo
->count.to = i;
51
sinfo
->direction = XT_CONNBYTES_DIR_ORIGINAL;
53
sinfo
->direction = XT_CONNBYTES_DIR_REPLY
113
const struct xt_connbytes_info *
sinfo
= (const void *)match->data;
local
133
const struct xt_connbytes_info *
sinfo
= (const void *)match->data;
local
[
all
...]
libxt_state.c
31
state_parse_state(const char *state, size_t len, struct xt_state_info *
sinfo
)
34
sinfo
->statemask |= XT_STATE_INVALID;
36
sinfo
->statemask |= XT_STATE_BIT(IP_CT_NEW);
38
sinfo
->statemask |= XT_STATE_BIT(IP_CT_ESTABLISHED);
40
sinfo
->statemask |= XT_STATE_BIT(IP_CT_RELATED);
42
sinfo
->statemask |= XT_STATE_UNTRACKED;
49
state_parse_states(const char *arg, struct xt_state_info *
sinfo
)
54
if (comma == arg || !state_parse_state(arg, comma-arg,
sinfo
))
62
if (strlen(arg) == 0 || !state_parse_state(arg, strlen(arg),
sinfo
))
68
struct xt_state_info *
sinfo
= cb->data
local
107
const struct xt_state_info *
sinfo
= (const void *)match->data;
local
115
const struct xt_state_info *
sinfo
= (const void *)match->data;
local
[
all
...]
libxt_conntrack.c
146
parse_state(const char *state, size_t len, struct xt_conntrack_info *
sinfo
)
149
sinfo
->statemask |= XT_CONNTRACK_STATE_INVALID;
151
sinfo
->statemask |= XT_CONNTRACK_STATE_BIT(IP_CT_NEW);
153
sinfo
->statemask |= XT_CONNTRACK_STATE_BIT(IP_CT_ESTABLISHED);
155
sinfo
->statemask |= XT_CONNTRACK_STATE_BIT(IP_CT_RELATED);
157
sinfo
->statemask |= XT_CONNTRACK_STATE_UNTRACKED;
159
sinfo
->statemask |= XT_CONNTRACK_STATE_SNAT;
161
sinfo
->statemask |= XT_CONNTRACK_STATE_DNAT;
168
parse_states(const char *arg, struct xt_conntrack_info *
sinfo
)
173
if (comma == arg || !parse_state(arg, comma-arg,
sinfo
))
296
struct xt_conntrack_info *
sinfo
= cb->data;
local
654
const struct xt_conntrack_info *
sinfo
= (const void *)match->data;
local
[
all
...]
/system/core/adb/
services.c
407
struct state_info*
sinfo
= cookie;
local
410
D("wait_for_state %d\n",
sinfo
->state);
412
atransport *t = acquire_one_transport(
sinfo
->state,
sinfo
->transport,
sinfo
->serial, &err);
419
if (
sinfo
->serial)
420
free(
sinfo
->serial);
421
free(
sinfo
);
551
struct state_info*
sinfo
= malloc(sizeof(struct state_info));
local
554
sinfo
->serial = strdup(serial)
[
all
...]