/Linux-v4.19/net/bluetooth/cmtp/ |
D | capi.c | 73 static struct cmtp_application *cmtp_application_add(struct cmtp_session *session, __u16 appl) in cmtp_application_add() argument 77 BT_DBG("session %p application %p appl %d", session, app, appl); in cmtp_application_add() 83 app->appl = appl; in cmtp_application_add() 111 if (app->appl == value) in cmtp_application_get() 149 __u8 subcmd, __u16 appl, __u16 msgnum, in cmtp_send_interopmsg() argument 155 BT_DBG("session %p subcmd 0x%02x appl %d msgnum %d", session, subcmd, appl, msgnum); in cmtp_send_interopmsg() 166 capimsg_setu16(s, 2, appl); in cmtp_send_interopmsg() 188 __u16 appl, msgnum, func, info; in cmtp_recv_interopmsg() local 216 appl = CAPIMSG_APPID(skb->data); in cmtp_recv_interopmsg() 218 application = cmtp_application_get(session, CMTP_MAPPING, appl); in cmtp_recv_interopmsg() [all …]
|
D | cmtp.h | 109 __u16 appl; member
|
/Linux-v4.19/net/802/ |
D | garp.c | 345 const struct garp_application *appl, in garp_request_join() argument 349 struct garp_applicant *app = rtnl_dereference(port->applicants[appl->type]); in garp_request_join() 365 const struct garp_application *appl, in garp_request_leave() argument 369 struct garp_applicant *app = rtnl_dereference(port->applicants[appl->type]); in garp_request_leave() 504 struct garp_application *appl = proto->data; in garp_pdu_rcv() local 512 app = rcu_dereference(port->applicants[appl->type]); in garp_pdu_rcv() 559 int garp_init_applicant(struct net_device *dev, struct garp_application *appl) in garp_init_applicant() argument 577 err = dev_mc_add(dev, appl->proto.group_address); in garp_init_applicant() 582 app->app = appl; in garp_init_applicant() 586 rcu_assign_pointer(dev->garp_port->applicants[appl->type], app); in garp_init_applicant() [all …]
|
D | mrp.c | 520 const struct mrp_application *appl, in mrp_request_join() argument 525 port->applicants[appl->type]); in mrp_request_join() 545 const struct mrp_application *appl, in mrp_request_leave() argument 550 port->applicants[appl->type]); in mrp_request_leave() 772 struct mrp_application *appl = container_of(pt, struct mrp_application, in mrp_rcv() local 791 app = rcu_dereference(port->applicants[appl->type]); in mrp_rcv() 840 int mrp_init_applicant(struct net_device *dev, struct mrp_application *appl) in mrp_init_applicant() argument 858 err = dev_mc_add(dev, appl->group_address); in mrp_init_applicant() 863 app->app = appl; in mrp_init_applicant() 867 rcu_assign_pointer(dev->mrp_port->applicants[appl->type], app); in mrp_init_applicant() [all …]
|
/Linux-v4.19/drivers/isdn/hardware/eicon/ |
D | message.c | 178 static byte dtmf_request(dword Id, word Number, DIVA_CAPI_ADAPTER *a, PLCI *plci, APPL *appl, API_P… 189 static byte mixer_request(dword Id, word Number, DIVA_CAPI_ADAPTER *a, PLCI *plci, APPL *appl, API_… 197 static byte ec_request(dword Id, word Number, DIVA_CAPI_ADAPTER *a, PLCI *plci, APPL *appl, API_PAR… 218 void *TransmitBufferSet(APPL *appl, dword ref); 219 void *TransmitBufferGet(APPL *appl, void *p); 220 void TransmitBufferFree(APPL *appl, void *p); 221 void *ReceiveBufferGet(APPL *appl, int Num); 371 word api_put(APPL *appl, CAPI_MSG *msg) in api_put() argument 407 && (plci->appl in api_put() 520 m->info.data_b3_req.Data = (dword)(long)(TransmitBufferSet(appl, m->info.data_b3_req.Data)); in api_put() [all …]
|
D | capifunc.c | 188 void *TransmitBufferSet(APPL *appl, dword ref) in TransmitBufferSet() argument 190 appl->xbuffer_used[ref] = true; in TransmitBufferSet() 191 DBG_PRV1(("%d:xbuf_used(%d)", appl->Id, ref + 1)) in TransmitBufferSet() 195 void *TransmitBufferGet(APPL *appl, void *p) in TransmitBufferGet() argument 197 if (appl->xbuffer_internal[(dword)(long)p]) in TransmitBufferGet() 198 return appl->xbuffer_internal[(dword)(long)p]; in TransmitBufferGet() 200 return appl->xbuffer_ptr[(dword)(long)p]; in TransmitBufferGet() 203 void TransmitBufferFree(APPL *appl, void *p) in TransmitBufferFree() argument 205 appl->xbuffer_used[(dword)(long)p] = false; in TransmitBufferFree() 206 DBG_PRV1(("%d:xbuf_free(%d)", appl->Id, ((dword)(long)p) + 1)) in TransmitBufferFree() [all …]
|
D | divacapi.h | 214 APPL *appl; member
|
/Linux-v4.19/drivers/isdn/hysdn/ |
D | hycapi.c | 151 hycapi_register_internal(struct capi_ctr *ctrl, __u16 appl, in hycapi_register_internal() argument 175 skb_put_data(skb, &appl, sizeof(__u16)); in hycapi_register_internal() 184 hycapi_applications[appl - 1].ctrl_mask |= (1 << (ctrl->cnr - 1)); in hycapi_register_internal() 223 hycapi_register_appl(struct capi_ctr *ctrl, __u16 appl, in hycapi_register_appl() argument 229 int chk = _hycapi_appCheck(appl, ctrl->cnr); in hycapi_register_appl() 234 printk(KERN_INFO "HYSDN: apl %d already registered\n", appl); in hycapi_register_appl() 251 memcpy(&hycapi_applications[appl - 1].rp, in hycapi_register_appl() 262 static void hycapi_release_internal(struct capi_ctr *ctrl, __u16 appl) in hycapi_release_internal() argument 271 capilib_release_appl(&cinfo->ncci_head, appl); in hycapi_release_internal() 283 skb_put_data(skb, &appl, sizeof(__u16)); in hycapi_release_internal() [all …]
|
/Linux-v4.19/include/linux/isdn/ |
D | capilli.h | 47 void (*register_appl)(struct capi_ctr *, u16 appl, 49 void (*release_appl)(struct capi_ctr *, u16 appl); 85 void capi_ctr_handle_message(struct capi_ctr * card, u16 appl, struct sk_buff *skb);
|
/Linux-v4.19/drivers/isdn/hardware/avm/ |
D | avmcard.h | 552 void b1_register_appl(struct capi_ctr *ctrl, u16 appl, 554 void b1_release_appl(struct capi_ctr *ctrl, u16 appl); 575 u16 appl, 577 void b1dma_release_appl(struct capi_ctr *ctrl, u16 appl);
|
D | b1.c | 340 u16 appl, in b1_register_appl() argument 355 b1_put_word(port, appl); in b1_register_appl() 363 void b1_release_appl(struct capi_ctr *ctrl, u16 appl) in b1_release_appl() argument 371 capilib_release_appl(&cinfo->ncci_head, appl); in b1_release_appl() 373 b1_put_word(port, appl); in b1_release_appl()
|
D | b1dma.c | 771 u16 appl, in b1dma_register_appl() argument 795 _put_word(&p, appl); in b1dma_register_appl() 807 void b1dma_release_appl(struct capi_ctr *ctrl, u16 appl) in b1dma_release_appl() argument 816 capilib_release_appl(&cinfo->ncci_head, appl); in b1dma_release_appl() 829 _put_word(&p, appl); in b1dma_release_appl()
|
D | c4.c | 948 u16 appl, in c4_register_appl() argument 975 _put_word(&p, appl); in c4_register_appl() 992 static void c4_release_appl(struct capi_ctr *ctrl, u16 appl) in c4_release_appl() argument 1001 capilib_release_appl(&cinfo->ncci_head, appl); in c4_release_appl() 1015 _put_word(&p, appl); in c4_release_appl()
|
/Linux-v4.19/drivers/isdn/gigaset/ |
D | capi.c | 195 get_appl(struct gigaset_capi_ctr *iif, u16 appl) in get_appl() argument 200 if (ap->id == appl) in get_appl() 327 u16 appl, u16 msgid, int channel, in send_data_b3_conf() argument 341 CAPIMSG_SETAPPID(msg, appl); in send_data_b3_conf() 353 capi_ctr_handle_message(ctr, appl, cskb); in send_data_b3_conf() 997 static void gigaset_register_appl(struct capi_ctr *ctr, u16 appl, in gigaset_register_appl() argument 1006 __func__, appl, rp->level3cnt, rp->datablkcnt, rp->datablklen); in gigaset_register_appl() 1009 if (ap->id == appl) { in gigaset_register_appl() 1011 "application %u already registered\n", appl); in gigaset_register_appl() 1020 ap->id = appl; in gigaset_register_appl() [all …]
|
/Linux-v4.19/arch/arm/boot/dts/ |
D | spear600.dtsi | 174 /* appl GPIO */
|
/Linux-v4.19/Documentation/isdn/ |
D | README.audio | 104 <DLE><DC4> Abort recording, (send by appl.) Emulator
|
/Linux-v4.19/drivers/isdn/capi/ |
D | kcapi.c | 343 void capi_ctr_handle_message(struct capi_ctr *ctr, u16 appl, in capi_ctr_handle_message() argument
|