Lines Matching refs:notify
455 notify_t notify; in irda_open_tsap() local
463 irda_notify_init(¬ify); in irda_open_tsap()
464 notify.connect_confirm = irda_connect_confirm; in irda_open_tsap()
465 notify.connect_indication = irda_connect_indication; in irda_open_tsap()
466 notify.disconnect_indication = irda_disconnect_indication; in irda_open_tsap()
467 notify.data_indication = irda_data_indication; in irda_open_tsap()
468 notify.udata_indication = irda_data_indication; in irda_open_tsap()
469 notify.flow_indication = irda_flow_indication; in irda_open_tsap()
470 notify.instance = self; in irda_open_tsap()
471 strncpy(notify.name, name, NOTIFY_MAX_NAME); in irda_open_tsap()
474 ¬ify); in irda_open_tsap()
495 notify_t notify; in irda_open_lsap() local
503 irda_notify_init(¬ify); in irda_open_lsap()
504 notify.udata_indication = irda_data_indication; in irda_open_lsap()
505 notify.instance = self; in irda_open_lsap()
506 strncpy(notify.name, "Ultra", NOTIFY_MAX_NAME); in irda_open_lsap()
508 self->lsap = irlmp_open_lsap(LSAP_CONNLESS, ¬ify, pid); in irda_open_lsap()