Lines Matching refs:which

17 however. It is not that hard to make a virtual file which returns a
26 which are designed to make it easy for virtual file creators to get it
32 * An iterator interface which lets a virtual file implementation
38 * A set of canned file_operations which implement most operations on
42 loadable module which creates a file called /proc/sequence. The file, when
59 Note that the above article uses create_proc_entry which was removed in
76 generator of the data, which need not be aware of how a position translates
85 which will start reading at that position. For our simple sequence example,
104 structure can be used. There is also a special value which can be returned
145 passed back to user space. This function can also return SEQ_SKIP, which
180 been defined which make this task easy.
182 Most code will simply use seq_printf(), which works pretty much like
183 printk(), but which requires the seq_file pointer as an argument.
193 which is in the string esc will be represented in octal form in the output.
203 which should be escaped in the output. A call to seq_path() will output
219 So far, we have a nice set of functions which can produce output within the
222 creation of a set of file_operations which implement the operations on that
223 file. The seq_file interface provides a set of canned operations which do
253 There is also a variant function, __seq_open_private(), which is functionally
272 A corresponding close function, seq_release_private() is available which
287 There is also a seq_release_private() which passes the contents of the
326 module can define only the show() function, which should create all the