Searched refs:ff (Results 1 - 25 of 76) sorted by relevance

1234

/linux-master/sound/firewire/fireface/
H A DMakefile2 snd-fireface-objs := ff.o ff-transaction.o ff-midi.o ff-proc.o amdtp-ff.o \
3 ff-stream.o ff-pcm.o ff-hwdep.o ff-protocol-former.o \
4 ff
[all...]
H A Dff-stream.c3 * ff-stream.c - a part of driver for RME Fireface series
8 #include "ff.h"
33 static inline void finish_session(struct snd_ff *ff) argument
35 ff->spec->protocol->finish_session(ff);
36 ff->spec->protocol->switch_fetching_mode(ff, false);
39 static int init_stream(struct snd_ff *ff, struct amdtp_stream *s) argument
45 if (s == &ff->tx_stream) {
46 resources = &ff
64 destroy_stream(struct snd_ff *ff, struct amdtp_stream *s) argument
74 snd_ff_stream_init_duplex(struct snd_ff *ff) argument
101 snd_ff_stream_destroy_duplex(struct snd_ff *ff) argument
109 snd_ff_stream_reserve_duplex(struct snd_ff *ff, unsigned int rate, unsigned int frames_per_period, unsigned int frames_per_buffer) argument
168 snd_ff_stream_start_duplex(struct snd_ff *ff, unsigned int rate) argument
228 snd_ff_stream_stop_duplex(struct snd_ff *ff) argument
239 snd_ff_stream_update_duplex(struct snd_ff *ff) argument
248 snd_ff_stream_lock_changed(struct snd_ff *ff) argument
254 snd_ff_stream_lock_try(struct snd_ff *ff) argument
275 snd_ff_stream_lock_release(struct snd_ff *ff) argument
[all...]
H A Dff-hwdep.c3 * ff-hwdep.c - a part of driver for RME Fireface series
16 #include "ff.h"
18 static bool has_msg(struct snd_ff *ff) argument
20 if (ff->spec->protocol->has_msg)
21 return ff->spec->protocol->has_msg(ff);
29 struct snd_ff *ff = hwdep->private_data; local
32 spin_lock_irq(&ff->lock);
34 while (!ff->dev_lock_changed && !has_msg(ff)) {
74 struct snd_ff *ff = hwdep->private_data; local
89 hwdep_get_info(struct snd_ff *ff, void __user *arg) argument
108 hwdep_lock(struct snd_ff *ff) argument
126 hwdep_unlock(struct snd_ff *ff) argument
146 struct snd_ff *ff = hwdep->private_data; local
159 struct snd_ff *ff = hwdep->private_data; local
184 snd_ff_create_hwdep_devices(struct snd_ff *ff) argument
[all...]
H A Dff-transaction.c3 * ff-transaction.c - a part of driver for RME Fireface series
8 #include "ff.h"
10 static void finish_transmit_midi_msg(struct snd_ff *ff, unsigned int port, argument
14 READ_ONCE(ff->rx_midi_substreams[port]);
17 ff->rx_midi_error[port] = true;
23 ff->next_ktime[port] = 0;
24 schedule_work(&ff->rx_midi_work[port]);
28 snd_rawmidi_transmit_ack(substream, ff->rx_bytes[port]);
29 ff->rx_bytes[port] = 0;
32 schedule_work(&ff
39 struct snd_ff *ff = local
48 struct snd_ff *ff = local
53 transmit_midi_msg(struct snd_ff *ff, unsigned int port) argument
116 struct snd_ff *ff = container_of(work, struct snd_ff, rx_midi_work[0]); local
123 struct snd_ff *ff = container_of(work, struct snd_ff, rx_midi_work[1]); local
132 struct snd_ff *ff = callback_data; local
146 allocate_own_address(struct snd_ff *ff, int i) argument
177 snd_ff_transaction_reregister(struct snd_ff *ff) argument
194 snd_ff_transaction_register(struct snd_ff *ff) argument
220 snd_ff_transaction_unregister(struct snd_ff *ff) argument
[all...]
H A Dff-proc.c3 * ff-proc.c - a part of driver for RME Fireface series
8 #include "./ff.h"
30 struct snd_ff *ff = entry->private_data; local
32 ff->spec->protocol->dump_status(ff, buffer);
35 static void add_node(struct snd_ff *ff, struct snd_info_entry *root, argument
42 entry = snd_info_create_card_entry(ff->card, name, root);
44 snd_info_set_text_ops(entry, ff, op);
47 void snd_ff_proc_init(struct snd_ff *ff) argument
55 root = snd_info_create_card_entry(ff
[all...]
H A Dff-midi.c3 * ff-midi.c - a part of driver for RME Fireface series
8 #include "ff.h"
18 struct snd_ff *ff = substream->rmidi->private_data; local
21 ff->on_sysex[substream->number] = 0;
22 ff->rx_midi_error[substream->number] = false;
24 WRITE_ONCE(ff->rx_midi_substreams[substream->number], substream);
37 struct snd_ff *ff = substream->rmidi->private_data; local
39 cancel_work_sync(&ff->rx_midi_work[substream->number]);
40 WRITE_ONCE(ff->rx_midi_substreams[substream->number], NULL);
48 struct snd_ff *ff local
65 struct snd_ff *ff = substream->rmidi->private_data; local
87 snd_ff_create_midi_devices(struct snd_ff *ff) argument
[all...]
H A Dff-pcm.c3 * ff-pcm.c - a part of driver for RME Fireface series
8 #include "ff.h"
104 static int pcm_init_hw_params(struct snd_ff *ff, argument
114 s = &ff->tx_stream;
115 pcm_channels = ff->spec->pcm_capture_channels;
118 s = &ff->rx_stream;
119 pcm_channels = ff->spec->pcm_playback_channels;
141 struct snd_ff *ff = substream->private_data; local
142 struct amdtp_domain *d = &ff->domain;
147 err = snd_ff_stream_lock_try(ff);
220 struct snd_ff *ff = substream->private_data; local
230 struct snd_ff *ff = substream->private_data; local
251 struct snd_ff *ff = substream->private_data; local
267 struct snd_ff *ff = substream->private_data; local
284 struct snd_ff *ff = substream->private_data; local
301 struct snd_ff *ff = substream->private_data; local
319 struct snd_ff *ff = substream->private_data; local
337 struct snd_ff *ff = sbstrm->private_data; local
344 struct snd_ff *ff = sbstrm->private_data; local
351 struct snd_ff *ff = substream->private_data; local
358 struct snd_ff *ff = substream->private_data; local
363 snd_ff_create_pcm_devices(struct snd_ff *ff) argument
[all...]
H A Dff.c3 * ff.c - a part of driver for RME Fireface series
8 #include "ff.h"
16 static void name_card(struct snd_ff *ff) argument
18 struct fw_device *fw_dev = fw_parent_device(ff->unit);
28 name = names[ff->unit_version];
30 strcpy(ff->card->driver, "Fireface");
31 strcpy(ff->card->shortname, name);
32 strcpy(ff->card->mixername, name);
33 snprintf(ff->card->longname, sizeof(ff
41 struct snd_ff *ff = card->private_data; local
55 struct snd_ff *ff; local
119 struct snd_ff *ff = dev_get_drvdata(&unit->device); local
128 struct snd_ff *ff = dev_get_drvdata(&unit->device); local
[all...]
H A Dff.h3 * ff.h - a part of driver for RME Fireface series
116 bool (*has_msg)(struct snd_ff *ff);
117 long (*copy_msg_to_user)(struct snd_ff *ff, char __user *buf, long count);
118 void (*handle_msg)(struct snd_ff *ff, unsigned int offset, const __le32 *buf,
120 int (*fill_midi_msg)(struct snd_ff *ff,
123 int (*get_clock)(struct snd_ff *ff, unsigned int *rate,
125 int (*switch_fetching_mode)(struct snd_ff *ff, bool enable);
126 int (*allocate_resources)(struct snd_ff *ff, unsigned int rate);
127 int (*begin_session)(struct snd_ff *ff, unsigned int rate);
128 void (*finish_session)(struct snd_ff *ff);
[all...]
H A Dff-protocol-latter.c2 // ff-protocol-latter.c - a part of driver for RME Fireface series
8 #include "ff.h"
141 static int latter_get_clock(struct snd_ff *ff, unsigned int *rate, argument
148 err = snd_fw_transaction(ff->unit, TCODE_READ_QUADLET_REQUEST,
154 return parse_clock_bits(data, rate, src, ff->unit_version);
157 static int latter_switch_fetching_mode(struct snd_ff *ff, bool enable) argument
168 return snd_fw_transaction(ff->unit, TCODE_WRITE_QUADLET_REQUEST,
172 static int latter_allocate_resources(struct snd_ff *ff, unsigned int rate) argument
197 err = snd_fw_transaction(ff->unit, TCODE_WRITE_QUADLET_REQUEST,
208 err = latter_get_clock(ff,
248 latter_begin_session(struct snd_ff *ff, unsigned int rate) argument
303 latter_finish_session(struct snd_ff *ff) argument
312 latter_dump_status(struct snd_ff *ff, struct snd_info_buffer *buffer) argument
396 latter_handle_midi_msg(struct snd_ff *ff, unsigned int offset, const __le32 *buf, size_t length, u32 tstamp) argument
486 latter_fill_midi_msg(struct snd_ff *ff, struct snd_rawmidi_substream *substream, unsigned int port) argument
[all...]
H A Dff-protocol-former.c2 // ff-protocol-former.c - a part of driver for RME Fireface series
8 #include "ff.h"
71 static int former_get_clock(struct snd_ff *ff, unsigned int *rate, argument
78 err = snd_fw_transaction(ff->unit, TCODE_READ_QUADLET_REQUEST,
87 static int former_switch_fetching_mode(struct snd_ff *ff, bool enable) argument
96 count = max(count, ff->spec->pcm_playback_channels[i]);
114 err = snd_fw_transaction(ff->unit, TCODE_WRITE_BLOCK_REQUEST,
121 static void dump_clock_config(struct snd_ff *ff, struct snd_info_buffer *buffer) argument
130 err = snd_fw_transaction(ff->unit, TCODE_READ_BLOCK_REQUEST,
159 static void dump_sync_status(struct snd_ff *ff, struc argument
257 former_dump_status(struct snd_ff *ff, struct snd_info_buffer *buffer) argument
264 former_fill_midi_msg(struct snd_ff *ff, struct snd_rawmidi_substream *substream, unsigned int port) argument
294 allocate_tx_resources(struct snd_ff *ff) argument
335 ff800_allocate_resources(struct snd_ff *ff, unsigned int rate) argument
373 ff800_begin_session(struct snd_ff *ff, unsigned int rate) argument
392 ff800_finish_session(struct snd_ff *ff) argument
405 ff800_handle_midi_msg(struct snd_ff *ff, unsigned int offset, const __le32 *buf, size_t length, u32 tstamp) argument
439 ff400_allocate_resources(struct snd_ff *ff, unsigned int rate) argument
486 ff400_begin_session(struct snd_ff *ff, unsigned int rate) argument
528 ff400_finish_session(struct snd_ff *ff) argument
537 parse_midi_msg(struct snd_ff *ff, u32 quad, unsigned int port) argument
559 ff400_has_msg(struct snd_ff *ff) argument
648 ff400_handle_msg(struct snd_ff *ff, unsigned int offset, const __le32 *buf, size_t length, u32 tstamp) argument
678 ff400_copy_msg_to_user(struct snd_ff *ff, char __user *buf, long count) argument
[all...]
/linux-master/drivers/input/
H A Dff-core.c21 static int check_effect_access(struct ff_device *ff, int effect_id, argument
24 if (effect_id < 0 || effect_id >= ff->max_effects ||
25 !ff->effect_owners[effect_id])
28 if (file && ff->effect_owners[effect_id] != file)
48 static int compat_effect(struct ff_device *ff, struct ff_effect *effect) argument
54 if (!test_bit(FF_PERIODIC, ff->ffbit))
92 struct ff_device *ff = dev->ff; local
114 if (!test_bit(effect->type, ff->ffbit)) {
115 ret = compat_effect(ff, effec
172 struct ff_device *ff = dev->ff; local
210 struct ff_device *ff = dev->ff; local
235 struct ff_device *ff = dev->ff; local
261 struct ff_device *ff = dev->ff; local
304 struct ff_device *ff; local
364 struct ff_device *ff = dev->ff; local
[all...]
H A DMakefile9 input-core-y := input.o input-compat.o input-mt.o input-poller.o ff-core.o
12 obj-$(CONFIG_INPUT_FF_MEMLESS) += ff-memless.o
H A Dff-memless.c195 static int get_compatible_type(struct ff_device *ff, int effect_type) argument
198 if (test_bit(effect_type, ff->ffbit))
201 if (effect_type == FF_PERIODIC && test_bit(FF_RUMBLE, ff->ffbit))
352 effect_type = get_compatible_type(ml->dev->ff, effect->type);
418 struct ml_device *ml = dev->ff->private;
434 struct ml_device *ml = dev->ff->private;
465 struct ml_device *ml = dev->ff->private;
485 static void ml_ff_destroy(struct ff_device *ff) argument
487 struct ml_device *ml = ff->private;
511 struct ff_device *ff; local
[all...]
/linux-master/fs/fuse/
H A Diomode.c30 int fuse_file_cached_io_open(struct inode *inode, struct fuse_file *ff) argument
35 if (!ff->args)
60 WARN_ON(ff->iomode == IOM_UNCACHED);
61 if (ff->iomode == IOM_NONE) {
62 ff->iomode = IOM_CACHED;
71 static void fuse_file_cached_io_release(struct fuse_file *ff, argument
76 WARN_ON(ff->iomode != IOM_CACHED);
77 ff->iomode = IOM_NONE;
117 struct fuse_file *ff,
127 WARN_ON(ff
116 fuse_file_uncached_io_open(struct inode *inode, struct fuse_file *ff, struct fuse_backing *fb) argument
149 fuse_file_uncached_io_release(struct fuse_file *ff, struct fuse_inode *fi) argument
170 struct fuse_file *ff = file->private_data; local
199 struct fuse_file *ff = file->private_data; local
257 fuse_file_io_release(struct fuse_file *ff, struct inode *inode) argument
[all...]
H A Dpassthrough.c31 struct fuse_file *ff = file->private_data; local
32 struct file *backing_file = fuse_file_passthrough(ff);
36 .cred = ff->cred,
59 struct fuse_file *ff = file->private_data; local
60 struct file *backing_file = fuse_file_passthrough(ff);
64 .cred = ff->cred,
87 struct fuse_file *ff = in->private_data; local
88 struct file *backing_file = fuse_file_passthrough(ff);
90 .cred = ff->cred,
106 struct fuse_file *ff local
129 struct fuse_file *ff = file->private_data; local
308 struct fuse_file *ff = file->private_data; local
346 fuse_passthrough_release(struct fuse_file *ff, struct fuse_backing *fb) argument
[all...]
H A Dioctl.c170 struct fuse_file *ff = file->private_data; local
171 struct fuse_mount *fm = ff->fm;
173 .fh = ff->fh,
257 ap.args.nodeid = ff->nodeid;
377 static int fuse_priv_ioctl(struct inode *inode, struct fuse_file *ff, argument
380 struct fuse_mount *fm = ff->fm;
387 inarg.fh = ff->fh;
402 args.nodeid = ff->nodeid;
439 static void fuse_priv_ioctl_cleanup(struct inode *inode, struct fuse_file *ff) argument
441 fuse_file_release(inode, ff, O_RDONL
447 struct fuse_file *ff; local
485 struct fuse_file *ff; local
[all...]
H A Dfile.c56 struct fuse_file *ff; local
58 ff = kzalloc(sizeof(struct fuse_file), GFP_KERNEL_ACCOUNT);
59 if (unlikely(!ff))
62 ff->fm = fm;
64 ff->args = kzalloc(sizeof(*ff->args), GFP_KERNEL_ACCOUNT);
65 if (!ff->args) {
66 kfree(ff);
71 INIT_LIST_HEAD(&ff->write_entry);
72 refcount_set(&ff
81 fuse_file_free(struct fuse_file *ff) argument
87 fuse_file_get(struct fuse_file *ff) argument
102 fuse_file_put(struct fuse_file *ff, bool sync) argument
130 struct fuse_file *ff; local
175 struct fuse_file *ff = fuse_file_open(fm, nodeid, file->f_flags, isdir); local
188 struct fuse_file *ff = file->private_data; local
201 struct fuse_file *ff = file->private_data; local
238 struct fuse_file *ff; local
291 fuse_prepare_release(struct fuse_inode *fi, struct fuse_file *ff, unsigned int flags, int opcode, bool sync) argument
336 fuse_file_release(struct inode *inode, struct fuse_file *ff, unsigned int open_flags, fl_owner_t id, bool isdir) argument
385 fuse_sync_release(struct fuse_inode *fi, struct fuse_file *ff, unsigned int flags) argument
505 struct fuse_file *ff = file->private_data; local
563 struct fuse_file *ff = file->private_data; local
631 struct fuse_file *ff = file->private_data; local
805 struct fuse_file *ff = file->private_data; local
955 struct fuse_file *ff = file->private_data; local
1054 fuse_write_args_fill(struct fuse_io_args *ia, struct fuse_file *ff, loff_t pos, size_t count) argument
1093 struct fuse_file *ff = file->private_data; local
1140 struct fuse_file *ff = file->private_data; local
1335 struct fuse_file *ff = file->private_data; local
1540 struct fuse_file *ff = file->private_data; local
1694 struct fuse_file *ff = file->private_data; local
1715 struct fuse_file *ff = file->private_data; local
1737 struct fuse_file *ff = in->private_data; local
1749 struct fuse_file *ff = out->private_data; local
1973 struct fuse_file *ff; local
1987 struct fuse_file *ff = __fuse_write_file_get(fi); local
1995 struct fuse_file *ff; local
2116 struct fuse_file *ff; member in struct:fuse_fill_wb_data
2535 struct fuse_file *ff = file->private_data; local
2632 struct fuse_file *ff = file->private_data; local
2728 struct fuse_file *ff = file->private_data; local
2772 struct fuse_file *ff = file->private_data; local
2855 struct fuse_file *ff; local
2879 fuse_register_polled_file(struct fuse_conn *fc, struct fuse_file *ff) argument
2896 struct fuse_file *ff = file->private_data; local
2952 struct fuse_file *ff; local
2987 struct fuse_file *ff = file->private_data; local
3090 struct fuse_file *ff = file->private_data; local
[all...]
H A Dreaddir.c117 struct fuse_file *ff = file->private_data; local
119 if (ff->open_flags & FOPEN_CACHE_DIR)
365 struct fuse_file *ff = file->private_data; local
367 if (ff->open_flags & FOPEN_CACHE_DIR)
390 static enum fuse_parse_result fuse_parse_cache(struct fuse_file *ff, argument
394 unsigned int offset = ff->readdir.cache_off & ~PAGE_MASK;
416 if (ff->readdir.pos == ctx->pos) {
423 ff->readdir.pos = dirent->off;
424 ff->readdir.cache_off += reclen;
446 struct fuse_file *ff local
588 struct fuse_file *ff = file->private_data; local
[all...]
/linux-master/tools/perf/util/
H A Dheader.c101 static int __do_write_fd(struct feat_fd *ff, const void *buf, size_t size) argument
103 ssize_t ret = writen(ff->fd, buf, size);
110 static int __do_write_buf(struct feat_fd *ff, const void *buf, size_t size) argument
114 size_t new_size = ff->size;
117 if (size + ff->offset > max_size)
120 while (size > (new_size - ff->offset))
124 if (ff->size < new_size) {
125 addr = realloc(ff->buf, new_size);
128 ff->buf = addr;
129 ff
139 do_write(struct feat_fd *ff, const void *buf, size_t size) argument
147 do_write_bitmap(struct feat_fd *ff, unsigned long *set, u64 size) argument
166 write_padded(struct feat_fd *ff, const void *bf, size_t count, size_t count_aligned) argument
182 do_write_string(struct feat_fd *ff, const char *str) argument
198 __do_read_fd(struct feat_fd *ff, void *addr, ssize_t size) argument
207 __do_read_buf(struct feat_fd *ff, void *addr, ssize_t size) argument
219 __do_read(struct feat_fd *ff, void *addr, ssize_t size) argument
226 do_read_u32(struct feat_fd *ff, u32 *addr) argument
239 do_read_u64(struct feat_fd *ff, u64 *addr) argument
252 do_read_string(struct feat_fd *ff) argument
278 do_read_bitmap(struct feat_fd *ff, unsigned long **pset, u64 *psize) argument
308 write_tracing_data(struct feat_fd *ff, struct evlist *evlist) argument
318 write_build_id(struct feat_fd *ff, struct evlist *evlist __maybe_unused) argument
342 write_hostname(struct feat_fd *ff, struct evlist *evlist __maybe_unused) argument
355 write_osrelease(struct feat_fd *ff, struct evlist *evlist __maybe_unused) argument
368 write_arch(struct feat_fd *ff, struct evlist *evlist __maybe_unused) argument
381 write_version(struct feat_fd *ff, struct evlist *evlist __maybe_unused) argument
387 __write_cpudesc(struct feat_fd *ff, const char *cpuinfo_proc) argument
442 write_cpudesc(struct feat_fd *ff, struct evlist *evlist __maybe_unused) argument
478 write_nrcpus(struct feat_fd *ff, struct evlist *evlist __maybe_unused) argument
500 write_event_desc(struct feat_fd *ff, struct evlist *evlist) argument
556 write_cmdline(struct feat_fd *ff, struct evlist *evlist __maybe_unused) argument
585 write_cpu_topology(struct feat_fd *ff, struct evlist *evlist __maybe_unused) argument
657 write_total_mem(struct feat_fd *ff, struct evlist *evlist __maybe_unused) argument
686 write_numa_topology(struct feat_fd *ff, struct evlist *evlist __maybe_unused) argument
740 write_pmu_mappings(struct feat_fd *ff, struct evlist *evlist __maybe_unused) argument
783 write_group_desc(struct feat_fd *ff, struct evlist *evlist) argument
864 write_cpuid(struct feat_fd *ff, struct evlist *evlist __maybe_unused) argument
883 write_auxtrace(struct feat_fd *ff, struct evlist *evlist __maybe_unused) argument
900 write_clockid(struct feat_fd *ff, struct evlist *evlist __maybe_unused) argument
907 write_clock_data(struct feat_fd *ff, struct evlist *evlist __maybe_unused) argument
941 write_hybrid_topology(struct feat_fd *ff, struct evlist *evlist __maybe_unused) argument
975 write_dir_format(struct feat_fd *ff, struct evlist *evlist __maybe_unused) argument
1042 write_bpf_prog_info(struct feat_fd *ff, struct evlist *evlist __maybe_unused) argument
1084 write_bpf_btf(struct feat_fd *ff, struct evlist *evlist __maybe_unused) argument
1266 write_cache(struct feat_fd *ff, struct evlist *evlist __maybe_unused) argument
1325 write_sample_time(struct feat_fd *ff, struct evlist *evlist) argument
1553 __write_pmu_caps(struct feat_fd *ff, struct perf_pmu *pmu, bool write_pmu) argument
1582 write_cpu_pmu_caps(struct feat_fd *ff, struct evlist *evlist __maybe_unused) argument
1598 write_pmu_caps(struct feat_fd *ff, struct evlist *evlist __maybe_unused) argument
1645 print_hostname(struct feat_fd *ff, FILE *fp) argument
1650 print_osrelease(struct feat_fd *ff, FILE *fp) argument
1655 print_arch(struct feat_fd *ff, FILE *fp) argument
1660 print_cpudesc(struct feat_fd *ff, FILE *fp) argument
1665 print_nrcpus(struct feat_fd *ff, FILE *fp) argument
1671 print_version(struct feat_fd *ff, FILE *fp) argument
1676 print_cmdline(struct feat_fd *ff, FILE *fp) argument
1705 print_cpu_topology(struct feat_fd *ff, FILE *fp) argument
1762 print_clockid(struct feat_fd *ff, FILE *fp) argument
1768 print_clock_data(struct feat_fd *ff, FILE *fp) argument
1811 print_hybrid_topology(struct feat_fd *ff, FILE *fp) argument
1823 print_dir_format(struct feat_fd *ff, FILE *fp) argument
1835 print_bpf_prog_info(struct feat_fd *ff, FILE *fp) argument
1859 print_bpf_btf(struct feat_fd *ff, FILE *fp) argument
1931 read_event_desc(struct feat_fd *ff) argument
2018 print_event_desc(struct feat_fd *ff, FILE *fp) argument
2056 print_total_mem(struct feat_fd *ff, FILE *fp) argument
2061 print_numa_topology(struct feat_fd *ff, FILE *fp) argument
2078 print_cpuid(struct feat_fd *ff, FILE *fp) argument
2098 print_cache(struct feat_fd *ff, FILE *fp __maybe_unused) argument
2109 print_compressed(struct feat_fd *ff, FILE *fp) argument
2135 print_cpu_pmu_caps(struct feat_fd *ff, FILE *fp) argument
2141 print_pmu_caps(struct feat_fd *ff, FILE *fp) argument
2160 print_pmu_mappings(struct feat_fd *ff, FILE *fp) argument
2196 print_group_desc(struct feat_fd *ff, FILE *fp) argument
2218 print_sample_time(struct feat_fd *ff, FILE *fp) argument
2253 print_mem_topology(struct feat_fd *ff, FILE *fp) argument
2446 process_tracing_data(struct feat_fd *ff, void *data) argument
2454 process_build_id(struct feat_fd *ff, void *data __maybe_unused) argument
2461 process_nrcpus(struct feat_fd *ff, void *data __maybe_unused) argument
2478 process_total_mem(struct feat_fd *ff, void *data __maybe_unused) argument
2520 process_event_desc(struct feat_fd *ff, void *data __maybe_unused) argument
2545 process_cmdline(struct feat_fd *ff, void *data __maybe_unused) argument
2583 process_cpu_topology(struct feat_fd *ff, void *data __maybe_unused) argument
2718 process_numa_topology(struct feat_fd *ff, void *data __maybe_unused) argument
2763 process_pmu_mappings(struct feat_fd *ff, void *data __maybe_unused) argument
2810 process_group_desc(struct feat_fd *ff, void *data __maybe_unused) argument
2893 process_auxtrace(struct feat_fd *ff, void *data __maybe_unused) argument
2907 process_cache(struct feat_fd *ff, void *data __maybe_unused) argument
2962 process_sample_time(struct feat_fd *ff, void *data __maybe_unused) argument
2983 process_mem_topology(struct feat_fd *ff, void *data __maybe_unused) argument
3035 process_clockid(struct feat_fd *ff, void *data __maybe_unused) argument
3044 process_clock_data(struct feat_fd *ff, void *_data __maybe_unused) argument
3078 process_hybrid_topology(struct feat_fd *ff, void *data __maybe_unused) argument
3118 process_dir_format(struct feat_fd *ff, void *_data __maybe_unused) argument
3134 process_bpf_prog_info(struct feat_fd *ff, void *data __maybe_unused) argument
3203 process_bpf_btf(struct feat_fd *ff, void *data __maybe_unused) argument
3250 process_compressed(struct feat_fd *ff, void *data __maybe_unused) argument
3271 __process_pmu_caps(struct feat_fd *ff, int *nr_caps, char ***caps, unsigned int *max_branches, unsigned int *br_cntr_nr, unsigned int *br_cntr_width) argument
3334 process_cpu_pmu_caps(struct feat_fd *ff, void *data __maybe_unused) argument
3348 process_pmu_caps(struct feat_fd *ff, void *data __maybe_unused) argument
3480 struct feat_fd ff; local
3550 struct feat_fd *ff; member in struct:header_fw
3560 do_write_feat(struct feat_fd *ff, int type, struct perf_file_section **p, struct evlist *evlist, struct feat_copier *fc) argument
3613 struct feat_fd ff = { local
3657 struct feat_fd ff = { local
3685 struct feat_fd ff = { local
4072 struct feat_fd ff = { local
4330 struct feat_fd ff = { .fd = 0 }; local
[all...]
/linux-master/drivers/input/joystick/iforce/
H A DMakefile9 iforce-y := iforce-ff.o iforce-main.o iforce-packets.o
H A Diforce-main.c192 for (i = 0; i < dev->ff->max_effects; i++) {
215 struct ff_device *ff; local
372 for (i = 0; iforce->type->ff[i] >= 0; i++)
373 set_bit(iforce->type->ff[i], input_dev->ffbit);
379 ff = input_dev->ff;
380 ff->upload = iforce_upload_effect;
381 ff->erase = iforce_erase_effect;
382 ff->set_gain = iforce_set_gain;
383 ff
[all...]
/linux-master/samples/bpf/
H A Dtest_cls_bpf.sh6 -m 90:e2:ba:ff:ff:ff -d 192.168.0.1 -t 4
/linux-master/drivers/clk/pistachio/
H A Dclk.c108 struct pistachio_fixed_factor *ff,
115 clk = clk_register_fixed_factor(NULL, ff[i].name, ff[i].parent,
116 0, 1, ff[i].div);
117 p->clk_data.clks[ff[i].id] = clk;
107 pistachio_clk_register_fixed_factor(struct pistachio_clk_provider *p, struct pistachio_fixed_factor *ff, unsigned int num) argument
/linux-master/drivers/clk/mediatek/
H A Dclk-mtk.c162 const struct mtk_fixed_factor *ff = &clks[i]; local
164 if (!IS_ERR_OR_NULL(clk_data->hws[ff->id])) {
165 pr_warn("Trying to register duplicate clock ID: %d\n", ff->id);
169 hw = clk_hw_register_fixed_factor(NULL, ff->name, ff->parent_name,
170 ff->flags, ff->mult, ff->div);
173 pr_err("Failed to register clk %s: %pe\n", ff->name,
178 clk_data->hws[ff
185 const struct mtk_fixed_factor *ff = &clks[i]; local
207 const struct mtk_fixed_factor *ff = &clks[i - 1]; local
[all...]

Completed in 248 milliseconds

1234