Lines Matching defs:aPath

2514 HRESULT GuestSession::directoryCreate(const com::Utf8Str &aPath, ULONG aMode,
2522 if (RT_UNLIKELY((aPath.c_str()) == NULL || *(aPath.c_str()) == '\0'))
2539 int rc = i_directoryCreateInternal(aPath, (uint32_t)aMode, fFlags, &guestRc);
2567 HRESULT GuestSession::directoryCreateTemp(const com::Utf8Str &aTemplateName, ULONG aMode, const com::Utf8Str &aPath,
2577 if (RT_UNLIKELY((aPath.c_str()) == NULL || *(aPath.c_str()) == '\0'))
2584 aPath,
2596 aPath.c_str(), aTemplateName.c_str(), rc);
2605 HRESULT GuestSession::directoryExists(const com::Utf8Str &aPath, BOOL *aExists)
2612 if (RT_UNLIKELY((aPath.c_str()) == NULL || *(aPath.c_str()) == '\0'))
2618 int rc = i_directoryQueryInfoInternal(aPath, objData, &guestRc);
2631 aPath.c_str(), rc);
2640 HRESULT GuestSession::directoryOpen(const com::Utf8Str &aPath, const com::Utf8Str &aFilter,
2648 if (RT_UNLIKELY((aPath.c_str()) == NULL || *(aPath.c_str()) == '\0'))
2666 openInfo.mPath = aPath;
2683 aPath.c_str());
2692 aPath.c_str(),rc);
2701 HRESULT GuestSession::directoryQueryInfo(const com::Utf8Str &aPath, ComPtr<IGuestFsObjInfo> &aInfo)
2708 if (RT_UNLIKELY((aPath.c_str()) == NULL || *(aPath.c_str()) == '\0'))
2714 int vrc = i_directoryQueryInfoInternal(aPath, objData, &guestRc);
2742 aPath.c_str());
2747 aPath.c_str(), vrc);
2756 HRESULT GuestSession::directoryRemove(const com::Utf8Str &aPath)
2763 if (RT_UNLIKELY((aPath.c_str()) == NULL || *(aPath.c_str()) == '\0'))
2774 int vrc = i_directoryRemoveInternal(aPath, uFlags, &guestRc);
2790 aPath.c_str(), vrc);
2799 HRESULT GuestSession::directoryRemoveRecursive(const com::Utf8Str &aPath, const std::vector<DirectoryRemoveRecFlag_T> &aFlags,
2807 if (RT_UNLIKELY((aPath.c_str()) == NULL || *(aPath.c_str()) == '\0'))
2835 int vrc = i_directoryRemoveInternal(aPath, uFlags, &guestRc);
2851 aPath.c_str(), vrc);
2913 HRESULT GuestSession::directorySetACL(const com::Utf8Str &aPath, const com::Utf8Str &aAcl)
2995 HRESULT GuestSession::fileCreateTemp(const com::Utf8Str &aTemplateName, ULONG aMode, const com::Utf8Str &aPath, BOOL aSecure,
3008 HRESULT GuestSession::fileExists(const com::Utf8Str &aPath, BOOL *aExists)
3015 if (RT_UNLIKELY((aPath.c_str()) == NULL || *(aPath.c_str()) == '\0'))
3019 int vrc = i_fileQueryInfoInternal(aPath, objData, &guestRc);
3040 aPath.c_str(), vrc);
3048 HRESULT GuestSession::fileRemove(const com::Utf8Str &aPath)
3055 if (RT_UNLIKELY((aPath.c_str()) == NULL || *(aPath.c_str()) == '\0'))
3061 int vrc = i_fileRemoveInternal(aPath, &guestRc);
3072 aPath.c_str(), vrc);
3081 HRESULT GuestSession::fileOpen(const com::Utf8Str &aPath, const com::Utf8Str &aOpenMode, const com::Utf8Str &aDisposition,
3091 return fileOpenEx(aPath, aOpenMode, aDisposition, strSharingMode, aCreationMode,
3096 HRESULT GuestSession::fileOpenEx(const com::Utf8Str &aPath, const com::Utf8Str &aOpenMode, const com::Utf8Str &aDisposition,
3106 if (RT_UNLIKELY((aPath.c_str()) == NULL || *(aPath.c_str()) == '\0'))
3122 openInfo.mFileName = aPath;
3157 aPath.c_str(), vrc);
3166 HRESULT GuestSession::fileQueryInfo(const com::Utf8Str &aPath, ComPtr<IGuestFsObjInfo> &aInfo)
3174 if (RT_UNLIKELY((aPath.c_str()) == NULL || *(aPath.c_str()) == '\0'))
3180 int vrc = i_fileQueryInfoInternal(aPath, objData, &guestRc);
3217 HRESULT GuestSession::fileQuerySize(const com::Utf8Str &aPath, LONG64 *aSize)
3224 if (RT_UNLIKELY((aPath.c_str()) == NULL || *(aPath.c_str()) == '\0'))
3230 int vrc = i_fileQuerySizeInternal(aPath, &llSize, &guestRc);
3482 HRESULT GuestSession::symlinkRemoveDirectory(const com::Utf8Str &aPath)