HomeSort by relevance Sort by last modified time
    Searched defs:seq_file (Results 1 - 2 of 2) sorted by null

  /external/kernel-headers/original/linux/
seq_file.h 15 struct seq_file { struct
28 void * (*start) (struct seq_file *m, loff_t *pos);
29 void (*stop) (struct seq_file *m, void *v);
30 void * (*next) (struct seq_file *m, void *v, loff_t *pos);
31 int (*show) (struct seq_file *m, void *v);
38 int seq_escape(struct seq_file *, const char *, const char *);
39 int seq_putc(struct seq_file *m, char c);
40 int seq_puts(struct seq_file *m, const char *s);
42 int seq_printf(struct seq_file *, const char *, ...)
45 int seq_path(struct seq_file *, struct vfsmount *, struct dentry *, char *)
    [all...]
  /external/chromium_org/third_party/leveldatabase/src/helpers/memenv/
memenv_test.cc 71 SequentialFile* seq_file; local
73 ASSERT_TRUE(!env_->NewSequentialFile("/dir/non_existent", &seq_file).ok());
74 ASSERT_TRUE(!seq_file);
89 SequentialFile* seq_file; local
102 ASSERT_OK(env_->NewSequentialFile("/dir/f", &seq_file));
103 ASSERT_OK(seq_file->Read(5, &result, scratch)); // Read "hello".
105 ASSERT_OK(seq_file->Skip(1));
106 ASSERT_OK(seq_file->Read(1000, &result, scratch)); // Read "world".
108 ASSERT_OK(seq_file->Read(1000, &result, scratch)); // Try reading past EOF.
110 ASSERT_OK(seq_file->Skip(100)); // Try to skip past end of file
167 SequentialFile* seq_file; local
    [all...]

Completed in 72 milliseconds