Lines Matching full:run
14 struct run;
33 int (*run_assign)(struct msg *, int, const struct run*);
34 int (*run_get)(struct msg *, int, struct run* *);
35 struct run* (*run_add)(struct msg *msg);
44 struct run* *run_data;
71 int msg_run_assign(struct msg *, int, const struct run*);
72 int msg_run_get(struct msg *, int, struct run* *);
73 struct run* msg_run_add(struct msg *msg);
129 /* Tag definition for run */
140 /* Structure declaration for run */
142 int (*how_assign)(struct run *, const char *);
143 int (*how_get)(struct run *, char * *);
144 int (*some_bytes_assign)(struct run *, const ev_uint8_t *, ev_uint32_t);
145 int (*some_bytes_get)(struct run *, ev_uint8_t * *, ev_uint32_t *);
146 int (*fixed_bytes_assign)(struct run *, const ev_uint8_t *);
147 int (*fixed_bytes_get)(struct run *, ev_uint8_t **);
148 int (*notes_assign)(struct run *, int, const char *);
149 int (*notes_get)(struct run *, int, char * *);
150 char * * (*notes_add)(struct run *msg, const char * value);
151 int (*large_number_assign)(struct run *, const ev_uint64_t);
152 int (*large_number_get)(struct run *, ev_uint64_t *);
153 int (*other_numbers_assign)(struct run *, int, const ev_uint32_t);
154 int (*other_numbers_get)(struct run *, int, ev_uint32_t *);
155 ev_uint32_t * (*other_numbers_add)(struct run *msg, const ev_uint32_t value);
158 struct run { struct
181 struct run *run_new(void); argument
182 struct run *run_new_with_arg(void *);
183 void run_free(struct run *);
184 void run_clear(struct run *);
185 void run_marshal(struct evbuffer *, const struct run *);
186 int run_unmarshal(struct run *, struct evbuffer *);
187 int run_complete(struct run *);
189 const struct run *);
191 struct run *);
192 int run_how_assign(struct run *, const char *);
193 int run_how_get(struct run *, char * *);
194 int run_some_bytes_assign(struct run *, const ev_uint8_t *, ev_uint32_t);
195 int run_some_bytes_get(struct run *, ev_uint8_t * *, ev_uint32_t *);
196 int run_fixed_bytes_assign(struct run *, const ev_uint8_t *);
197 int run_fixed_bytes_get(struct run *, ev_uint8_t **);
198 int run_notes_assign(struct run *, int, const char *);
199 int run_notes_get(struct run *, int, char * *);
200 char * * run_notes_add(struct run *msg, const char * value);
201 int run_large_number_assign(struct run *, const ev_uint64_t);
202 int run_large_number_get(struct run *, ev_uint64_t *);
203 int run_other_numbers_assign(struct run *, int, const ev_uint32_t);
204 int run_other_numbers_get(struct run *, int, ev_uint32_t *);
205 ev_uint32_t * run_other_numbers_add(struct run *msg, const ev_uint32_t value);
206 /* --- run done --- */