Searched defs:aFile (Results 1 - 25 of 27) sorted by relevance

12

/vbox/src/libs/xpcom18a4/java/src/org/mozilla/xpcom/
H A DINIParser.java92 * @param aFile INI file to parse
94 * @throws FileNotFoundException if <code>aFile</code> does not exist.
97 public INIParser(File aFile, Charset aCharset) argument
99 initFromFile(aFile, aCharset);
106 * @param aFile INI file to parse
107 * @throws FileNotFoundException if <code>aFile</code> does not exist.
110 public INIParser(File aFile) throws FileNotFoundException, IOException { argument
111 initFromFile(aFile, Charset.forName("UTF-8"));
117 * @param aFile INI file to parse
119 * @throws FileNotFoundException if <code>aFile</cod
122 initFromFile(File aFile, Charset aCharset) argument
[all...]
/vbox/src/libs/xpcom18a4/xpcom/glue/
H A DnsDebug.cpp88 NS_COM void nsDebug::Abort(const char* aFile, PRIntn aLine) argument
93 gDebugObject->Abort(aFile, aLine);
96 NS_COM void nsDebug::Break(const char* aFile, PRIntn aLine) argument
101 gDebugObject->Break(aFile, aLine);
105 const char* aFile,
110 gDebugObject->Warning(aStr, aFile, aLine);
114 const char* aFile, PRIntn aLine)
118 gDebugObject->Assertion(aStr, aExpr, aFile, aLine);
104 Warning(const char* aStr, const char* aFile, PRIntn aLine) argument
113 Assertion(const char* aStr, const char* aExpr, const char* aFile, PRIntn aLine) argument
/vbox/src/libs/xpcom18a4/xpcom/io/
H A DnsStringIO.h69 fprint_string( FILE* aFile, const basic_nsAString<CharT>& aString ) argument
72 nsFileCharSink<CharT> toBegin(aFile);
H A DnsLocalFileCommon.cpp66 nsLocalFile::InitWithFile(nsILocalFile *aFile) argument
68 NS_ENSURE_ARG(aFile);
71 aFile->GetNativePath(path);
H A DSpecialSystemDirectory.cpp154 static nsresult GetWindowsFolder(int folder, nsILocalFile** aFile) argument
174 aFile);
207 aFile);
228 nsILocalFile** aFile)
251 aFile);
263 aFile);
267 return nsIFileFromOSType(kVolumeRootFolderType, aFile);
272 aFile);
283 aFile);
298 aFile);
227 GetSpecialSystemDirectory(SystemDirectories aSystemSystemDirectory, nsILocalFile** aFile) argument
[all...]
H A DnsAppFileLocationProvider.cpp313 nsCOMPtr<nsIFile> aFile; local
314 rv = mMozBinDirectory->Clone(getter_AddRefs(aFile));
318 nsCOMPtr<nsILocalFile> lfile = do_QueryInterface (aFile);
H A DnsFastLoadService.cpp365 nsFastLoadService::AddDependency(nsIFile* aFile) argument
373 return control->AddDependency(aFile);
377 nsFastLoadService::ComputeChecksum(nsIFile* aFile, argument
382 nsresult rv = aFile->GetNativePath(path);
407 nsFastLoadService::CacheChecksum(nsIFile* aFile, nsIObjectOutputStream *aStream) argument
419 rv = aFile->GetNativePath(path);
H A DnsDirectoryService.cpp115 nsDirectoryService::GetCurrentProcessDirectory(nsILocalFile** aFile) argument
118 NS_ENSURE_ARG_POINTER(aFile);
119 *aFile = nsnull;
138 *aFile = aLocalFile;
139 NS_ADDREF(*aFile);
161 *aFile = localFile;
190 *aFile = localFile;
198 *aFile = localFile;
221 *aFile = localFile;
230 NS_ASSERTION(*aFile, "nsDirectoryServic
[all...]
H A DnsFastLoadFile.cpp1596 nsFastLoadFileWriter::AddDependency(nsIFile* aFile) argument
1599 nsresult rv = aFile->GetNativePath(path);
1616 // If we can't get the last modified time from aFile, assume it does
1623 rv = aFile->GetLastModifiedTime(&entry->mLastModified);
H A DnsLocalFileOSX.cpp108 StFollowLinksState(nsLocalFile& aFile) : argument
109 mFile(aFile)
114 StFollowLinksState(nsLocalFile& aFile, PRBool followLinksState) : argument
115 mFile(aFile)
1388 /* void initWithFile (in nsILocalFile aFile); */
1389 NS_IMETHODIMP nsLocalFile::InitWithFile(nsILocalFile *aFile) argument
1391 NS_ENSURE_ARG(aFile);
1393 nsCOMPtr<nsILocalFileMac> aFileMac(do_QueryInterface(aFile));
/vbox/src/libs/xpcom18a4/java/src/
H A DnsFileStreams.cpp220 nsFileInputStream::Open(nsIFile* aFile, PRInt32 aIOFlags, PRInt32 aPerm) argument
231 nsCOMPtr<nsILocalFile> localFile = do_QueryInterface(aFile, &rv);
250 rv = aFile->Remove(PR_FALSE);
253 mFile = aFile;
261 nsFileInputStream::Init(nsIFile* aFile, PRInt32 aIOFlags, PRInt32 aPerm, argument
271 mFile = aFile;
276 return Open(aFile, aIOFlags, aPerm);
H A DnsJavaXPCOMGlue.cpp103 GetJavaFilePath(JNIEnv* env, jobject aFile) argument
110 return (jstring) env->CallObjectMethod(aFile, pathMID);
H A DnsJavaXPCOMBindingUtils.cpp1050 File_to_nsILocalFile(JNIEnv* env, jobject aFile, nsILocalFile** aLocalFile) argument
1059 pathName = (jstring) env->CallObjectMethod(aFile, pathMID);
/vbox/src/libs/xpcom18a4/python/src/loader/
H A Dpyloader.cpp85 nsCOMPtr<nsIFile> aFile; local
86 rv = NS_GetSpecialDirectory(NS_XPCOM_CURRENT_PROCESS_DIR, getter_AddRefs(aFile));
91 aFile->Append(NS_LITERAL_STRING("python"));
93 aFile->GetPath(pathBuf);
/vbox/src/libs/xpcom18a4/xpcom/base/
H A DnsDebugImpl.cpp188 nsDebugImpl::Assertion(const char *aStr, const char *aExpr, const char *aFile, PRInt32 aLine) argument
195 aStr, aExpr, aFile, aLine);
290 Break(aFile, aLine);
295 nsDebugImpl::Break(const char *aFile, PRInt32 aLine) argument
302 ("###!!! Break: at file %s, line %d", aFile, aLine));
305 fprintf(stderr, "Break: at file %s, line %d\n",aFile, aLine); fflush(stderr);
349 Abort(aFile, aLine);
367 sprintf(buf, "Break: at file %s, line %d", aFile, aLine);
372 Abort(aFile, aLine);
379 nsDebugImpl::Abort(const char *aFile, PRInt3 argument
416 Warning(const char* aMessage, const char* aFile, PRIntn aLine) argument
[all...]
/vbox/src/libs/xpcom18a4/xpcom/reflect/xptinfo/src/
H A DxptiManifest.cpp297 nsCOMPtr<nsILocalFile> aFile; local
298 if(!aMgr->GetCloneOfManifestLocation(getter_AddRefs(aFile)) || !aFile)
306 if(!shown && NS_SUCCEEDED(aFile->GetNativePath(path)) && !path.IsEmpty())
314 if(NS_FAILED(aFile->GetFileSize(&fileSize)) || !(flen = nsInt64(fileSize)))
323 if(NS_FAILED(aFile->OpenNSPRFileDesc(PR_RDONLY, 0444, &fd)) || !fd)
697 nsCOMPtr<nsILocalFile> aFile; local
698 if(!aMgr->GetCloneOfManifestLocation(getter_AddRefs(aFile)) || !aFile)
702 if(NS_FAILED(aFile
[all...]
H A DxptiInterfaceInfoManager.cpp280 xptiInterfaceInfoManager::GetCloneOfManifestLocation(nsILocalFile** aFile) argument
289 rv = xptiCloneLocalFile(lf, aFile);
368 xptiInterfaceInfoManager::ReadXPTFile(nsILocalFile* aFile, argument
371 NS_ASSERTION(aFile, "loser!");
382 aFile->GetFollowLinks(&saveFollowLinks);
383 aFile->SetFollowLinks(PR_TRUE);
385 if(NS_FAILED(aFile->GetFileSize(&fileSize)) || !(flen = nsInt64(fileSize)))
387 aFile->SetFollowLinks(saveFollowLinks);
394 aFile->SetFollowLinks(saveFollowLinks);
400 if(NS_FAILED(aFile
612 IndexOfDirectoryOfFile(nsISupportsArray* aSearchPath, nsILocalFile* aFile) argument
[all...]
/vbox/src/libs/xpcom18a4/java/tools/genifaces/
H A DGenerateJavaInterfaces.cpp50 nsIFile *aFile,
58 rv = in->Init(aFile, aIOFlags, aPerm, aBehaviorFlags);
67 nsIFile *aFile,
75 rv = in->Init(aFile, aIOFlags, aPerm, aBehaviorFlags);
49 NS_NewLocalFileInputStream(nsIInputStream **aResult, nsIFile *aFile, PRInt32 aIOFlags = -1, PRInt32 aPerm = -1, PRInt32 aBehaviorFlags = 0) argument
66 NS_NewLocalFileOutputStream(nsIOutputStream **aResult, nsIFile *aFile, PRInt32 aIOFlags = -1, PRInt32 aPerm = -1, PRInt32 aBehaviorFlags = 0) argument
/vbox/src/libs/xpcom18a4/xpcom/components/
H A DnsNativeComponentLoader.cpp1121 nsNativeComponentLoader::AddDependentLibrary(nsIFile* aFile, const char* libName) argument
1136 manager->SetOptionalData(aFile, nsnull, nsnull);
1141 manager->GetOptionalData(aFile, nsnull, getter_Copies(data));
1148 manager->SetOptionalData(aFile, nsnull, data);
H A DnsComponentManager.cpp3418 nsIFile *aFile,
3426 nsresult rv = RegistryLocationForSpec(aFile, getter_Copies(registryName));
3435 aFile,
3445 nsIFile *aFile)
3447 return UnregisterComponentSpec(aClass, aFile);
3415 RegisterFactoryLocation(const nsCID & aClass, const char *aClassName, const char *aContractID, nsIFile *aFile, const char *loaderStr, const char *aType) argument
3444 UnregisterFactoryLocation(const nsCID & aClass, nsIFile *aFile) argument
/vbox/src/libs/xpcom18a4/xpcom/obsolete/component/
H A DnsFileSpecImpl.cpp836 nsresult NS_NewFileSpecFromIFile(nsIFile *aFile, nsIFileSpec **result) argument
843 rv = aFile->GetNativePath(path);
/vbox/src/libs/xpcom18a4/xpcom/obsolete/
H A DnsFileSpecImpl.cpp858 nsresult NS_NewFileSpecFromIFile(nsIFile *aFile, nsIFileSpec **result) argument
865 rv = aFile->GetNativePath(path);
/vbox/src/VBox/Main/src-client/
H A DGuestSessionImpl.cpp2996 ComPtr<IGuestFile> &aFile)
3082 ULONG aCreationMode, ComPtr<IGuestFile> &aFile)
3092 0 /* aOffset */, aFile);
3098 ComPtr<IGuestFile> &aFile)
3141 hr = pFile.queryInterfaceTo(aFile.asOutParam());
3299 HRESULT GuestSession::fileSetACL(const com::Utf8Str &aFile, const com::Utf8Str &aAcl) argument
3493 HRESULT GuestSession::symlinkRemoveFile(const com::Utf8Str &aFile) argument
2995 fileCreateTemp(const com::Utf8Str &aTemplateName, ULONG aMode, const com::Utf8Str &aPath, BOOL aSecure, ComPtr<IGuestFile> &aFile) 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
/vbox/src/VBox/Main/src-all/
H A DExtPackManagerImpl.cpp1989 HRESULT ExtPackManager::openExtPackFile(const com::Utf8Str &aPath, ComPtr<IExtPackFile> &aFile) argument
2013 NewExtPackFile.queryInterfaceTo(aFile.asOutParam());
/vbox/src/VBox/Main/src-server/
H A DApplianceImplImport.cpp64 * @param aFile
67 HRESULT Appliance::read(const com::Utf8Str &aFile, argument
82 if (!( aFile.endsWith(".ovf", Utf8Str::CaseInsensitive)
83 || aFile.endsWith(".ova", Utf8Str::CaseInsensitive)))
92 i_parseURI(aFile, m->locInfo);

Completed in 212 milliseconds

12