• Home
  • Raw
  • Download

Lines Matching refs:index_node_f

227 struct index_node_f {  struct
236 static struct index_node_f *index_read(FILE *in, uint32_t offset) in index_read() argument
238 struct index_node_f *node; in index_read()
261 node = NOFAIL(malloc(sizeof(struct index_node_f) + in index_read()
270 node = NOFAIL(malloc(sizeof(struct index_node_f))); in index_read()
300 static void index_close(struct index_node_f *node) in index_close()
349 static struct index_node_f *index_readroot(struct index_file *in) in index_readroot()
354 static struct index_node_f *index_readchild(const struct index_node_f *parent, in index_readchild()
365 static void index_dump_node(struct index_node_f *node, struct strbuf *buf, in index_dump_node()
381 struct index_node_f *child = index_readchild(node, ch); in index_dump_node()
397 struct index_node_f *root; in index_dump()
410 static char *index_search__node(struct index_node_f *node, const char *key, int i) in index_search__node()
413 struct index_node_f *child; in index_search__node()
457 struct index_node_f *root; in index_search()
469 static void index_searchwild__allvalues(struct index_node_f *node, in index_searchwild__allvalues()
484 static void index_searchwild__all(struct index_node_f *node, int j, in index_searchwild__all()
501 struct index_node_f *child = index_readchild(node, ch); in index_searchwild__all()
524 static void index_searchwild__node(struct index_node_f *node, in index_searchwild__node()
529 struct index_node_f *child; in index_searchwild__node()
592 struct index_node_f *root = index_readroot(in); in index_searchwild()