HomeSort by: relevance | last modified time | path
    Searched defs:tube (Results 1 - 2 of 2) sorted by relevancy

  /src/external/bsd/unbound/dist/util/
tube.h 2 * util/tube.h - pipe service
47 struct tube;
55 * void mycallback(tube, msg, len, error, user_argument);
58 typedef void tube_callback_type(struct tube*, uint8_t*, size_t, int, void*);
63 struct tube { struct
126 * @return: new tube struct or NULL on error.
128 struct tube* tube_create(void);
132 * @param tube: to delete
134 void tube_delete(struct tube* tube);
    [all...]
tube.c 2 * util/tube.c - pipe service
42 #include "util/tube.h"
60 struct tube* tube_create(void)
62 struct tube* tube = (struct tube*)calloc(1, sizeof(*tube)); local
64 if(!tube) {
70 tube->sr = -1;
71 tube->sw = -1
152 struct tube* tube = (struct tube*)arg; local
228 struct tube* tube = (struct tube*)arg; local
535 struct tube* tube = (struct tube*)calloc(1, sizeof(*tube)); local
784 struct tube* tube = (struct tube*)arg; local
    [all...]

Completed in 28 milliseconds