Lines Matching full:method
79 * Users should not call this method directly. Normally, this
113 * For example, a probe method for a PCI device driver might look
129 * To include this method in a device driver, use a line like this
130 * in the driver's method list:
155 METHOD int probe {
162 * The DEVICE_IDENTIFY() method is used by some drivers (e.g. the ISA
164 * child devices, normally by calling the BUS_ADD_CHILD() method of
171 * use this method at all since child devices can be discovered
174 * To include this method in a device driver, use a line like this
175 * in the driver's method list:
181 * @param driver the driver whose identify method is being called
194 * This method should initialise the hardware and allocate other
197 * To include this method in a device driver, use a line like this
198 * in the driver's method list:
218 METHOD int attach {
229 * To include this method in a device driver, use a line like this
230 * in the driver's method list:
244 METHOD int detach {
251 * This method allows drivers to detect when the system is being shut down.
255 * To include this method in a device driver, use a line like this
256 * in the driver's method list:
262 METHOD int shutdown {
274 * To include this method in a device driver, use a line like this in
275 * the driver's method list:
289 METHOD int suspend {
296 * To include this method in a device driver, use a line like this
297 * in the driver's method list:
311 METHOD int resume {
322 * To include this method in a device driver, use a line like this
323 * in the driver's method list:
337 METHOD int quiesce {
345 * To include this method in a device driver, use a line like this
346 * in the driver's method list:
354 * @retval NULL method not implemented
358 METHOD void * register {