---
title: Start
framework: hiddriverkit
role: symbol
role_heading: Instance Method
path: hiddriverkit/iouserhiddevice/start
---

# Start

Starts the device service and associates it with the specified provider object.

## Declaration

```occ
virtual kern_return_t Start(IOService *provider);
```

## Parameters

- `provider`: The provider object that matches the current device. Cast this object to the class you expect. The system retains this object for the duration of your Start method. The system continues to retain the object if your service starts successfully, releasing it only after calling your service’s doc://com.apple.hiddriverkit/documentation/HIDDriverKit/IOUserHIDEventService/Stop method.

## Return Value

Return Value kIOReturnSuccess on success, or another value if an error occurs. See Error Codes.

## Discussion

Discussion After successfully matching the specified provider to your device, the system instantiates your device object and calls this method. Don’t override this method directly. Instead, implement your custom initialization code in the handleStart method. This method calls newDeviceDescription and newReportDescriptor to retrieve information about your device. It then stores the results and starts your service.

## See Also

### Running the Service

- [handleStart](hiddriverkit/iouserhiddevice/handlestart.md)
