Searched refs:aPath (Results 1 - 25 of 38) sorted by relevance

12

/vbox/src/libs/xpcom18a4/xpcom/sample/
H A DnsSampleModule.cpp76 nsIFile *aPath,
92 nsIFile *aPath,
75 nsSampleRegistrationProc(nsIComponentManager *aCompMgr, nsIFile *aPath, const char *registryLocation, const char *componentType, const nsModuleComponentInfo *info) argument
91 nsSampleUnregistrationProc(nsIComponentManager *aCompMgr, nsIFile *aPath, const char *registryLocation, const nsModuleComponentInfo *info) argument
/vbox/src/VBox/Main/include/
H A DEmulatedUSBImpl.h48 HRESULT i_webcamAttachInternal(const com::Utf8Str &aPath,
52 HRESULT i_webcamDetachInternal(const com::Utf8Str &aPath);
65 virtual HRESULT webcamAttach(const com::Utf8Str &aPath,
67 virtual HRESULT webcamDetach(const com::Utf8Str &aPath);
H A DHostVideoInputDeviceImpl.h51 virtual HRESULT getPath(com::Utf8Str &aPath) { aPath = m.path; return S_OK; } argument
H A DParallelPortImpl.h64 HRESULT getPath(com::Utf8Str &aPath);
65 HRESULT setPath(const com::Utf8Str &aPath);
H A DGuestSessionImpl.h289 HRESULT directoryCreate(const com::Utf8Str &aPath,
294 const com::Utf8Str &aPath,
297 HRESULT directoryExists(const com::Utf8Str &aPath,
299 HRESULT directoryOpen(const com::Utf8Str &aPath,
303 HRESULT directoryQueryInfo(const com::Utf8Str &aPath,
305 HRESULT directoryRemove(const com::Utf8Str &aPath);
306 HRESULT directoryRemoveRecursive(const com::Utf8Str &aPath,
312 HRESULT directorySetACL(const com::Utf8Str &aPath,
322 const com::Utf8Str &aPath,
325 HRESULT fileExists(const com::Utf8Str &aPath,
[all...]
H A DSerialPortImpl.h78 HRESULT getPath(com::Utf8Str &aPath);
79 HRESULT setPath(const com::Utf8Str &aPath);
H A DSystemPropertiesImpl.h135 HRESULT i_setVRDEAuthLibrary(const com::Utf8Str &aPath);
137 HRESULT i_setWebServiceAuthLibrary(const com::Utf8Str &aPath);
139 HRESULT i_setAutostartDatabasePath(const com::Utf8Str &aPath);
140 HRESULT i_setDefaultAdditionsISO(const com::Utf8Str &aPath);
H A DVFSExplorerImpl.h49 HRESULT getPath(com::Utf8Str &aPath);
H A DApplianceImpl.h89 HRESULT getPath(com::Utf8Str &aPath);
104 const com::Utf8Str &aPath,
133 void i_parseBucket(Utf8Str &aPath, Utf8Str &aBucket);
/vbox/src/libs/xpcom18a4/ipc/ipcd/client/src/
H A DipcModuleFactory.cpp57 nsIFile *aPath,
77 nsIFile *aPath,
107 nsIFile *aPath,
127 nsIFile *aPath,
106 ipcDConnectServiceRegisterProc(nsIComponentManager *aCompMgr, nsIFile *aPath, const char *registryLocation, const char *componentType, const nsModuleComponentInfo *info) argument
126 ipcDConnectServiceUnregisterProc(nsIComponentManager *aCompMgr, nsIFile *aPath, const char *registryLocation, const nsModuleComponentInfo *info) argument
/vbox/src/libs/xpcom18a4/java/src/org/mozilla/xpcom/
H A DIXPCOM.java116 * @param aPath A string which specifies a full file path to a
131 nsILocalFile newLocalFile(String aPath, boolean aFollowLinks) argument
/vbox/src/libs/xpcom18a4/xpcom/io/
H A DnsLocalFile.h60 nsresult GetUnicodePath(PRUnichar **aPath); \
61 nsresult InitWithUnicodePath(const PRUnichar *aPath); \
/vbox/src/VBox/Frontends/VirtualBox/src/widgets/
H A DVBoxFilePathSelectorWidget.h83 void setPath (const QString &aPath, bool aRefreshText = true);
97 void onTextEdited (const QString &aPath);
103 void changePath (const QString &aPath, bool aRefreshText = true);
178 void setPath (const QString& aPath);
185 void textChanged (const QString& aPath);
H A DVBoxFilePathSelectorWidget.cpp232 void VBoxFilePathSelectorWidget::setPath (const QString &aPath, bool aRefreshText /* = true */) argument
234 mPath = aPath.isEmpty() ? QString::null :
235 QDir::toNativeSeparators (aPath);
363 void VBoxFilePathSelectorWidget::onTextEdited (const QString &aPath) argument
365 changePath (aPath, false /* refresh text? */);
377 void VBoxFilePathSelectorWidget::changePath (const QString &aPath, argument
381 setPath (aPath, aRefreshText);
384 emit pathChanged (aPath);
661 void VBoxEmptyFileSelector::setPath (const QString& aPath) argument
663 QString tmpPath = QDir::toNativeSeparators (aPath);
764 textChanged(const QString& aPath) argument
[all...]
/vbox/src/VBox/Main/src-client/
H A DGuestSessionImpl.cpp2514 HRESULT GuestSession::directoryCreate(const com::Utf8Str &aPath, ULONG aMode, argument
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, argument
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, BOO argument
2640 directoryOpen(const com::Utf8Str &aPath, const com::Utf8Str &aFilter, const std::vector<DirectoryOpenFlag_T> &aFlags, ComPtr<IGuestDirectory> &aDirectory) argument
2701 directoryQueryInfo(const com::Utf8Str &aPath, ComPtr<IGuestFsObjInfo> &aInfo) argument
2756 directoryRemove(const com::Utf8Str &aPath) argument
2799 directoryRemoveRecursive(const com::Utf8Str &aPath, const std::vector<DirectoryRemoveRecFlag_T> &aFlags, ComPtr<IProgress> &aProgress) argument
2913 directorySetACL(const com::Utf8Str &aPath, const com::Utf8Str &aAcl) argument
2995 fileCreateTemp(const com::Utf8Str &aTemplateName, ULONG aMode, const com::Utf8Str &aPath, BOOL aSecure, ComPtr<IGuestFile> &aFile) argument
3008 fileExists(const com::Utf8Str &aPath, BOOL *aExists) argument
3048 fileRemove(const com::Utf8Str &aPath) argument
3081 fileOpen(const com::Utf8Str &aPath, const com::Utf8Str &aOpenMode, const com::Utf8Str &aDisposition, ULONG aCreationMode, ComPtr<IGuestFile> &aFile) argument
3096 fileOpenEx(const com::Utf8Str &aPath, const com::Utf8Str &aOpenMode, const com::Utf8Str &aDisposition, const com::Utf8Str &aSharingMode, ULONG aCreationMode, LONG64 aOffset, ComPtr<IGuestFile> &aFile) argument
3166 fileQueryInfo(const com::Utf8Str &aPath, ComPtr<IGuestFsObjInfo> &aInfo) argument
3217 fileQuerySize(const com::Utf8Str &aPath, LONG64 *aSize) argument
3482 symlinkRemoveDirectory(const com::Utf8Str &aPath) argument
[all...]
H A DEmulatedUSBImpl.cpp95 const com::Utf8Str *aPath,
185 const com::Utf8Str *aPath,
195 hrc = mPath.assignEx(*aPath);
441 HRESULT EmulatedUSB::webcamAttach(const com::Utf8Str &aPath, argument
444 return i_webcamAttachInternal(aPath, aSettings, "HostWebcam", NULL);
447 HRESULT EmulatedUSB::i_webcamAttachInternal(const com::Utf8Str &aPath, argument
454 const Utf8Str &path = aPath.isEmpty() || aPath == "."? s_pathDefault: aPath;
524 HRESULT EmulatedUSB::webcamDetach(const com::Utf8Str &aPath) argument
183 Initialize(Console *pConsole, EmulatedUSB *pEmulatedUSB, const com::Utf8Str *aPath, const com::Utf8Str *aSettings, void *pvObject) argument
529 i_webcamDetachInternal(const com::Utf8Str &aPath) argument
[all...]
/vbox/src/libs/xpcom18a4/java/src/org/mozilla/xpcom/internal/
H A DXPCOMImpl.java68 public native nsILocalFile newLocalFile(String aPath, boolean aFollowLinks); argument
/vbox/src/libs/xpcom18a4/python/src/
H A DPyGModule.cpp106 nsIFile* aPath,
111 NS_PRECONDITION(aPath, "null pointer");
114 PyObject *path = PyObject_FromNSInterface(aPath, NS_GET_IID(nsIFile));
124 nsIFile* aPath,
128 NS_PRECONDITION(aPath, "null pointer");
131 PyObject *path = PyObject_FromNSInterface(aPath, NS_GET_IID(nsIFile));
105 RegisterSelf(nsIComponentManager *aCompMgr, nsIFile* aPath, const char* registryLocation, const char* componentType) argument
123 UnregisterSelf(nsIComponentManager* aCompMgr, nsIFile* aPath, const char* registryLocation) argument
/vbox/src/VBox/Main/src-server/
H A DParallelPortImpl.cpp336 HRESULT ParallelPort::getPath(com::Utf8Str &aPath) argument
339 aPath = m->bd->strPath;
344 HRESULT ParallelPort::setPath(const com::Utf8Str &aPath) argument
352 if (aPath != m->bd->strPath)
354 HRESULT rc = i_checkSetPath(aPath);
358 m->bd->strPath = aPath;
H A DSerialPortImpl.cpp391 HRESULT SerialPort::getPath(com::Utf8Str &aPath) argument
395 aPath = m->bd->strPath;
401 HRESULT SerialPort::setPath(const com::Utf8Str &aPath) argument
409 if (aPath != m->bd->strPath)
411 HRESULT rc = i_checkSetPath(aPath);
415 m->bd->strPath = aPath;
H A DSystemPropertiesImpl.cpp1152 * @param aPath
1215 HRESULT SystemProperties::i_setVRDEAuthLibrary(const com::Utf8Str &aPath) argument
1217 if (!aPath.isEmpty())
1218 m->strVRDEAuthLibrary = aPath;
1225 HRESULT SystemProperties::i_setWebServiceAuthLibrary(const com::Utf8Str &aPath) argument
1227 if (!aPath.isEmpty())
1228 m->strWebServiceAuthLibrary = aPath;
1242 HRESULT SystemProperties::i_setAutostartDatabasePath(const com::Utf8Str &aPath) argument
1247 if (!aPath.isEmpty())
1250 int vrc = autostartDb->setAutostartDbPath(aPath
1272 i_setDefaultAdditionsISO(const com::Utf8Str &aPath) argument
[all...]
/vbox/src/libs/xpcom18a4/xpcom/glue/
H A DnsGenericFactory.cpp398 nsIFile* aPath,
417 aPath,
431 rv = cp->mRegisterSelfProc(aCompMgr, aPath, registryLocation,
454 loader->AddDependentLibrary(aPath,
468 nsIFile* aPath,
479 cp->mUnregisterSelfProc(aCompMgr, aPath, registryLocation, cp);
486 rv = registrar->UnregisterFactoryLocation(cp->mCID, aPath);
397 RegisterSelf(nsIComponentManager *aCompMgr, nsIFile* aPath, const char* registryLocation, const char* componentType) argument
467 UnregisterSelf(nsIComponentManager* aCompMgr, nsIFile* aPath, const char* registryLocation) argument
/vbox/src/libs/xpcom18a4/xpcom/obsolete/
H A DnsSpecialSystemDirectory.cpp185 static char* MakeUpperCase(char* aPath) argument
196 int length = strlen(aPath);
201 if (islower(aPath[i]))
202 aPath[i] = _toupper(aPath[i]);
207 if (IsDBCSLeadByte(aPath[i])) {
212 if ( islower(aPath[i]))
213 aPath[i] = _toupper(aPath[i]);
217 return aPath;
[all...]
/vbox/src/VBox/Main/src-server/xpcom/
H A Dserver_module.cpp324 * @param aPath
333 nsIFile *aPath,
339 aPath->GetNativePath(modulePath);
341 aPath->GetNativeTarget(moduleTarget);
343 LogFlowFunc(("aPath=%s, aTarget=%s, aLoaderStr=%s, aType=%s\n",
/vbox/src/libs/xpcom18a4/java/src/
H A DnsJavaInterfaces.cpp284 XPCOM_NATIVE(newLocalFile) (JNIEnv *env, jobject, jstring aPath, argument
289 if (aPath) {
290 buf = env->GetStringChars(aPath, nsnull);
296 env->ReleaseStringChars(aPath, buf);

Completed in 172 milliseconds

12