Lines Matching refs:notify
480 notify_t notify; in irda_open_tsap() local
488 irda_notify_init(¬ify); in irda_open_tsap()
489 notify.connect_confirm = irda_connect_confirm; in irda_open_tsap()
490 notify.connect_indication = irda_connect_indication; in irda_open_tsap()
491 notify.disconnect_indication = irda_disconnect_indication; in irda_open_tsap()
492 notify.data_indication = irda_data_indication; in irda_open_tsap()
493 notify.udata_indication = irda_data_indication; in irda_open_tsap()
494 notify.flow_indication = irda_flow_indication; in irda_open_tsap()
495 notify.instance = self; in irda_open_tsap()
496 strncpy(notify.name, name, NOTIFY_MAX_NAME); in irda_open_tsap()
499 ¬ify); in irda_open_tsap()
519 notify_t notify; in irda_open_lsap() local
527 irda_notify_init(¬ify); in irda_open_lsap()
528 notify.udata_indication = irda_data_indication; in irda_open_lsap()
529 notify.instance = self; in irda_open_lsap()
530 strncpy(notify.name, "Ultra", NOTIFY_MAX_NAME); in irda_open_lsap()
532 self->lsap = irlmp_open_lsap(LSAP_CONNLESS, ¬ify, pid); in irda_open_lsap()