<!--
{
  "availability" : [
    "DriverKit: 22.0 -"
  ],
  "documentType" : "symbol",
  "framework" : "SCSIPeripheralsDriverKit",
  "identifier" : "/documentation/SCSIPeripheralsDriverKit/INQUIRY",
  "metadataVersion" : "0.1.0",
  "role" : "Function",
  "symbol" : {
    "kind" : "Function",
    "modules" : [
      "SCSIPeripheralsDriverKit"
    ],
    "preciseIdentifier" : "c:@F@INQUIRY#*$@S@SCSIDeviceOutParameters#k#*$@S@SCSIDeviceInParameters#k#"
  },
  "title" : "INQUIRY"
}
-->

# INQUIRY

Fills a Command Descriptor Block (CDB) to perform a SCSI inquiry.

```
bool INQUIRY(SCSIDeviceOutParameters *request, UInt64 bufAddr, SCSIDeviceInParameters *response, UInt64 senseBufAddr);
```

## Parameters

`request`

An object that contains the request information.

`bufAddr`

A buffer to receive the inquiry data.

`response`

An empty [`SCSIDeviceInParameters`](/documentation/SCSIPeripheralsDriverKit/SCSIDeviceInParameters) object. On return, the framework populates this object with the response information.

`senseBufAddr`

The address of the sense buffer.

## Return Value

`true` if the call successfully fills the CDB; `false`, otherwise.

## Discussion

Use this method in your dext to prefill a 16-byte CDB for the standard `INQUIRY` SCSI command.

---

Copyright &copy; 2026 Apple Inc. All rights reserved. | [Terms of Use](https://www.apple.com/legal/internet-services/terms/site.html) | [Privacy Policy](https://www.apple.com/privacy/privacy-policy)