Searched refs:fileName (Results 51 - 75 of 165) sorted by relevance

1234567

/haiku-fatelf/src/add-ons/translators/exr/openexr/ilmimf/
H A DImfScanLineInputFile.h76 const char * fileName () const;
H A DImfTiledOutputFile.cpp833 (const char fileName[],
842 _data->os = new StdOFStream (fileName);
850 "\"" << fileName << "\". " << e);
879 "\"" << os.fileName() << "\". " << e);
996 TiledOutputFile::fileName () const function in class:Imf::TiledOutputFile
998 return _data->os->fileName();
1032 "of output file \"" << fileName() << "\" is "
1283 "file \"" << fileName() << "\". " << e);
1325 "file \"" << in.fileName() << "\" to image "
1326 "file \"" << fileName() << "\"
832 TiledOutputFile(const char fileName[], const Header &header, int numThreads) argument
[all...]
H A DImfOutputFile.cpp649 (const char fileName[],
658 _data->os = new StdOFStream (fileName);
666 "\"" << fileName << "\". " << e);
695 "\"" << os.fileName() << "\". " << e);
791 OutputFile::fileName () const function in class:Imf::OutputFile
793 return _data->os->fileName();
828 "of output file \"" << fileName() << "\" is "
838 "of output file \"" << fileName() << "\" are "
1123 "file \"" << fileName() << "\". " << e);
1152 "file \"" << in.fileName() << "\" t
648 OutputFile(const char fileName[], const Header &header, int numThreads) argument
[all...]
/haiku-fatelf/src/system/boot/loader/file_systems/amiga_ffs/
H A DDirectory.cpp101 char fileName[FFS_NAME_LENGTH]; local
102 if (node->GetName(fileName, sizeof(fileName)) == B_OK
103 && !strcmp(name, fileName)) {
/haiku-fatelf/src/tests/add-ons/kernel/file_systems/beserved/AuthLib/
H A Dbesure_auth.h66 _IMPEXP_BESURE bool GetKeyValue(const char *fileName, const char *key, char *value, int bufSize);
67 _IMPEXP_BESURE bool GetKeyInt(const char *fileName, const char *key, int *value);
68 _IMPEXP_BESURE bool SetKeyValue(const char *fileName, const char *key, const char *value);
69 _IMPEXP_BESURE bool SetKeyInt(const char *fileName, const char *key, int value);
/haiku-fatelf/src/tests/add-ons/kernel/file_systems/beserved/BeManager/
H A Dbesure_auth.h66 _IMPEXP_BESURE bool GetKeyValue(const char *fileName, const char *key, char *value, int bufSize);
67 _IMPEXP_BESURE bool GetKeyInt(const char *fileName, const char *key, int *value);
68 _IMPEXP_BESURE bool SetKeyValue(const char *fileName, const char *key, const char *value);
69 _IMPEXP_BESURE bool SetKeyInt(const char *fileName, const char *key, int value);
/haiku-fatelf/src/tests/add-ons/kernel/file_systems/beserved/BeSure/
H A Dbesure_auth.h66 _IMPEXP_BESURE bool GetKeyValue(const char *fileName, const char *key, char *value, int bufSize);
67 _IMPEXP_BESURE bool GetKeyInt(const char *fileName, const char *key, int *value);
68 _IMPEXP_BESURE bool SetKeyValue(const char *fileName, const char *key, const char *value);
69 _IMPEXP_BESURE bool SetKeyInt(const char *fileName, const char *key, int value);
/haiku-fatelf/src/tests/add-ons/kernel/file_systems/beserved/MyNetwork/
H A Dbesure_auth.h66 _IMPEXP_BESURE bool GetKeyValue(const char *fileName, const char *key, char *value, int bufSize);
67 _IMPEXP_BESURE bool GetKeyInt(const char *fileName, const char *key, int *value);
68 _IMPEXP_BESURE bool SetKeyValue(const char *fileName, const char *key, const char *value);
69 _IMPEXP_BESURE bool SetKeyInt(const char *fileName, const char *key, int value);
/haiku-fatelf/src/kits/tracker/
H A DTemplatesMenu.cpp146 char fileName[B_FILE_NAME_LENGTH]; local
147 entry.GetName(fileName);
170 message->AddString("name", fileName);
171 AddItem(new IconMenuItem(fileName, message, &nodeInfo,
/haiku-fatelf/src/apps/debugger/elf/
H A DElfFile.cpp129 ElfFile::Init(const char* fileName) argument
132 fFD = open(fileName, O_RDONLY);
134 WARNING("Failed to open \"%s\": %s\n", fileName, strerror(errno));
141 WARNING("Failed to stat \"%s\": %s\n", fileName, strerror(errno));
153 return _LoadFile<Elf64_Ehdr, Elf64_Phdr, Elf64_Shdr>(fileName);
155 return _LoadFile<Elf32_Ehdr, Elf32_Phdr, Elf32_Shdr>(fileName);
219 ElfFile::_LoadFile(const char* fileName) argument
230 WARNING("\"%s\": Not an ELF file\n", fileName);
240 WARNING("\"%s\": Invalid ELF header\n", fileName);
260 WARNING("\"%s\": Invalid string section header\n", fileName);
[all...]
/haiku-fatelf/headers/os/package/hpkg/
H A DPackageWriter.h50 status_t Init(const char* fileName, uint32 flags = 0);
53 status_t AddEntry(const char* fileName, int fd = -1);
/haiku-fatelf/headers/private/package/hpkg/
H A DRepositoryWriterImpl.h42 status_t Init(const char* fileName);
47 status_t _Init(const char* fileName);
/haiku-fatelf/headers/tools/cppunit/cppunit/
H A DException.h41 std::string fileName );
56 string fileName() const;
H A DTestAssert.h57 std::string fileName );
62 std::string fileName );
69 std::string fileName )
76 fileName ); local
84 std::string fileName );
H A DNotEqualException.h31 std::string fileName );
/haiku-fatelf/src/tools/cppunit/cppunit/
H A DNotEqualException.cpp30 string fileName ) :
33 fileName ),
/haiku-fatelf/src/bin/
H A Dmvattr.cpp128 renameAttribute(const char* fileName, const char* fromAttr, const char* toAttr, argument
132 printf("Rename attribute: %s\n", fileName);
134 status_t status = moveAttribute(fileName, fromAttr, fileName, toAttr,
138 kProgramName, fileName, strerror(status));
/haiku-fatelf/src/kits/package/hpkg/
H A DPackageWriterImpl.cpp102 Attribute* FindEntryChild(const char* fileName) const
111 if (strcmp(fileName, childName) == 0)
118 Attribute* FindEntryChild(const char* fileName, size_t nameLength) const argument
120 BString name(fileName, nameLength);
470 PackageWriterImpl::Init(const char* fileName, uint32 flags) argument
473 return _Init(fileName, flags);
501 PackageWriterImpl::AddEntry(const char* fileName, int fd) argument
505 if (strcmp(fileName, B_HPKG_PACKAGE_INFO_FILE_NAME) == 0) {
543 BEntry packageInfoEntry(fileName);
553 return _RegisterEntry(fileName, f
609 _Init(const char* fileName, uint32 flags) argument
705 _IsEntryInPackage(const char* fileName) argument
937 _UpdateCheckEntryCollisions(Attribute* parentAttribute, int dirFD, Entry* entry, const char* fileName, char* pathBuffer) argument
1259 _RegisterEntry(const char* fileName, int fd) argument
1543 _AddEntry(int dirFD, Entry* entry, const char* fileName, char* pathBuffer) argument
[all...]
/haiku-fatelf/src/apps/cortex/InfoView/
H A DFileNodeInfoView.cpp148 char fileName[B_FILE_NAME_LENGTH]; local
149 entry.GetName(fileName);
150 title = fileName;
/haiku-fatelf/src/add-ons/kernel/file_systems/packagefs/
H A DPackageDomain.h39 Package* FindPackage(const char* fileName) const;
/haiku-fatelf/src/apps/haiku3d/texture/
H A DVideoFileTexture.cpp22 VideoFileTexture::VideoFileTexture(const char* fileName) argument
29 _Load(fileName);
46 VideoFileTexture::_Load(const char* fileName) argument
48 BEntry entry(fileName);
/haiku-fatelf/src/apps/launchbox/
H A Dsupport.cpp23 load_settings(BMessage* message, const char* fileName, const char* folder) argument
32 if (ret == B_OK && (ret = path.Append(fileName)) == B_OK ) {
46 save_settings(BMessage* message, const char* fileName, const char* folder) argument
55 if (ret == B_OK && (ret = path.Append(fileName)) == B_OK) {
/haiku-fatelf/src/apps/screenshot/
H A DUtility.h27 status_t Save(BBitmap** screenshot, const char* fileName,
/haiku-fatelf/src/documentation/docbook-xsl/extensions/xalan27/src/com/nwalsh/xalan/
H A DText.java173 String fileName;
175 fileName = ((ElemExtensionCall)elem).getAttribute ("href",
179 if ("".equals(fileName)) {
184 return fileName;
/haiku-fatelf/src/servers/registrar/mime/
H A DMimeSnifferAddonManager.h34 float GuessMimeType(const char* fileName,

Completed in 270 milliseconds

1234567