• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /freebsd-12-stable/contrib/ntp/sntp/libevent/test/

Lines Matching refs:msg

11 struct msg;
15 /* Tag definition for msg */
24 /* Structure declaration for msg */
26 int (*from_name_assign)(struct msg *, const char *);
27 int (*from_name_get)(struct msg *, char * *);
28 int (*to_name_assign)(struct msg *, const char *);
29 int (*to_name_get)(struct msg *, char * *);
30 int (*attack_assign)(struct msg *, const struct kill*);
31 int (*attack_get)(struct msg *, struct kill* *);
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);
37 struct msg {
53 struct msg *msg_new(void);
54 struct msg *msg_new_with_arg(void *);
55 void msg_free(struct msg *);
56 void msg_clear(struct msg *);
57 void msg_marshal(struct evbuffer *, const struct msg *);
58 int msg_unmarshal(struct msg *, struct evbuffer *);
59 int msg_complete(struct msg *);
61 const struct msg *);
63 struct msg *);
64 int msg_from_name_assign(struct msg *, const char *);
65 int msg_from_name_get(struct msg *, char * *);
66 int msg_to_name_assign(struct msg *, const char *);
67 int msg_to_name_get(struct msg *, char * *);
68 int msg_attack_assign(struct msg *, const struct kill*);
69 int msg_attack_get(struct msg *, struct kill* *);
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);
73 /* --- msg done --- */
91 ev_uint32_t * (*how_often_add)(struct kill *msg, const ev_uint32_t value);
125 ev_uint32_t * kill_how_often_add(struct kill *msg, const ev_uint32_t value);
149 char * * (*notes_add)(struct run *msg, const char * value);
154 ev_uint32_t * (*other_numbers_add)(struct run *msg, const ev_uint32_t value);
199 char * * run_notes_add(struct run *msg, const char * value);
204 ev_uint32_t * run_other_numbers_add(struct run *msg, const ev_uint32_t value);