Searched refs:pFilename (Results 1 - 10 of 10) sorted by relevance

/haiku-fatelf/src/add-ons/media/plugins/ape_reader/MAClib/
H A DAPELink.h11 CAPELink(const str_utf16 * pFilename);
12 CAPELink(const char * pData, const str_utf16 * pFilename);
27 void ParseData(const char * pData, const str_utf16 * pFilename);
H A DGlobalFunctions.h19 BOOL FileExists(wchar_t * pFilename);
H A DAPELink.cpp13 CAPELink::CAPELink(const str_utf16 * pFilename) argument
23 if (ioLinkFile.Open(pFilename) == ERROR_SUCCESS)
34 ParseData(spBuffer, pFilename);
38 CAPELink::CAPELink(const char * pData, const str_utf16 * pFilename) argument
40 ParseData(pData, pFilename);
47 void CAPELink::ParseData(const char * pData, const str_utf16 * pFilename) argument
88 strcpy(cImagePath, pFilename);
H A DGlobalFunctions.cpp75 BOOL FileExists(wchar_t * pFilename) argument
77 if (0 == wcscmp(pFilename, "-") || 0 == wcscmp(pFilename, "/dev/stdin"))
85 HANDLE hFind = FindFirstFile(pFilename, &WFD);
96 CSmartPtr<char> spANSI(GetANSIFromUTF16(pFilename), TRUE);
H A DMACLib.cpp47 IAPEDecompress * __stdcall CreateIAPEDecompress(const str_utf16 * pFilename, int * pErrorCode) argument
50 if ((pFilename == NULL) || (wcslen(pFilename) == 0))
62 const str_utf16 * pExtension = &pFilename[wcslen(pFilename)];
63 while ((pExtension > pFilename) && (*pExtension != '.'))
70 CAPELink APELink(pFilename);
73 pAPEInfo = new CAPEInfo(&nErrorCode, APELink.GetImageFilename(), new CAPETag(pFilename, TRUE));
80 pAPEInfo = new CAPEInfo(&nErrorCode, pFilename);
H A DAPEInfo.cpp14 CAPEInfo::CAPEInfo(int * pErrorCode, const wchar_t * pFilename, CAPETag * pTag) argument
22 if (m_spIO->Open(pFilename) != 0)
43 if ((strncmp(pFilename, "http://", 7) == 0) || (strncmp(pFilename, "m01p://", 7) == 0)) // SHINTA: wchar_t -> char
H A DAPEInfo.h80 CAPEInfo(int * pErrorCode, const wchar_t * pFilename, CAPETag * pTag = NULL);
H A DAPETag.h222 CAPETag(const str_utf16 * pFilename, BOOL bAnalyze = TRUE);
H A DMACLib.h290 // CIO * pioOutput / const str_utf16 * pFilename
426 IAPEDecompress * __stdcall CreateIAPEDecompress(const str_utf16 * pFilename, int * pErrorCode = NULL);
H A DAPETag.cpp87 CAPETag::CAPETag(const str_utf16 * pFilename, BOOL bAnalyze) argument
90 m_spIO->Open(pFilename);

Completed in 97 milliseconds