Searched defs:DeviceCCB (Results 1 - 2 of 2) sorted by relevance

/vbox/src/VBox/Main/src-server/freebsd/
H A DHostHardwareFreeBSD.cpp171 union ccb DeviceCCB; local
175 RT_ZERO(DeviceCCB);
179 DeviceCCB.ccb_h.func_code = XPT_DEV_MATCH;
180 DeviceCCB.ccb_h.path_id = CAM_XPT_PATH_ID;
181 DeviceCCB.ccb_h.target_id = CAM_TARGET_WILDCARD;
182 DeviceCCB.ccb_h.target_lun = CAM_LUN_WILDCARD;
202 DeviceCCB.cdm.num_patterns = 1;
203 DeviceCCB.cdm.pattern_buf_len = sizeof(struct dev_match_result);
204 DeviceCCB.cdm.patterns = &DeviceMatchPattern;
214 DeviceCCB
[all...]
/vbox/src/VBox/Devices/Storage/
H A DDrvHostBase.cpp1004 union ccb DeviceCCB;
1005 memset(&DeviceCCB, 0, sizeof(DeviceCCB));
1007 DeviceCCB.ccb_h.func_code = XPT_GDEVLIST;
1008 int rcBSD = ioctl(RTFileToNative(hFileDevice), CAMGETPASSTHRU, &DeviceCCB);
1013 DeviceCCB.cgdl.periph_name, DeviceCCB.cgdl.unit_number);
1027 memset(&DeviceCCB, 0, sizeof(DeviceCCB));
1028 DeviceCCB
1371 union ccb DeviceCCB; local
[all...]

Completed in 35 milliseconds