Searched refs:ircomm (Results 1 – 12 of 12) sorted by relevance
/linux-2.4.37.9/net/irda/ircomm/ |
D | Makefile | 12 list-multi := ircomm.o ircomm-tty.o 13 ircomm-objs := ircomm_core.o ircomm_event.o ircomm_lmp.o ircomm_ttp.o 14 ircomm-tty-objs := ircomm_tty.o ircomm_tty_attach.o ircomm_tty_ioctl.o ircomm_param.o 16 obj-$(CONFIG_IRCOMM) += ircomm.o ircomm-tty.o 20 ircomm.o: $(ircomm-objs) 21 $(LD) $(LD_RFLAG) -r -o $@ $(ircomm-objs) 23 ircomm-tty.o: $(ircomm-tty-objs) 24 $(LD) $(LD_RFLAG) -r -o $@ $(ircomm-tty-objs)
|
D | ircomm_core.c | 60 hashbin_t *ircomm = NULL; variable 64 ircomm = hashbin_new(HB_LOCAL); in ircomm_init() 65 if (ircomm == NULL) { in ircomm_init() 84 hashbin_delete(ircomm, (FREE_FUNC) __ircomm_close); in ircomm_cleanup() 106 ASSERT(ircomm != NULL, return NULL;); in ircomm_open() 132 hashbin_insert(ircomm, (irda_queue_t *) self, line, NULL); in ircomm_open() 185 entry = hashbin_remove(ircomm, self->line, NULL); in ircomm_close() 500 self = (struct ircomm_cb *) hashbin_get_first(ircomm); in ircomm_proc_read() 523 self = (struct ircomm_cb *) hashbin_get_next(ircomm); in ircomm_proc_read()
|
D | ircomm_tty_attach.c | 135 if (ircomm_is_connected(self->ircomm)) { in ircomm_tty_attach_cable() 146 if (ircomm_is_connected(self->ircomm)) { in ircomm_tty_attach_cable() 637 ircomm_connect_response(self->ircomm, NULL); in ircomm_tty_state_idle() 702 ircomm_connect_response(self->ircomm, NULL); in ircomm_tty_state_search() 767 ircomm_connect_response(self->ircomm, NULL); in ircomm_tty_state_query_parameters() 800 ret = ircomm_connect_request(self->ircomm, self->dlsap_sel, in ircomm_tty_state_query_lsap_sel() 815 ircomm_connect_response(self->ircomm, NULL); in ircomm_tty_state_query_lsap_sel() 861 ircomm_connect_response(self->ircomm, NULL); in ircomm_tty_state_setup() 896 ret = ircomm_data_request(self->ircomm, skb); in ircomm_tty_state_ready() 899 ircomm_disconnect_request(self->ircomm, NULL); in ircomm_tty_state_ready()
|
D | ircomm_tty.c | 217 if (!self->ircomm) { in ircomm_tty_startup() 218 self->ircomm = ircomm_open(¬ify, self->service_type, in ircomm_tty_startup() 221 if (!self->ircomm) in ircomm_tty_startup() 224 self->slsap_sel = self->ircomm->slsap_sel; in ircomm_tty_startup() 645 ircomm_control_request(self->ircomm, ctrl_skb); in ircomm_tty_do_softint() 903 ircomm_flow_request(self->ircomm, FLOW_STOP); in ircomm_tty_throttle() 934 ircomm_flow_request(self->ircomm, FLOW_START); in ircomm_tty_unthrottle() 994 if (self->ircomm) { in ircomm_tty_shutdown() 995 ircomm_close(self->ircomm); in ircomm_tty_shutdown() 996 self->ircomm = NULL; in ircomm_tty_shutdown() [all …]
|
D | ircomm_lmp.c | 179 self = (struct ircomm_cb *) hashbin_find(ircomm, line, NULL); in ircomm_lmp_flow_control()
|
D | ircomm_param.c | 102 ircomm_control_request(self->ircomm, self->ctrl_skb); in ircomm_param_flush()
|
D | ircomm_tty_ioctl.c | 64 if (!self->tty || !self->tty->termios || !self->ircomm) in ircomm_tty_change_speed()
|
/linux-2.4.37.9/net/irda/ |
D | Makefile | 29 subdir-$(CONFIG_IRCOMM) += ircomm 40 obj-y += ircomm/ircomm_and_tty.o
|
D | Config.in | 15 source net/irda/ircomm/Config.in
|
/linux-2.4.37.9/include/net/irda/ |
D | ircomm_tty.h | 64 struct ircomm_cb *ircomm; /* IrCOMM layer instance */ member
|
D | ircomm_core.h | 83 extern hashbin_t *ircomm;
|
/linux-2.4.37.9/Documentation/ |
D | Configure.help | 26543 you want to compile it as a module (you will get ircomm.o and 26544 ircomm-tty.o), say M here and read <file:Documentation/modules.txt>. 26549 called ircomm and ircomm_tty. 29385 # LocalWords: ircomm ircomm pluto thiguchi IrTTY Linux's bps NetWinder MIR NSC
|