Lines Matching defs:data
350 * as ->f_op->release() if you don't have private data to destroy.
362 * seq_escape_mem - print data into buffer, escaping some characters
369 * Puts data into buffer, replacing each occurrence of character from
573 void *data)
585 ((struct seq_file *)file->private_data)->private = data;
594 void *data, size_t size)
600 ret = single_open(file, show, data);
689 * @m: seq_file identifying the buffer to which data should be written
739 * @m: seq_file identifying the buffer to which data should be written
823 * seq_write - write arbitrary data to buffer
824 * @seq: seq_file identifying the buffer to which data should be written
825 * @data: data address
830 int seq_write(struct seq_file *seq, const void *data, size_t len)
833 memcpy(seq->buf + seq->count, data, len);
844 * @m: seq_file identifying the buffer to which data should be written