Lines Matching refs:sequence
42 loadable module which creates a file called /proc/sequence. The file, when
44 sequence will continue until the user loses patience and finds something
48 dd if=/proc/sequence of=out1 count=1
49 dd if=/proc/sequence skip=1 of=out2 count=1
62 - entry = create_proc_entry("sequence", 0, NULL);
65 + entry = proc_create("sequence", 0, NULL, &ct_file_ops);
80 The /proc/sequence iterator just uses the count of the next number it
85 which will start reading at that position. For our simple sequence example,
98 holding the current position. There is no upper bound for the sequence
111 move the iterator forward to the next position in the sequence. The
114 next() function returns a new iterator, or NULL if the sequence is
297 proc_create("sequence", 0, NULL, &ct_file_ops);