Searched refs:at_client (Results 1 – 5 of 5) sorted by relevance
/Zephyr-latest/subsys/bluetooth/host/classic/ |
D | at.h | 71 struct at_client; 76 typedef int (*at_resp_cb_t)(struct at_client *at, struct net_buf *buf); 83 typedef int (*at_finish_cb_t)(struct at_client *at, enum at_result result, 85 typedef int (*parse_val_t)(struct at_client *at); 86 typedef int (*handle_parse_input_t)(struct at_client *at, struct net_buf *buf); 87 typedef int (*handle_cmd_input_t)(struct at_client *at, struct net_buf *buf, 91 struct at_client { struct 103 void at_register(struct at_client *at, at_resp_cb_t resp, argument 105 void at_register_unsolicited(struct at_client *at, at_resp_cb_t unsolicited); 106 int at_get_number(struct at_client *at, uint32_t *val); [all …]
|
D | at.c | 20 static void next_list(struct at_client *at) in next_list() 39 static void skip_space(struct at_client *at) in skip_space() 46 int at_get_number(struct at_client *at, uint32_t *val) in at_get_number() 92 static int get_cmd_value(struct at_client *at, struct net_buf *buf, in get_cmd_value() 122 static int get_response_string(struct at_client *at, struct net_buf *buf, in get_response_string() 152 static void reset_buffer(struct at_client *at) in reset_buffer() 158 static int at_state_start(struct at_client *at, struct net_buf *buf) in at_state_start() 171 static int at_state_start_cr(struct at_client *at, struct net_buf *buf) in at_state_start_cr() 184 static int at_state_start_lf(struct at_client *at, struct net_buf *buf) in at_state_start_lf() 198 static int at_state_get_cmd_string(struct at_client *at, struct net_buf *buf) in at_state_get_cmd_string() [all …]
|
D | hfp_hf.c | 127 void hf_slc_error(struct at_client *hf_at) in hf_slc_error() 177 int brsf_handle(struct at_client *hf_at) in brsf_handle() 194 int brsf_resp(struct at_client *hf_at, struct net_buf *buf) in brsf_resp() 213 static void cind_handle_values(struct at_client *hf_at, uint32_t index, in cind_handle_values() 234 int cind_handle(struct at_client *hf_at) in cind_handle() 284 int cind_resp(struct at_client *hf_at, struct net_buf *buf) in cind_resp() 298 void ag_indicator_handle_values(struct at_client *hf_at, uint32_t index, in ag_indicator_handle_values() 359 int cind_status_handle(struct at_client *hf_at) in cind_status_handle() 381 int cind_status_resp(struct at_client *hf_at, struct net_buf *buf) in cind_status_resp() 395 int ciev_handle(struct at_client *hf_at) in ciev_handle() [all …]
|
D | hfp_internal.h | 57 struct at_client at;
|
/Zephyr-latest/tests/bluetooth/at/src/ |
D | main.c | 17 static struct at_client at; 24 int at_handle(struct at_client *hf_at) in at_handle() 35 int at_resp(struct at_client *hf_at, struct net_buf *buf) in at_resp()
|