OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:curtable
(Results
1 - 3
of
3
) sorted by null
/external/iptables/iptables/
iptables-restore.c
127
char
curtable
[IPT_TABLE_MAXNAMELEN + 1];
local
225
strncpy(
curtable
, table, IPT_TABLE_MAXNAMELEN);
226
curtable
[IPT_TABLE_MAXNAMELEN] = '\0';
370
add_argv(
curtable
);
443
newargc,
curtable
);
454
if (tablename && (strcmp(tablename,
curtable
) != 0))
iptables-xml.c
91
static char
curTable
[IPT_TABLE_MAXNAMELEN + 1];
329
if (
curTable
[0])
331
curTable
[0] = 0;
339
strncpy(
curTable
, table, IPT_TABLE_MAXNAMELEN);
340
curTable
[IPT_TABLE_MAXNAMELEN] = '\0';
343
xmlAttrS("name",
curTable
);
591
//xmlAttrS("table",
curTable
); // not needed in full mode
684
if ((strcmp(buffer, "COMMIT\n") == 0) && (
curTable
[0])) {
703
} else if ((buffer[0] == ':') && (
curTable
[0])) {
734
} else if (
curTable
[0])
[
all
...]
ip6tables-restore.c
125
char
curtable
[IP6T_TABLE_MAXNAMELEN + 1];
local
220
strncpy(
curtable
, table, IP6T_TABLE_MAXNAMELEN);
221
curtable
[IP6T_TABLE_MAXNAMELEN] = '\0';
365
add_argv(
curtable
);
438
newargc,
curtable
);
Completed in 972 milliseconds