Lines Matching refs:module
7 The LAPB module will be a separately compiled module for use by any parts of
9 defines the interfaces to, and the services provided by this module. The
10 term module in this context does not imply that the LAPB module is a
11 separately loadable module, although it may be. The term module is used in
14 The interface to the LAPB module consists of functions to the module,
15 callbacks from the module to indicate important state changes, and
16 structures for getting and setting information about the module.
28 module and is not for use.
35 of the LAPB module.
47 that is called when a particular event in the LAPB module occurs. These will
100 The LAPB module provides a number of function entry points.
105 This must be called before the LAPB module may be used. If the call is
108 instance of the LAPB link. It is returned by the LAPB module in all of the
109 callbacks, and is used by the device driver in all calls to the LAPB module.
160 LAPB_CONNECTED LAPB module is already connected.
169 LAPB_NOTCONNECTED LAPB module is not connected.
174 Queue data with the LAPB module for transmitting over the link. If the call
175 is successful then the skbuff is owned by the LAPB module and may not be
180 LAPB_NOTCONNECTED LAPB module is not connected.
185 Queue data with the LAPB module which has been received from the device. It
186 is expected that the data passed to the LAPB module has skb->data pointing
188 is owned by the LAPB module and may not be used by the device driver again.
199 module to call when an event occurs. They are registered with the LAPB
200 module with lapb_register (see above) in the structure lapb_register_struct
206 This is called by the LAPB module when a connection is established after
213 This is called by the LAPB module when the link is established by the remote
219 This is called by the LAPB module when an event occurs after the device
232 This is called by the LAPB module when the link is terminated by the remote
247 This is called by the LAPB module when data has been received from the
250 module will not perform any more actions on it. The skb->data pointer will
260 This is called by the LAPB module when data is to be transmitted to the
262 device driver and the LAPB module will not perform any more actions on it.