Home
last modified time | relevance | path

Searched refs:type (Results 1 – 25 of 5006) sorted by relevance

12345678910>>...201

/linux-2.6.39/sound/usb/
Dquirks-table.h167 .type = QUIRK_MIDI_YAMAHA \
176 .type = QUIRK_MIDI_YAMAHA \
295 .type = QUIRK_COMPOSITE,
299 .type = QUIRK_AUDIO_FIXED_ENDPOINT,
316 .type = QUIRK_AUDIO_FIXED_ENDPOINT,
333 .type = QUIRK_MIDI_FIXED_ENDPOINT,
351 .type = QUIRK_COMPOSITE,
355 .type = QUIRK_IGNORE_INTERFACE
359 .type = QUIRK_IGNORE_INTERFACE
363 .type = QUIRK_MIDI_FIXED_ENDPOINT,
[all …]
/linux-2.6.39/include/linux/
Dpercpu-defs.h61 #define DECLARE_PER_CPU_SECTION(type, name, sec) \ argument
63 extern __PCPU_ATTRS(sec) __typeof__(type) name
65 #define DEFINE_PER_CPU_SECTION(type, name, sec) \ argument
70 __typeof__(type) name
75 #define DECLARE_PER_CPU_SECTION(type, name, sec) \ argument
76 extern __PCPU_ATTRS(sec) __typeof__(type) name
78 #define DEFINE_PER_CPU_SECTION(type, name, sec) \ argument
80 __typeof__(type) name
87 #define DECLARE_PER_CPU(type, name) \ argument
88 DECLARE_PER_CPU_SECTION(type, name, "")
[all …]
Dquotaops.h47 struct dquot *dqget(struct super_block *sb, unsigned int id, int type);
52 struct dquot *dquot_alloc(struct super_block *sb, int type);
63 int dquot_disable(struct super_block *sb, int type, unsigned int flags);
65 static inline int dquot_suspend(struct super_block *sb, int type) in dquot_suspend() argument
67 return dquot_disable(sb, type, DQUOT_SUSPENDED); in dquot_suspend()
69 int dquot_resume(struct super_block *sb, int type);
74 int dquot_commit_info(struct super_block *sb, int type);
79 int dquot_enable(struct inode *inode, int type, int format_id,
81 int dquot_quota_on(struct super_block *sb, int type, int format_id,
84 int format_id, int type);
[all …]
Dauto_fs4.h38 static inline void set_autofs_type_indirect(unsigned int *type) in set_autofs_type_indirect() argument
40 *type = AUTOFS_TYPE_INDIRECT; in set_autofs_type_indirect()
44 static inline unsigned int autofs_type_indirect(unsigned int type) in autofs_type_indirect() argument
46 return (type == AUTOFS_TYPE_INDIRECT); in autofs_type_indirect()
49 static inline void set_autofs_type_direct(unsigned int *type) in set_autofs_type_direct() argument
51 *type = AUTOFS_TYPE_DIRECT; in set_autofs_type_direct()
55 static inline unsigned int autofs_type_direct(unsigned int type) in autofs_type_direct() argument
57 return (type == AUTOFS_TYPE_DIRECT); in autofs_type_direct()
60 static inline void set_autofs_type_offset(unsigned int *type) in set_autofs_type_offset() argument
62 *type = AUTOFS_TYPE_OFFSET; in set_autofs_type_offset()
[all …]
/linux-2.6.39/net/ieee802154/
Dnl_policy.c28 [IEEE802154_ATTR_DEV_NAME] = { .type = NLA_STRING, },
29 [IEEE802154_ATTR_DEV_INDEX] = { .type = NLA_U32, },
30 [IEEE802154_ATTR_PHY_NAME] = { .type = NLA_STRING, },
32 [IEEE802154_ATTR_STATUS] = { .type = NLA_U8, },
33 [IEEE802154_ATTR_SHORT_ADDR] = { .type = NLA_U16, },
34 [IEEE802154_ATTR_HW_ADDR] = { .type = NLA_HW_ADDR, },
35 [IEEE802154_ATTR_PAN_ID] = { .type = NLA_U16, },
36 [IEEE802154_ATTR_CHANNEL] = { .type = NLA_U8, },
37 [IEEE802154_ATTR_PAGE] = { .type = NLA_U8, },
38 [IEEE802154_ATTR_COORD_SHORT_ADDR] = { .type = NLA_U16, },
[all …]
/linux-2.6.39/scripts/kconfig/
Dexpr.c19 e->type = E_SYMBOL; in expr_alloc_symbol()
24 struct expr *expr_alloc_one(enum expr_type type, struct expr *ce) in expr_alloc_one() argument
28 e->type = type; in expr_alloc_one()
33 struct expr *expr_alloc_two(enum expr_type type, struct expr *e1, struct expr *e2) in expr_alloc_two() argument
37 e->type = type; in expr_alloc_two()
43 struct expr *expr_alloc_comp(enum expr_type type, struct symbol *s1, struct symbol *s2) in expr_alloc_comp() argument
47 e->type = type; in expr_alloc_comp()
76 switch (org->type) { in expr_copy()
95 printf("can't copy type %d\n", e->type); in expr_copy()
109 switch (e->type) { in expr_free()
[all …]
/linux-2.6.39/drivers/md/
Ddm-exception-store.c23 struct dm_exception_store_type *type; in __find_exception_store_type() local
25 list_for_each_entry(type, &_exception_store_types, list) in __find_exception_store_type()
26 if (!strcmp(name, type->name)) in __find_exception_store_type()
27 return type; in __find_exception_store_type()
34 struct dm_exception_store_type *type; in _get_exception_store_type() local
38 type = __find_exception_store_type(name); in _get_exception_store_type()
40 if (type && !try_module_get(type->module)) in _get_exception_store_type()
41 type = NULL; in _get_exception_store_type()
45 return type; in _get_exception_store_type()
74 struct dm_exception_store_type *type; in get_type() local
[all …]
/linux-2.6.39/kernel/trace/
Dtrace_export.c23 #define __field_struct(type, item) argument
26 #define __field(type, item) type item; argument
29 #define __field_desc(type, container, item) type item; argument
32 #define __array(type, item, size) type item[size]; argument
35 #define __array_desc(type, container, item, size) type item[size]; argument
38 #define __dynamic_array(type, item) type item[]; argument
66 #define __field(type, item) \ argument
67 ret = trace_define_field(event_call, #type, #item, \
70 is_signed_type(type), FILTER_OTHER); \
75 #define __field_desc(type, container, item) \ argument
[all …]
/linux-2.6.39/arch/arm/mach-at91/
Dat91cap9.c36 .type = MT_DEVICE,
41 .type = MT_DEVICE,
55 .type = CLK_TYPE_PERIPHERAL,
60 .type = CLK_TYPE_PERIPHERAL,
65 .type = CLK_TYPE_PERIPHERAL,
70 .type = CLK_TYPE_PERIPHERAL,
75 .type = CLK_TYPE_PERIPHERAL,
80 .type = CLK_TYPE_PERIPHERAL,
85 .type = CLK_TYPE_PERIPHERAL,
90 .type = CLK_TYPE_PERIPHERAL,
[all …]
Dat572d940hf.c42 .type = MT_DEVICE,
47 .type = MT_DEVICE,
61 .type = CLK_TYPE_PERIPHERAL,
66 .type = CLK_TYPE_PERIPHERAL,
71 .type = CLK_TYPE_PERIPHERAL,
76 .type = CLK_TYPE_PERIPHERAL,
81 .type = CLK_TYPE_PERIPHERAL,
86 .type = CLK_TYPE_PERIPHERAL,
91 .type = CLK_TYPE_PERIPHERAL,
96 .type = CLK_TYPE_PERIPHERAL,
[all …]
Dat91sam9g45.c33 .type = MT_DEVICE,
38 .type = MT_DEVICE,
52 .type = CLK_TYPE_PERIPHERAL,
57 .type = CLK_TYPE_PERIPHERAL,
62 .type = CLK_TYPE_PERIPHERAL,
67 .type = CLK_TYPE_PERIPHERAL,
72 .type = CLK_TYPE_PERIPHERAL,
77 .type = CLK_TYPE_PERIPHERAL,
82 .type = CLK_TYPE_PERIPHERAL,
87 .type = CLK_TYPE_PERIPHERAL,
[all …]
Dat91rm9200.c30 .type = MT_DEVICE,
35 .type = MT_DEVICE,
40 .type = MT_DEVICE,
54 .type = CLK_TYPE_PERIPHERAL,
59 .type = CLK_TYPE_PERIPHERAL,
64 .type = CLK_TYPE_PERIPHERAL,
69 .type = CLK_TYPE_PERIPHERAL,
74 .type = CLK_TYPE_PERIPHERAL,
79 .type = CLK_TYPE_PERIPHERAL,
84 .type = CLK_TYPE_PERIPHERAL,
[all …]
Dat91sam9260.c33 .type = MT_DEVICE,
42 .type = MT_DEVICE,
47 .type = MT_DEVICE,
56 .type = MT_DEVICE,
61 .type = MT_DEVICE,
68 .type = MT_DEVICE,
82 .type = CLK_TYPE_PERIPHERAL,
87 .type = CLK_TYPE_PERIPHERAL,
92 .type = CLK_TYPE_PERIPHERAL,
97 .type = CLK_TYPE_PERIPHERAL,
[all …]
Dat91sam9263.c32 .type = MT_DEVICE,
37 .type = MT_DEVICE,
42 .type = MT_DEVICE,
56 .type = CLK_TYPE_PERIPHERAL,
61 .type = CLK_TYPE_PERIPHERAL,
66 .type = CLK_TYPE_PERIPHERAL,
71 .type = CLK_TYPE_PERIPHERAL,
76 .type = CLK_TYPE_PERIPHERAL,
81 .type = CLK_TYPE_PERIPHERAL,
86 .type = CLK_TYPE_PERIPHERAL,
[all …]
Dat91sam9261.c33 .type = MT_DEVICE,
42 .type = MT_DEVICE,
51 .type = MT_DEVICE,
65 .type = CLK_TYPE_PERIPHERAL,
70 .type = CLK_TYPE_PERIPHERAL,
75 .type = CLK_TYPE_PERIPHERAL,
80 .type = CLK_TYPE_PERIPHERAL,
85 .type = CLK_TYPE_PERIPHERAL,
90 .type = CLK_TYPE_PERIPHERAL,
95 .type = CLK_TYPE_PERIPHERAL,
[all …]
Dat91sam9rl.c32 .type = MT_DEVICE,
39 .type = MT_DEVICE,
53 .type = CLK_TYPE_PERIPHERAL,
58 .type = CLK_TYPE_PERIPHERAL,
63 .type = CLK_TYPE_PERIPHERAL,
68 .type = CLK_TYPE_PERIPHERAL,
73 .type = CLK_TYPE_PERIPHERAL,
78 .type = CLK_TYPE_PERIPHERAL,
83 .type = CLK_TYPE_PERIPHERAL,
88 .type = CLK_TYPE_PERIPHERAL,
[all …]
/linux-2.6.39/drivers/media/common/tuners/
Dtuner-xc2028.c62 unsigned int type; member
70 unsigned int type; member
159 static void dump_firm_type_and_int_freq(unsigned int type, u16 int_freq) in dump_firm_type_and_int_freq() argument
161 if (type & BASE) in dump_firm_type_and_int_freq()
163 if (type & INIT1) in dump_firm_type_and_int_freq()
165 if (type & F8MHZ) in dump_firm_type_and_int_freq()
167 if (type & MTS) in dump_firm_type_and_int_freq()
169 if (type & D2620) in dump_firm_type_and_int_freq()
171 if (type & D2633) in dump_firm_type_and_int_freq()
173 if (type & DTV6) in dump_firm_type_and_int_freq()
[all …]
/linux-2.6.39/drivers/media/video/cx88/
Dcx88-cards.c76 .type = CX88_VMUX_COMPOSITE1,
79 .type = CX88_VMUX_COMPOSITE2,
82 .type = CX88_VMUX_COMPOSITE3,
85 .type = CX88_VMUX_COMPOSITE4,
97 .type = CX88_VMUX_TELEVISION,
101 .type = CX88_VMUX_DEBUG,
105 .type = CX88_VMUX_COMPOSITE1,
109 .type = CX88_VMUX_SVIDEO,
114 .type = CX88_RADIO,
125 .type = CX88_VMUX_TELEVISION,
[all …]
/linux-2.6.39/arch/cris/include/arch-v32/arch/
Dunistd.h9 #define _syscall0(type,name) \ argument
10 type name(void) \
22 return (type) __a; \
24 return (type) -1; \
27 #define _syscall1(type,name,type1,arg1) \ argument
28 type name(type1 arg1) \
40 return (type) __a; \
42 return (type) -1; \
45 #define _syscall2(type,name,type1,arg1,type2,arg2) \ argument
46 type name(type1 arg1,type2 arg2) \
[all …]
/linux-2.6.39/arch/cris/include/arch-v10/arch/
Dunistd.h9 #define _syscall0(type,name) \ argument
10 type name(void) \
21 return (type) __a; \
23 return (type) -1; \
26 #define _syscall1(type,name,type1,arg1) \ argument
27 type name(type1 arg1) \
38 return (type) __a; \
40 return (type) -1; \
43 #define _syscall2(type,name,type1,arg1,type2,arg2) \ argument
44 type name(type1 arg1,type2 arg2) \
[all …]
/linux-2.6.39/sound/synth/emux/
Demux_effect.c33 #define xoffsetof(type,tag) ((long)(&((type)NULL)->tag) - (long)(NULL)) argument
52 int type; /* byte or word */ member
100 effect_set_byte(unsigned char *valp, struct snd_midi_channel *chan, int type) in effect_set_byte() argument
105 effect = fx->val[type]; in effect_set_byte()
106 if (fx->flag[type] == EMUX_FX_FLAG_ADD) { in effect_set_byte()
107 if (parm_defs[type].type & PARM_IS_SIGNED) in effect_set_byte()
112 if (effect < parm_defs[type].low) in effect_set_byte()
113 effect = parm_defs[type].low; in effect_set_byte()
114 else if (effect > parm_defs[type].high) in effect_set_byte()
115 effect = parm_defs[type].high; in effect_set_byte()
[all …]
/linux-2.6.39/security/tomoyo/
Dmount.c38 const char *type = r->param.mount.type->name; in tomoyo_audit_mount_log() local
42 if (!strcmp(type, TOMOYO_MOUNT_REMOUNT_KEYWORD)) in tomoyo_audit_mount_log()
44 else if (!strcmp(type, TOMOYO_MOUNT_BIND_KEYWORD) in tomoyo_audit_mount_log()
45 || !strcmp(type, TOMOYO_MOUNT_MOVE_KEYWORD)) in tomoyo_audit_mount_log()
46 tomoyo_warn_log(r, "mount %s %s %s 0x%lX", type, dev, dir, in tomoyo_audit_mount_log()
48 else if (!strcmp(type, TOMOYO_MOUNT_MAKE_UNBINDABLE_KEYWORD) || in tomoyo_audit_mount_log()
49 !strcmp(type, TOMOYO_MOUNT_MAKE_PRIVATE_KEYWORD) || in tomoyo_audit_mount_log()
50 !strcmp(type, TOMOYO_MOUNT_MAKE_SLAVE_KEYWORD) || in tomoyo_audit_mount_log()
51 !strcmp(type, TOMOYO_MOUNT_MAKE_SHARED_KEYWORD)) in tomoyo_audit_mount_log()
52 tomoyo_warn_log(r, "mount %s %s 0x%lX", type, dir, flags); in tomoyo_audit_mount_log()
[all …]
/linux-2.6.39/crypto/
Daf_alg.c26 const struct af_alg_type *type; member
44 const struct af_alg_type *type = ERR_PTR(-ENOENT); in alg_get_type() local
49 if (strcmp(node->type->name, name)) in alg_get_type()
52 if (try_module_get(node->type->owner)) in alg_get_type()
53 type = node->type; in alg_get_type()
58 return type; in alg_get_type()
61 int af_alg_register_type(const struct af_alg_type *type) in af_alg_register_type() argument
68 if (!strcmp(node->type->name, type->name)) in af_alg_register_type()
77 type->ops->owner = THIS_MODULE; in af_alg_register_type()
78 node->type = type; in af_alg_register_type()
[all …]
/linux-2.6.39/tools/perf/util/
Dtrace-event-parse.c371 static int event_item_type(enum event_type type) in event_item_type() argument
373 switch (type) { in event_item_type()
387 switch (arg->type) { in free_arg()
444 enum event_type type; in __read_token() local
453 type = get_type(ch); in __read_token()
454 if (type == EVENT_NONE) in __read_token()
455 return type; in __read_token()
459 switch (type) { in __read_token()
465 return type; in __read_token()
502 return type; in __read_token()
[all …]
/linux-2.6.39/arch/powerpc/math-emu/
Dmath.c223 int type = 0; in do_mathemu() local
272 case LFS: func = lfs; type = D; break; in do_mathemu()
273 case LFSU: func = lfs; type = DU; break; in do_mathemu()
274 case LFD: func = lfd; type = D; break; in do_mathemu()
275 case LFDU: func = lfd; type = DU; break; in do_mathemu()
276 case STFS: func = stfs; type = D; break; in do_mathemu()
277 case STFSU: func = stfs; type = DU; break; in do_mathemu()
278 case STFD: func = stfd; type = D; break; in do_mathemu()
279 case STFDU: func = stfd; type = DU; break; in do_mathemu()
283 case LFSX: func = lfs; type = XE; break; in do_mathemu()
[all …]

12345678910>>...201