Lines Matching defs:uLUN

141     uint8_t                            uLUN;
255 * @param uLUN The logical unit which is being detached.
258 static DECLCALLBACK(int) sb16Attach(PPDMDEVINS pDevIns, unsigned uLUN, uint32_t fFlags)
270 if (RTStrAPrintf(&pszDesc, "Audio driver port (SB16) for LUN #%u", uLUN) <= 0)
272 ("Not enough memory for SB16 driver port description of LUN #%u\n", uLUN),
275 int rc = PDMDevHlpDriverAttach(pDevIns, uLUN,
285 uLUN, rc));
287 pDrv->uLUN = uLUN;
293 if (pDrv->uLUN == 0)
296 LogFunc(("LUN#%RU8: pCon=%p, drvFlags=0x%x\n", uLUN, pDrv->pConnector, pDrv->Flags));
306 LogFunc(("No attached driver for LUN #%u\n", uLUN));
310 uLUN, pszDesc, rc));
314 LogFunc(("iLUN=%u, fFlags=0x%x, rc=%Rrc\n", uLUN, fFlags, rc));
1711 LogFlowFunc(("\tLUN#%RU8: cbWritten=%RU32, cWrittenMin=%RU32\n", pDrv->uLUN, cbWritten, cbWrittenMin));
1865 LogFlowFunc(("\tLUN#%RU8: [1] cbIn=%RU32, cbOut=%RU32\n", pDrv->uLUN, cbIn, cbOut));
1873 pDrv->uLUN, cSamplesLive, cSamplesPlayed));
1880 LogFlowFunc(("\tLUN#%RU8: [2] cbIn=%RU32, cbOut=%RU32\n", pDrv->uLUN, cbIn, cbOut));
2227 uint8_t uLUN = 0;
2231 if (RTStrAPrintf(&pszDesc, "[LUN#%RU8] sb16.po", uLUN) <= 0)
2238 LogFlowFunc(("LUN#%RU8: Opened output with rc=%Rrc\n", uLUN, rc));
2257 uLUN++;
2411 uint8_t uLUN;
2412 for (uLUN = 0; uLUN < UINT8_MAX; uLUN)
2414 LogFunc(("Trying to attach driver for LUN #%RU8 ...\n", uLUN));
2415 rc = sb16Attach(pDevIns, uLUN, PDM_TACH_FLAGS_NOT_HOT_PLUG);
2423 uLUN++;
2426 LogFunc(("cLUNs=%RU8, rc=%Rrc\n", uLUN, rc));
2442 uLUN = 0;
2464 LogRel(("SB16: Warning: Unable to enable/use output for LUN#%RU8\n", uLUN));
2476 uLUN++;