Searched refs:dlc (Results 1 – 8 of 8) sorted by relevance
/AliOS-Things-master/components/ble_host/bt_host/host/ |
A D | rfcomm.c | 247 if (dlc->ops && dlc->ops->disconnected) { in rfcomm_dlc_destroy() 248 dlc->ops->disconnected(dlc); in rfcomm_dlc_destroy() 294 for (dlc = session->dlcs; dlc;) { in rfcomm_session_disconnected() 481 dlc->mtu = MIN(dlc->mtu, session->mtu); in rfcomm_dlc_accept() 760 if (dlc->ops && dlc->ops->connected) { in rfcomm_dlc_connected() 761 dlc->ops->connected(dlc); in rfcomm_dlc_connected() 964 dlc->mtu = MIN(dlc->mtu, dlc->session->mtu); in rfcomm_dlc_start() 988 for (dlc = session->dlcs; dlc; dlc = next) { in rfcomm_handle_ua() 1397 if (dlc->ops && dlc->ops->recv) { in rfcomm_handle_data() 1398 dlc->ops->recv(dlc, buf); in rfcomm_handle_data() [all …]
|
A D | hfp_hf.c | 610 static void hfp_hf_connected(struct bt_rfcomm_dlc *dlc) in hfp_hf_connected() argument 612 struct bt_hfp_hf *hf = CONTAINER_OF(dlc, struct bt_hfp_hf, rfcomm_dlc); in hfp_hf_connected() 620 static void hfp_hf_disconnected(struct bt_rfcomm_dlc *dlc) in hfp_hf_disconnected() argument 622 struct bt_conn *conn = dlc->session->br_chan.chan.conn; in hfp_hf_disconnected() 630 static void hfp_hf_recv(struct bt_rfcomm_dlc *dlc, struct net_buf *buf) in hfp_hf_recv() argument 632 struct bt_hfp_hf *hf = CONTAINER_OF(dlc, struct bt_hfp_hf, rfcomm_dlc); in hfp_hf_recv() 639 static int bt_hfp_hf_accept(struct bt_conn *conn, struct bt_rfcomm_dlc **dlc) in bt_hfp_hf_accept() argument 664 *dlc = &hf->rfcomm_dlc; in bt_hfp_hf_accept()
|
/AliOS-Things-master/components/ble_host/bt_host/include/bluetooth/ |
A D | rfcomm.h | 47 void (*connected)(struct bt_rfcomm_dlc *dlc); 57 void (*disconnected)(struct bt_rfcomm_dlc *dlc); 64 void (*recv)(struct bt_rfcomm_dlc *dlc, struct net_buf *buf); 116 int (*accept)(struct bt_conn *conn, struct bt_rfcomm_dlc **dlc); 145 int bt_rfcomm_dlc_connect(struct bt_conn *conn, struct bt_rfcomm_dlc *dlc, 158 int bt_rfcomm_dlc_send(struct bt_rfcomm_dlc *dlc, struct net_buf *buf); 169 int bt_rfcomm_dlc_disconnect(struct bt_rfcomm_dlc *dlc);
|
/AliOS-Things-master/components/SDL2/src/video/directfb/ |
A D | SDL_DirectFB_modes.c | 156 DFBDisplayLayerConfig dlc; in DirectFB_InitModes() local 207 dlc.pixelformat = DSPF_ARGB; in DirectFB_InitModes() 208 dlc.options = DLOP_ALPHACHANNEL; in DirectFB_InitModes() 210 ret = layer->SetConfiguration(layer, &dlc); in DirectFB_InitModes() 213 dlc.pixelformat = DSPF_AiRGB; in DirectFB_InitModes() 219 dlc.flags = DLCONF_ALL; in DirectFB_InitModes() 229 mode.w = dlc.width; in DirectFB_InitModes() 230 mode.h = dlc.height; in DirectFB_InitModes() 237 dispdata->pixelformat = dlc.pixelformat; in DirectFB_InitModes() 253 dlc.flags = in DirectFB_InitModes() [all …]
|
/AliOS-Things-master/components/amp/engine/duktape_engine/addons/hardware/can/ |
A D | module_can.c | 121 uint8_t rtr, dlc; in native_can_send() local 158 dlc = duk_get_uint(ctx, -1); in native_can_send() 159 if (dlc > 8) { in native_can_send() 168 tx_header.dlc = dlc; in native_can_send() 211 for (i = 0; i < p->rx_header.dlc; i++) { in can_recv_notify()
|
/AliOS-Things-master/components/drivers/core/base/include/aos/hal/ |
A D | can.h | 46 uint8_t dlc; /**< must <=8 */ member
|
/AliOS-Things-master/components/amp_adapter/include/peripheral/ |
A D | aos_hal_can.h | 61 uint8_t dlc; /**< must <=8 */ member
|
/AliOS-Things-master/components/ble_host/bt_shell/bt_host/test/ |
A D | bt.c | 2856 static int rfcomm_bredr_accept(struct bt_conn *conn, struct bt_rfcomm_dlc **dlc) in rfcomm_bredr_accept() argument 2865 *dlc = &rfcomm_dlc; in rfcomm_bredr_accept()
|
Completed in 19 milliseconds