Lines Matching defs:a_pszName

665  * @param   a_pszName       The name of the extension pack.  This is also the
670 HRESULT ExtPack::initWithDir(VBOXEXTPACKCTX a_enmContext, const char *a_pszName, const char *a_pszDir)
702 m->Desc.strName = a_pszName;
1326 * @param a_pszName The module base name (no extension).
1337 bool ExtPack::i_findModule(const char *a_pszName, const char *a_pszExt, VBOXEXTPACKMODKIND a_enmKind,
1346 vrc = RTPathAppend(szPath, sizeof(szPath), a_pszName);
1383 vrc = RTPathAppend(szPath, sizeof(szPath), a_pszName);
1402 vrc = RTPathAppend(szPath, sizeof(szPath), a_pszName);
2348 * @param a_pszName The name of the extension pack.
2350 ExtPack *ExtPackManager::i_findExtPack(const char *a_pszName)
2352 size_t cchName = strlen(a_pszName);
2361 && pExtPackData->Desc.strName.equalsIgnoreCase(a_pszName))
2372 * @param a_pszName The name of the extension pack.
2374 void ExtPackManager::i_removeExtPack(const char *a_pszName)
2376 size_t cchName = strlen(a_pszName);
2385 && pExtPackData->Desc.strName.equalsIgnoreCase(a_pszName))
2391 AssertMsgFailed(("%s\n", a_pszName));
2404 * @param a_pszName The extension to update..
2414 HRESULT ExtPackManager::i_refreshExtPack(const char *a_pszName, bool a_fUnusableIsError, ExtPack **a_ppExtPack)
2419 ExtPack *pExtPack = i_findExtPack(a_pszName);
2431 i_removeExtPack(a_pszName);
2442 bool fValid = VBoxExtPackIsValidName(a_pszName);
2448 * sensitivie file systems (a_pszName is case insensitive and mangled).
2451 int vrc = VBoxExtPackCalcDir(szDir, sizeof(szDir), m->strBaseDir.c_str(), a_pszName);
2482 a_pszName = Entry.szName;
2498 hrc = ptrNewExtPack->initWithDir(m->enmContext, a_pszName, szDir);
2503 LogRel(("ExtPackManager: Found extension pack '%s'.\n", a_pszName));
2506 a_pszName, ptrNewExtPack->m->strWhyUnusable.c_str() ));