Lines Matching refs:run

13 struct run;
32 int (*run_assign)(struct msg *, int, const struct run*);
33 int (*run_get)(struct msg *, int, struct run* *);
34 struct run* (*run_add)(struct msg *msg);
43 struct run* *run_data;
70 int msg_run_assign(struct msg *, int, const struct run*);
71 int msg_run_get(struct msg *, int, struct run* *);
72 struct run* msg_run_add(struct msg *msg);
128 /* Tag definition for run */
139 /* Structure declaration for run */
141 int (*how_assign)(struct run *, const char *);
142 int (*how_get)(struct run *, char * *);
143 int (*some_bytes_assign)(struct run *, const ev_uint8_t *, ev_uint32_t);
144 int (*some_bytes_get)(struct run *, ev_uint8_t * *, ev_uint32_t *);
145 int (*fixed_bytes_assign)(struct run *, const ev_uint8_t *);
146 int (*fixed_bytes_get)(struct run *, ev_uint8_t **);
147 int (*notes_assign)(struct run *, int, const char *);
148 int (*notes_get)(struct run *, int, char * *);
149 char * * (*notes_add)(struct run *msg, const char * value);
150 int (*large_number_assign)(struct run *, const ev_uint64_t);
151 int (*large_number_get)(struct run *, ev_uint64_t *);
152 int (*other_numbers_assign)(struct run *, int, const ev_uint32_t);
153 int (*other_numbers_get)(struct run *, int, ev_uint32_t *);
154 ev_uint32_t * (*other_numbers_add)(struct run *msg, const ev_uint32_t value);
157 struct run {
180 struct run *run_new(void);
181 struct run *run_new_with_arg(void *);
182 void run_free(struct run *);
183 void run_clear(struct run *);
184 void run_marshal(struct evbuffer *, const struct run *);
185 int run_unmarshal(struct run *, struct evbuffer *);
186 int run_complete(struct run *);
188 const struct run *);
190 struct run *);
191 int run_how_assign(struct run *, const char *);
192 int run_how_get(struct run *, char * *);
193 int run_some_bytes_assign(struct run *, const ev_uint8_t *, ev_uint32_t);
194 int run_some_bytes_get(struct run *, ev_uint8_t * *, ev_uint32_t *);
195 int run_fixed_bytes_assign(struct run *, const ev_uint8_t *);
196 int run_fixed_bytes_get(struct run *, ev_uint8_t **);
197 int run_notes_assign(struct run *, int, const char *);
198 int run_notes_get(struct run *, int, char * *);
199 char * * run_notes_add(struct run *msg, const char * value);
200 int run_large_number_assign(struct run *, const ev_uint64_t);
201 int run_large_number_get(struct run *, ev_uint64_t *);
202 int run_other_numbers_assign(struct run *, int, const ev_uint32_t);
203 int run_other_numbers_get(struct run *, int, ev_uint32_t *);
204 ev_uint32_t * run_other_numbers_add(struct run *msg, const ev_uint32_t value);
205 /* --- run done --- */