Searched refs:type (Results 1 - 25 of 316) sorted by relevance

1234567891011>>

/openwrt/target/sdk/
H A Dconvert-config.pl18 my $type;
23 $type = "bool";
25 $type = "tristate";
27 $type = "string";
29 $type = "int";
31 warn "WARNING: no type found for symbol CONFIG_$var=$val\n";
37 $type
/openwrt/package/utils/busybox/
H A Dconvert_defaults.pl8 my $type = "bool";
9 $default =~ /^\"/ and $type = "string";
10 $default =~ /^\d/ and $type = "int";
11 print "config BUSYBOX_DEFAULT_$name\n\t$type\n\tdefault $default\n";
/openwrt/package/libs/libnl-tiny/src/include/netlink/
H A Dtypes.h37 * Specifies the type of dump that is requested.
53 * Causes each element to be prefixed with the message type.
115 #define min_t(type,x,y) \
116 __extension__({ type __x = (x); type __y = (y); __x < __y ? __x: __y; })
117 #define max_t(type,x,y) \
118 __extension__({ type __x = (x); type __y = (y); __x > __y ? __x: __y; })
H A Dlist.h55 #define nl_container_of(ptr, type, member) ({ \
56 const typeof( ((type *)0)->member ) *__mptr = (ptr); \
57 (type *)( (char *)__mptr - ((size_t) &((type *)0)->member));})
59 #define nl_list_entry(ptr, type, member) \
60 nl_container_of(ptr, type, member)
71 #define nl_list_first_entry(head, type, member) \
72 nl_list_entry((head)->next, type, member)
/openwrt/target/linux/ar71xx/files/drivers/net/ethernet/atheros/ag71xx/
H A Dag71xx_ar8216.c31 u8 type; local
33 type = skb->data[1] & AR8216_PACKET_TYPE_MASK;
34 switch (type) {
/openwrt/scripts/config/
H A Dexpr.c17 e->type = E_SYMBOL;
22 struct expr *expr_alloc_one(enum expr_type type, struct expr *ce) argument
25 e->type = type;
30 struct expr *expr_alloc_two(enum expr_type type, struct expr *e1, struct expr *e2) argument
33 e->type = type;
39 struct expr *expr_alloc_comp(enum expr_type type, struct symbol *s1, struct symbol *s2) argument
42 e->type = type;
130 __expr_eliminate_eq(enum expr_type type, struct expr **ep1, struct expr **ep2) argument
504 expr_eliminate_dups1(enum expr_type type, struct expr **ep1, struct expr **ep2) argument
556 expr_eliminate_dups2(enum expr_type type, struct expr **ep1, struct expr **ep2) argument
848 expr_extract_eq(enum expr_type type, struct expr **ep, struct expr **ep1, struct expr **ep2) argument
877 expr_trans_compare(struct expr *e, enum expr_type type, struct symbol *sym) argument
[all...]
H A Dlist.h14 * @type: the type of the container struct this is embedded in.
18 #define container_of(ptr, type, member) ({ \
19 const typeof( ((type *)0)->member ) *__mptr = (ptr); \
20 (type *)( (char *)__mptr - offsetof(type,member) );})
36 * @type: the type of the struct this is embedded in.
39 #define list_entry(ptr, type, member) \
40 container_of(ptr, type, membe
[all...]
H A Dmenu.c87 switch (e->type) {
112 void menu_set_type(int type) argument
116 if (sym->type == type)
118 if (sym->type == S_UNKNOWN) {
119 sym->type = type;
123 "ignoring type redefinition of '%s' from '%s' to '%s'",
125 sym_type_name(sym->type), sym_type_name(type));
128 menu_add_prop(enum prop_type type, char *prompt, struct expr *expr, struct expr *dep) argument
178 menu_add_prompt(enum prop_type type, char *prompt, struct expr *dep) argument
189 menu_add_expr(enum prop_type type, struct expr *expr, struct expr *dep) argument
194 menu_add_symbol(enum prop_type type, struct symbol *sym, struct expr *dep) argument
523 enum prop_type type; local
[all...]
H A Dlkc.h24 #define P(name,type,arg) extern type name arg
116 struct property *menu_add_prop(enum prop_type type, char *prompt, struct expr *expr, struct expr *dep);
117 struct property *menu_add_prompt(enum prop_type type, char *prompt, struct expr *dep);
118 void menu_add_expr(enum prop_type type, struct expr *expr, struct expr *dep);
119 void menu_add_symbol(enum prop_type type, struct symbol *sym, struct expr *dep);
122 void menu_set_type(int type);
156 struct property *prop_alloc(enum prop_type type, struct symbol *sym);
H A Dexpr.h41 enum expr_type type; member in struct:expr
78 enum symbol_type type; member in struct:symbol
88 #define for_all_symbols(i, sym) for (i = 0; i < SYMBOL_HASHSIZE; i++) for (sym = symbol_hash[i]; sym; sym = sym->next) if (sym->type != S_OTHER)
146 enum prop_type type; /* type of property */ member in struct:property
159 if (st->type == (tok))
202 struct expr *expr_alloc_one(enum expr_type type, struct expr *ce);
203 struct expr *expr_alloc_two(enum expr_type type, struct expr *e1, struct expr *e2);
204 struct expr *expr_alloc_comp(enum expr_type type, struct symbol *s1, struct symbol *s2);
220 void expr_extract_eq(enum expr_type type, struc
[all...]
/openwrt/target/linux/generic/files/drivers/mtd/mtdsplit/
H A Dmtdsplit.h35 enum mtdsplit_part_type *type);
41 enum mtdsplit_part_type *type);
52 enum mtdsplit_part_type *type)
61 enum mtdsplit_part_type *type)
51 mtd_check_rootfs_magic(struct mtd_info *mtd, size_t offset, enum mtdsplit_part_type *type) argument
57 mtd_find_rootfs_from(struct mtd_info *mtd, size_t from, size_t limit, size_t *ret_offset, enum mtdsplit_part_type *type) argument
H A Dmtdsplit.c76 enum mtdsplit_part_type *type)
91 if (type)
92 *type = MTDSPLIT_PART_TYPE_SQUASHFS;
95 if (type)
96 *type = MTDSPLIT_PART_TYPE_JFFS2;
99 if (type)
100 *type = MTDSPLIT_PART_TYPE_UBI;
112 enum mtdsplit_part_type *type)
119 err = mtd_check_rootfs_magic(mtd, offset, type);
75 mtd_check_rootfs_magic(struct mtd_info *mtd, size_t offset, enum mtdsplit_part_type *type) argument
108 mtd_find_rootfs_from(struct mtd_info *mtd, size_t from, size_t limit, size_t *ret_offset, enum mtdsplit_part_type *type) argument
H A Dmtdsplit_seama.c40 enum mtdsplit_part_type type; local
61 err = mtd_check_rootfs_magic(master, kernel_ent_size, &type);
72 master->size, &rootfs_offset, &type);
85 if (type == MTDSPLIT_PART_TYPE_UBI)
100 .type = MTD_PARSER_TYPE_FIRMWARE,
/openwrt/target/linux/ar7/files/drivers/mtd/
H A Dac49xpart.c110 void gen_partname(unsigned int type, argument
116 (typenumeration[type])++;
117 if (typenumeration[type] == 1)
118 sprintf(s, "%s", partnames[type]);
120 sprintf(s, "%s%d", partnames[type], typenumeration[type]);
145 unsigned int offset, size, type; local
156 type = detect_parttype(master, parsepart);
157 gen_partname(type, typenumeration, &parsepart);
159 if (type
[all...]
/openwrt/package/libs/libnl-tiny/src/
H A Dattr.c28 * type and length field, both 16 bits, stored in the attribute header
75 * validation of netlink attributes. This data type information is
92 * indexed with the attribute type, therefore the array must be sized
96 * [ATTR_FOO] = { .type = ..., .minlen = ..., .maxlen = ... },
102 * Some basic validations are performed on every attribute, regardless of type.
103 * - If the attribute type exceeds the maximum attribute type specified or
104 * the attribute type is lesser-or-equal than zero, the attribute will
113 * This is the standard type if no type i
444 int minlen = 0, type = nla_type(nla); local
505 int type = nla_type(nla); local
[all...]
H A Dhandlers.c115 * @arg type callback to modify
122 int nl_cb_set(struct nl_cb *cb, enum nl_cb_type type, enum nl_cb_kind kind, argument
125 if (type < 0 || type > NL_CB_TYPE_MAX)
132 cb->cb_set[type] = func;
133 cb->cb_args[type] = arg;
/openwrt/scripts/
H A Dsrecimage.pl19 my ($type, $addr, $data, $len) = @_;
21 my $addrstr = sprintf $addrtypes[$type], $addr;
34 $type, $len, $addrstr, uc(unpack('H*', $data)), ~($sum & 0xFF) & 0xFF;
/openwrt/package/kernel/lantiq/ltq-deu/src/
H A Dinternal.h74 struct crypto_alg *crypto_alg_lookup(const char *name, u32 type, u32 mask);
75 struct crypto_alg *crypto_alg_mod_lookup(const char *name, u32 type, u32 mask);
83 struct crypto_larval *crypto_larval_alloc(const char *name, u32 type, u32 mask);
85 struct crypto_alg *crypto_larval_lookup(const char *name, u32 type, u32 mask);
86 void crypto_larval_error(const char *name, u32 type, u32 mask);
90 struct crypto_tfm *__crypto_alloc_tfm(struct crypto_alg *alg, u32 type,
96 u32 type, u32 mask);
98 const struct crypto_type *frontend, u32 type, u32 mask);
/openwrt/target/linux/at91/image/dfboot/src/
H A Dcom.c228 int precision, int type)
234 if (type & LEFT)
235 type &= ~ZEROPAD;
238 c = (type & ZEROPAD) ? '0' : ' ';
241 if(type & SIGN && num < 0)
258 if(!(type&(ZEROPAD+LEFT)))
265 if (!(type & LEFT))
289 int type = 0; local
297 type |= ZEROPAD;
324 number(va_arg(va, int), 10, 0, precision, type); local
227 number(int num, int base, int size, int precision, int type) argument
329 number(va_arg(va, int), 16, 0, precision, type); local
[all...]
/openwrt/toolchain/musl/include/sys/
H A Dqueue.h84 #define LIST_HEAD(name, type) \
86 struct type *lh_first; /* first element */ \
92 #define LIST_ENTRY(type) \
94 struct type *le_next; /* next element */ \
95 struct type **le_prev; /* address of previous next element */ \
150 #define SLIST_HEAD(name, type) \
152 struct type *slh_first; /* first element */ \
158 #define SLIST_ENTRY(type) \
160 struct type *sle_next; /* next element */ \
184 #define SLIST_REMOVE(head, elm, type, fiel
[all...]
/openwrt/tools/b43-tools/files/
H A Db43-fwsquash.py62 for type in types_a:
63 type = type.strip().upper()
64 if type in types_b:
/openwrt/target/linux/ar71xx/files/arch/mips/ath79/
H A Dmach-pb92.c31 .type = EV_KEY,
38 .type = EV_KEY,
H A Dmach-whr-hp-g300n.c84 .type = EV_KEY,
91 .type = EV_KEY,
98 .type = EV_KEY,
105 .type = EV_KEY,
H A Dmach-wlae-ag300n.c51 .type = EV_KEY,
58 .type = EV_KEY,
65 .type = EV_KEY,
72 .type = EV_KEY,
H A Dmach-dlan-hotspot.c52 .type = EV_KEY,
60 .type = EV_KEY,
68 .type = EV_KEY,

Completed in 92 milliseconds

1234567891011>>