Searched refs:tuple (Results 1 - 25 of 205) sorted by relevance

123456789

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/db-4.7.25.NC/examples_java/src/collections/ship/marshal/
H A DMarshalledKey.java11 import com.sleepycat.bind.tuple.TupleInput;
12 import com.sleepycat.bind.tuple.TupleOutput;
28 * Construct the key tuple entry from the key object.
33 * Construct the key object from the key tuple entry.
H A DMarshalledEnt.java11 import com.sleepycat.bind.tuple.TupleInput;
12 import com.sleepycat.bind.tuple.TupleOutput;
H A DPartKey.java11 import com.sleepycat.bind.tuple.TupleInput;
12 import com.sleepycat.bind.tuple.TupleOutput;
17 * <p> In this sample, PartKey is bound to the stored key tuple entry by
H A DSupplierKey.java11 import com.sleepycat.bind.tuple.TupleInput;
12 import com.sleepycat.bind.tuple.TupleOutput;
17 * <p> In this sample, SupplierKey is bound to the stored key tuple entry by
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/net/netfilter/
H A Dnf_conntrack_l3proto_generic.c37 struct nf_conntrack_tuple *tuple)
39 memset(&tuple->src.u3, 0, sizeof(tuple->src.u3));
40 memset(&tuple->dst.u3, 0, sizeof(tuple->dst.u3));
45 static int generic_invert_tuple(struct nf_conntrack_tuple *tuple, argument
48 memset(&tuple->src.u3, 0, sizeof(tuple->src.u3));
49 memset(&tuple->dst.u3, 0, sizeof(tuple
36 generic_pkt_to_tuple(const struct sk_buff *skb, unsigned int nhoff, struct nf_conntrack_tuple *tuple) argument
54 generic_print_tuple(struct seq_file *s, const struct nf_conntrack_tuple *tuple) argument
75 generic_get_features(const struct nf_conntrack_tuple *tuple) argument
[all...]
H A Dnf_conntrack_proto_generic.c19 struct nf_conntrack_tuple *tuple)
21 tuple->src.u.all = 0;
22 tuple->dst.u.all = 0;
27 static int generic_invert_tuple(struct nf_conntrack_tuple *tuple, argument
30 tuple->src.u.all = 0;
31 tuple->dst.u.all = 0;
36 /* Print out the per-protocol part of the tuple. */
38 const struct nf_conntrack_tuple *tuple)
17 generic_pkt_to_tuple(const struct sk_buff *skb, unsigned int dataoff, struct nf_conntrack_tuple *tuple) argument
37 generic_print_tuple(struct seq_file *s, const struct nf_conntrack_tuple *tuple) argument
H A Dnf_conntrack_proto_gre.c64 return km->tuple.src.l3num == t->src.l3num &&
65 !memcmp(&km->tuple.src.u3, &t->src.u3, sizeof(t->src.u3)) &&
66 !memcmp(&km->tuple.dst.u3, &t->dst.u3, sizeof(t->dst.u3)) &&
67 km->tuple.dst.protonum == t->dst.protonum &&
68 km->tuple.dst.u.all == t->dst.u.all;
71 /* look up the source key for a given tuple */
80 key = km->tuple.src.u.gre.key;
114 memcpy(&km->tuple, t, sizeof(*t));
118 NF_CT_DUMP_TUPLE(&km->tuple);
152 /* invert gre part of tuple */
153 gre_invert_tuple(struct nf_conntrack_tuple *tuple, const struct nf_conntrack_tuple *orig) argument
162 gre_pkt_to_tuple(const struct sk_buff *skb, unsigned int dataoff, struct nf_conntrack_tuple *tuple) argument
197 gre_print_tuple(struct seq_file *s, const struct nf_conntrack_tuple *tuple) argument
[all...]
H A Dnf_conntrack_expect.c61 __nf_conntrack_expect_find(const struct nf_conntrack_tuple *tuple) argument
66 if (nf_ct_tuple_mask_cmp(tuple, &i->tuple, &i->mask))
73 /* Just find a expectation corresponding to a tuple. */
75 nf_conntrack_expect_find_get(const struct nf_conntrack_tuple *tuple) argument
80 i = __nf_conntrack_expect_find(tuple);
92 find_expectation(const struct nf_conntrack_tuple *tuple) argument
96 exp = __nf_conntrack_expect_find(tuple);
163 return nf_ct_tuple_mask_cmp(&a->tuple, &b->tuple,
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/db-4.7.25.NC/java/src/com/sleepycat/bind/tuple/
H A DMarshalledTupleEntry.java9 package com.sleepycat.bind.tuple;
32 * Construct the key or data tuple entry from the key or data object.
34 * @param dataOutput is the output tuple.
39 * Construct the key or data object from the key or data tuple entry.
41 * @param dataInput is the input tuple.
H A DMarshalledTupleKeyEntity.java9 package com.sleepycat.bind.tuple;
17 * <p>Note that a marshalled tuple key extractor is somewhat less efficient
18 * than a non-marshalled key tuple extractor because more conversions are
32 * @param keyOutput is the output tuple.
40 * @param keyInput is the input tuple.
49 * @param keyOutput is the output tuple.
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/db-4.7.25.NC/examples_java/src/collections/ship/factory/
H A DPartKey.java11 import com.sleepycat.bind.tuple.MarshalledTupleEntry;
12 import com.sleepycat.bind.tuple.TupleInput;
13 import com.sleepycat.bind.tuple.TupleOutput;
18 * <p> In this sample, PartKey is bound to the stored key tuple entry by
H A DSupplierKey.java11 import com.sleepycat.bind.tuple.MarshalledTupleEntry;
12 import com.sleepycat.bind.tuple.TupleInput;
13 import com.sleepycat.bind.tuple.TupleOutput;
18 * <p> In this sample, SupplierKey is bound to the stored key tuple entry by
H A DShipmentKey.java11 import com.sleepycat.bind.tuple.MarshalledTupleEntry;
12 import com.sleepycat.bind.tuple.TupleInput;
13 import com.sleepycat.bind.tuple.TupleOutput;
18 * <p> In this sample, ShipmentKey is bound to the stored key tuple entry by
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/net/netfilter/
H A Dnf_conntrack_helper.h27 struct nf_conntrack_tuple tuple; member in struct:nf_conntrack_helper
43 __nf_ct_helper_find(const struct nf_conntrack_tuple *tuple);
46 nf_ct_helper_find_get( const struct nf_conntrack_tuple *tuple);
H A Dnf_conntrack_expect.h18 /* We expect this tuple, with the following mask */
19 struct nf_conntrack_tuple tuple, mask; member in struct:nf_conntrack_expect
57 __nf_conntrack_expect_find(const struct nf_conntrack_tuple *tuple);
60 nf_conntrack_expect_find_get(const struct nf_conntrack_tuple *tuple);
63 find_expectation(const struct nf_conntrack_tuple *tuple);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/net/ipv4/netfilter/
H A Dipt_cone.c48 const struct nf_conntrack_tuple *tuple)
50 return (ct->tuplehash[IP_CT_DIR_REPLY].tuple.dst.protonum
51 == tuple->dst.protonum &&
52 ct->tuplehash[IP_CT_DIR_REPLY].tuple.dst.u3.ip
53 == tuple->dst.u3.ip &&
54 ct->tuplehash[IP_CT_DIR_REPLY].tuple.dst.u.udp.port
55 == tuple->dst.u.udp.port);
60 find_appropriate_cone(const struct nf_conntrack_tuple *tuple) argument
62 unsigned int h = hash_by_cone(tuple->dst.u3.ip,
63 tuple
47 cone_cmp(const struct nf_conn *ct, const struct nf_conntrack_tuple *tuple) argument
84 struct nf_conntrack_tuple *tuple = &ct->tuplehash[IP_CT_DIR_REPLY].tuple; local
127 struct nf_conntrack_tuple *tuple; local
[all...]
H A Dnf_nat_proto_unknown.c21 static int unknown_in_range(const struct nf_conntrack_tuple *tuple, argument
29 static int unknown_unique_tuple(struct nf_conntrack_tuple *tuple, argument
42 const struct nf_conntrack_tuple *tuple,
40 unknown_manip_pkt(struct sk_buff **pskb, unsigned int iphdroff, const struct nf_conntrack_tuple *tuple, enum nf_nat_manip_type maniptype) argument
H A Dnf_nat_h323.c114 if (addr.ip == ct->tuplehash[dir].tuple.src.u3.ip &&
129 NIPQUAD(ct->tuplehash[!dir].tuple.dst.
133 tuple.dst.u3,
135 } else if (addr.ip == ct->tuplehash[dir].tuple.dst.u3.ip &&
142 NIPQUAD(ct->tuplehash[!dir].tuple.src.
146 tuple.src.u3,
168 addr.ip == ct->tuplehash[dir].tuple.src.u3.ip &&
169 port == ct->tuplehash[dir].tuple.src.u.udp.port) {
173 NIPQUAD(ct->tuplehash[!dir].tuple.dst.u3.ip),
174 ntohs(ct->tuplehash[!dir].tuple
[all...]
H A Dnf_nat_proto_gre.c43 gre_in_range(const struct nf_conntrack_tuple *tuple, argument
51 key = tuple->src.u.gre.key;
53 key = tuple->dst.u.gre.key;
59 /* generate unique tuple ... */
61 gre_unique_tuple(struct nf_conntrack_tuple *tuple, argument
76 keyptr = &tuple->src.u.gre.key;
78 keyptr = &tuple->dst.u.gre.key;
93 if (!nf_nat_used_tuple(tuple, conntrack))
104 const struct nf_conntrack_tuple *tuple,
130 DEBUGP("call_id -> 0x%04x\n", ntohs(tuple
103 gre_manip_pkt(struct sk_buff **pskb, unsigned int iphdroff, const struct nf_conntrack_tuple *tuple, enum nf_nat_manip_type maniptype) argument
[all...]
H A Dnf_nat_proto_icmp.c21 icmp_in_range(const struct nf_conntrack_tuple *tuple, argument
26 return ntohs(tuple->src.u.icmp.id) >= ntohs(min->icmp.id) &&
27 ntohs(tuple->src.u.icmp.id) <= ntohs(max->icmp.id);
31 icmp_unique_tuple(struct nf_conntrack_tuple *tuple, argument
46 tuple->src.u.icmp.id = htons(ntohs(range->min.icmp.id) +
48 if (!nf_nat_used_tuple(tuple, ct))
57 const struct nf_conntrack_tuple *tuple,
69 hdr->un.echo.id, tuple->src.u.icmp.id, 0);
70 hdr->un.echo.id = tuple->src.u.icmp.id;
55 icmp_manip_pkt(struct sk_buff **pskb, unsigned int iphdroff, const struct nf_conntrack_tuple *tuple, enum nf_nat_manip_type maniptype) argument
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/pcmcia/
H A Dcistpl.c400 The high-level CIS tuple services
416 int pccard_get_next_tuple(struct pcmcia_socket *s, unsigned int func, tuple_t *tuple);
418 int pccard_get_first_tuple(struct pcmcia_socket *s, unsigned int function, tuple_t *tuple) argument
424 tuple->TupleLink = tuple->Flags = 0;
430 tuple->CISOffset = ptr & ~7;
431 SPACE(tuple->Flags) = (ptr & 7);
436 tuple->CISOffset = tuple->LinkOffset = 0;
437 SPACE(tuple
455 follow_link(struct pcmcia_socket *s, tuple_t *tuple) argument
495 pccard_get_next_tuple(struct pcmcia_socket *s, unsigned int function, tuple_t *tuple) argument
594 pccard_get_tuple_data(struct pcmcia_socket *s, tuple_t *tuple) argument
621 parse_device(tuple_t *tuple, cistpl_device_t *device) argument
666 parse_checksum(tuple_t *tuple, cistpl_checksum_t *csum) argument
680 parse_longlink(tuple_t *tuple, cistpl_longlink_t *link) argument
690 parse_longlink_mfc(tuple_t *tuple, cistpl_longlink_mfc_t *link) argument
738 parse_vers_1(tuple_t *tuple, cistpl_vers_1_t *vers_1) argument
755 parse_altstr(tuple_t *tuple, cistpl_altstr_t *altstr) argument
768 parse_jedec(tuple_t *tuple, cistpl_jedec_t *jedec) argument
788 parse_manfid(tuple_t *tuple, cistpl_manfid_t *m) argument
801 parse_funcid(tuple_t *tuple, cistpl_funcid_t *f) argument
814 parse_funce(tuple_t *tuple, cistpl_funce_t *f) argument
829 parse_config(tuple_t *tuple, cistpl_config_t *config) argument
1018 parse_cftable_entry(tuple_t *tuple, cistpl_cftable_entry_t *entry) argument
1133 parse_bar(tuple_t *tuple, cistpl_bar_t *bar) argument
1145 parse_config_cb(tuple_t *tuple, cistpl_config_t *config) argument
1159 parse_cftable_entry_cb(tuple_t *tuple, cistpl_cftable_entry_cb_t *entry) argument
1234 parse_device_geo(tuple_t *tuple, cistpl_device_geo_t *geo) argument
1258 parse_vers_2(tuple_t *tuple, cistpl_vers_2_t *v2) argument
1280 parse_org(tuple_t *tuple, cistpl_org_t *org) argument
1300 parse_format(tuple_t *tuple, cistpl_format_t *fmt) argument
1319 pccard_parse_tuple(tuple_t *tuple, cisparse_t *parse) argument
1410 tuple_t tuple; local
1445 tuple_t *tuple; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/db-4.7.25.NC/examples_java/src/collections/ship/tuple/
H A DPartKey.java9 package collections.ship.tuple;
14 * <p> In this sample, PartKey is bound to the key's tuple storage entry using
H A DShipmentData.java9 package collections.ship.tuple;
H A DSupplierKey.java9 package collections.ship.tuple;
14 * <p> In this sample, SupplierKey is bound to the key's tuple storage entry
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/db-4.7.25.NC/java/src/com/sleepycat/bind/serial/
H A DTupleSerialMarshalledBinding.java11 import com.sleepycat.bind.tuple.MarshalledTupleKeyEntity;
12 import com.sleepycat.bind.tuple.TupleInput;
13 import com.sleepycat.bind.tuple.TupleOutput;
34 * Creates a tuple-serial marshalled binding object.
50 * Creates a tuple-serial marshalled binding object.

Completed in 207 milliseconds

123456789