Lines Matching defs:data
350 * as ->f_op->release() if you don't have private data to destroy.
562 void *data)
574 ((struct seq_file *)file->private_data)->private = data;
583 void *data, size_t size)
589 ret = single_open(file, show, data);
677 * @m: seq_file identifying the buffer to which data should be written
727 * @m: seq_file identifying the buffer to which data should be written
811 * seq_write - write arbitrary data to buffer
812 * @seq: seq_file identifying the buffer to which data should be written
813 * @data: data address
818 int seq_write(struct seq_file *seq, const void *data, size_t len)
821 memcpy(seq->buf + seq->count, data, len);
832 * @m: seq_file identifying the buffer to which data should be written