Lines Matching refs:run
15 struct run;
34 int (*run_assign)(struct msg *, int, const struct run*);
35 int (*run_get)(struct msg *, int, struct run* *);
36 struct run* (*run_add)(struct msg *msg);
45 struct run* *run_data;
72 int msg_run_assign(struct msg *, int, const struct run*);
73 int msg_run_get(struct msg *, int, struct run* *);
74 struct run* msg_run_add(struct msg *msg);
143 int (*how_assign)(struct run *, const char *);
144 int (*how_get)(struct run *, char * *);
145 int (*some_bytes_assign)(struct run *, const ev_uint8_t *, ev_uint32_t);
146 int (*some_bytes_get)(struct run *, ev_uint8_t * *, ev_uint32_t *);
147 int (*fixed_bytes_assign)(struct run *, const ev_uint8_t *);
148 int (*fixed_bytes_get)(struct run *, ev_uint8_t **);
149 int (*notes_assign)(struct run *, int, const char *);
150 int (*notes_get)(struct run *, int, char * *);
151 char * * (*notes_add)(struct run *msg, const char * value);
152 int (*large_number_assign)(struct run *, const ev_uint64_t);
153 int (*large_number_get)(struct run *, ev_uint64_t *);
154 int (*other_numbers_assign)(struct run *, int, const ev_uint32_t);
155 int (*other_numbers_get)(struct run *, int, ev_uint32_t *);
156 ev_uint32_t * (*other_numbers_add)(struct run *msg, const ev_uint32_t value);
159 struct run { struct
182 struct run *run_new(void); argument
183 struct run *run_new_with_arg(void *);
184 void run_free(struct run *);
185 void run_clear(struct run *);
186 void run_marshal(struct evbuffer *, const struct run *);
187 int run_unmarshal(struct run *, struct evbuffer *);
188 int run_complete(struct run *);
190 const struct run *);
192 struct run *);
193 int run_how_assign(struct run *, const char *);
194 int run_how_get(struct run *, char * *);
195 int run_some_bytes_assign(struct run *, const ev_uint8_t *, ev_uint32_t);
196 int run_some_bytes_get(struct run *, ev_uint8_t * *, ev_uint32_t *);
197 int run_fixed_bytes_assign(struct run *, const ev_uint8_t *);
198 int run_fixed_bytes_get(struct run *, ev_uint8_t **);
199 int run_notes_assign(struct run *, int, const char *);
200 int run_notes_get(struct run *, int, char * *);
201 char * * run_notes_add(struct run *msg, const char * value);
202 int run_large_number_assign(struct run *, const ev_uint64_t);
203 int run_large_number_get(struct run *, ev_uint64_t *);
204 int run_other_numbers_assign(struct run *, int, const ev_uint32_t);
205 int run_other_numbers_get(struct run *, int, ev_uint32_t *);
206 ev_uint32_t * run_other_numbers_add(struct run *msg, const ev_uint32_t value);