Lines Matching defs:pList
86 static int getDriveInfoFromEnv(const char *pcszVar, DriveInfoList *pList,
88 static int getDriveInfoFromSysfs(DriveInfoList *pList, bool isDVD,
515 * @param pList the list to append the drives found to
521 int getDriveInfoFromEnv(const char *pcszVar, DriveInfoList *pList,
525 AssertPtrReturn(pList, VERR_INVALID_POINTER);
527 LogFlowFunc(("pcszVar=%s, pList=%p, isDVD=%d, pfSuccess=%p\n", pcszVar,
528 pList, isDVD, pfSuccess));
550 pList->push_back(DriveInfo(szReal, szUdi, szDesc));
737 * @param pList where to add information about the drives detected
744 int getDriveInfoFromSysfs(DriveInfoList *pList, bool isDVD, bool *pfSuccess)
746 AssertPtrReturn(pList, VERR_INVALID_POINTER);
748 LogFlowFunc (("pList=%p, isDVD=%u, pfSuccess=%p\n",
749 pList, (unsigned) isDVD, pfSuccess));
778 pList->push_back(DriveInfo(dev.getNode(), dev.getUdi(),
794 pList->pop_back();