Lines Matching refs:queue
40 // Registers |type| and |queue| with the data dispatcher so that data
41 // sent under |type| ends up in |queue|. If |type| is already registered,
42 // it is replaced. If |queue| is NULL, the existing registration is
44 void data_dispatcher_register(data_dispatcher_t *dispatcher, data_dispatcher_type_t type, fixed_queue_t *queue);
46 // Registers a default queue to send data to when there is not a specific
47 // type/queue relationship registered. If a default queue is already registered,
48 // it is replaced. If |queue| is NULL, the existing registration is
50 void data_dispatcher_register_default(data_dispatcher_t *dispatcher, fixed_queue_t *queue);
52 // Dispatches |data| to the queue registered for |type|. If no such registration
53 // exists, it is dispatched to the default queue if it exists.