Home
last modified time | relevance | path

Searched refs:CFSTR (Results 1 - 25 of 39) sorted by relevance

12

/third_party/lzma/CPP/Windows/
H A DFileName.h26 bool IsAltPathPrefix(CFSTR s) throw(); /* name: */
35 bool IsDevicePath(CFSTR s) throw(); /* \\.\ */
36 bool IsSuperUncPath(CFSTR s) throw(); /* \\?\UNC\ */
37 bool IsNetworkPath(CFSTR s) throw(); /* \\?\UNC\ or \\SERVER */
45 unsigned GetNetworkServerPrefixSize(CFSTR s) throw();
47 bool IsNetworkShareRootPath(CFSTR s) throw(); /* \\?\UNC\SERVER\share or \\SERVER\share or with slash */
49 bool IsDrivePath_SuperAllowed(CFSTR s) throw(); // first chars are drive chars like "a:\" or "\\?\a:\"
50 bool IsDriveRootPath_SuperAllowed(CFSTR s) throw(); // exact drive root path "a:\" or "\\?\a:\"
62 bool IsDrivePath2(CFSTR s) throw(); // first 2 chars are drive chars like "a:"
63 // bool IsDriveName2(CFSTR
[all...]
H A DFileDir.h22 bool SetDirTime(CFSTR path, const CFiTime *cTime, const CFiTime *aTime, const CFiTime *mTime);
27 bool SetFileAttrib(CFSTR path, DWORD attrib);
37 int my_chown(CFSTR path, uid_t owner, gid_t group);
41 bool SetFileAttrib_PosixHighDetect(CFSTR path, DWORD attrib);
44 bool MyMoveFile(CFSTR existFileName, CFSTR newFileName);
47 bool MyCreateHardLink(CFSTR newFileName, CFSTR existFileName);
50 bool RemoveDir(CFSTR path);
51 bool CreateDir(CFSTR pat
[all...]
H A DFileDir.cpp121 bool SetDirTime(CFSTR path, const CFiTime *cTime, const CFiTime *aTime, const CFiTime *mTime) in SetDirTime()
156 bool SetFileAttrib(CFSTR path, DWORD attrib) in SetFileAttrib()
183 bool SetFileAttrib_PosixHighDetect(CFSTR path, DWORD attrib) in SetFileAttrib_PosixHighDetect()
193 bool RemoveDir(CFSTR path) in RemoveDir()
220 bool MyMoveFile(CFSTR oldFile, CFSTR newFile) in MyMoveFile()
258 bool MyCreateHardLink(CFSTR newFileName, CFSTR existFileName) in MyCreateHardLink()
321 bool CreateDir(CFSTR path) in CreateDir()
356 static bool CreateDir2(CFSTR pat
[all...]
H A DFileName.cpp97 bool IsAltPathPrefix(CFSTR s) throw() in IsAltPathPrefix()
137 bool IsDevicePath(CFSTR s) throw() in IsDevicePath()
170 bool IsSuperUncPath(CFSTR s) throw() { return (IS_SUPER_PREFIX(s) && IS_UNC_WITH_SLASH(s + kSuperPathPrefixSize)); } in IsSuperUncPath()
171 bool IsNetworkPath(CFSTR s) throw() in IsNetworkPath()
181 unsigned GetNetworkServerPrefixSize(CFSTR s) throw() in GetNetworkServerPrefixSize()
200 bool IsNetworkShareRootPath(CFSTR s) throw() in IsNetworkShareRootPath()
252 bool IsDrivePath2(CFSTR s) throw() { return IS_LETTER_CHAR(s[0]) && s[1] == ':'; } in IsDrivePath2()
253 // bool IsDriveName2(CFSTR s) throw() { return IS_LETTER_CHAR(s[0]) && s[1] == ':' && s[2] == 0; }
254 bool IsDrivePath(CFSTR s) throw() { return IS_LETTER_CHAR(s[0]) && s[1] == ':' && IS_SEPAR(s[2]); } in IsDrivePath()
255 bool IsSuperPath(CFSTR in IsDrivePath()
[all...]
H A DFileIO.h110 bool GetReparseData(CFSTR path, CByteBuffer &reparseData, BY_HANDLE_FILE_INFORMATION *fileInfo = NULL);
111 bool SetReparseData(CFSTR path, bool isDir, const void *data, DWORD size);
112 bool DeleteReparseData(CFSTR path);
119 bool Create(CFSTR path, DWORD desiredAccess,
170 static bool GetFileInformation(CFSTR path, BY_HANDLE_FILE_INFORMATION *info) in GetFileInformation()
217 void CalcDeviceSize(CFSTR name);
222 bool Open(CFSTR fileName, DWORD shareMode, DWORD creationDisposition, DWORD flagsAndAttributes);
223 bool OpenShared(CFSTR fileName, bool shareForWrite);
224 bool Open(CFSTR fileName);
228 bool Open_for_ReadAttributes(CFSTR fileNam
[all...]
H A DFileFind.h24 // bool DoesFileExist(CFSTR name, bool followLink);
25 bool DoesFileExist_Raw(CFSTR name);
26 bool DoesFileExist_FollowLink(CFSTR name);
27 bool DoesDirExist(CFSTR name, bool followLink);
29 inline bool DoesDirExist(CFSTR name) in DoesDirExist()
31 inline bool DoesDirExist_FollowLink(CFSTR name) in DoesDirExist_FollowLink()
35 bool DoesFileOrDirExist(CFSTR name);
37 DWORD GetFileAttrib(CFSTR path);
105 bool Fill_From_ByHandleFileInfo(CFSTR path);
168 bool Find(CFSTR pat
[all...]
H A DFileFind.cpp60 bool MyGetDiskFreeSpace(CFSTR rootPath, UInt64 &clusterSize, UInt64 &totalSize, UInt64 &freeSize);
194 bool CFindFile::FindFirst(CFSTR path, CFileInfo &fi) in FindFirst()
319 bool CFindStream::FindFirst(CFSTR path, CStreamInfo &si) in FindFirst()
407 DWORD GetFileAttrib(CFSTR path) in GetFileAttrib()
456 bool CFileInfo::Find(CFSTR path, bool followLink) in Find()
669 bool CFileInfoBase::Fill_From_ByHandleFileInfo(CFSTR path) in Fill_From_ByHandleFileInfo()
685 bool CFileInfo::FollowReparse(CFSTR path, bool isDir)
738 bool DoesFileExist_Raw(CFSTR name) in DoesFileExist_Raw()
744 bool DoesFileExist_FollowLink(CFSTR name) in DoesFileExist_FollowLink()
750 bool DoesDirExist(CFSTR nam
[all...]
H A DFileSystem.h16 CFSTR rootPath ,
23 UINT MyGetDriveType(CFSTR pathName);
25 bool MyGetDiskFreeSpace(CFSTR rootPath, UInt64 &clusterSize, UInt64 &totalSize, UInt64 &freeSize);
H A DFileIO.cpp47 bool MyGetDiskFreeSpace(CFSTR rootPath, UInt64 &clusterSize, UInt64 &totalSize, UInt64 &freeSize);
69 bool CFileBase::Create(CFSTR path, DWORD desiredAccess, in Create()
327 void CInFile::CalcDeviceSize(CFSTR s) in CalcDeviceSize()
421 bool CInFile::Open(CFSTR fileName, DWORD shareMode, DWORD creationDisposition, DWORD flagsAndAttributes) in Open()
445 bool CInFile::OpenShared(CFSTR fileName, bool shareForWrite) in OpenShared()
448 bool CInFile::Open(CFSTR fileName) in Open()
521 bool COutFile::Open(CFSTR fileName, DWORD shareMode, DWORD creationDisposition, DWORD flagsAndAttributes) in Open()
524 bool COutFile::Open(CFSTR fileName, DWORD creationDisposition) in Open()
527 bool COutFile::Create(CFSTR fileName, bool createAlways) in Create()
530 bool COutFile::CreateAlways(CFSTR fileNam
[all...]
H A DFileLink.cpp442 bool MyGetDiskFreeSpace(CFSTR rootPath, UInt64 &clusterSize, UInt64 &totalSize, UInt64 &freeSize);
450 bool GetReparseData(CFSTR path, CByteBuffer &reparseData, BY_HANDLE_FILE_INFORMATION *fileInfo) in GetReparseData()
469 static bool CreatePrefixDirOfFile(CFSTR path) in CreatePrefixDirOfFile()
484 static bool OutIoReparseData(DWORD controlCode, CFSTR path, void *data, DWORD size) in OutIoReparseData()
499 bool SetReparseData(CFSTR path, bool isDir, const void *data, DWORD size) in SetReparseData()
530 bool DeleteReparseData(CFSTR path) in DeleteReparseData()
559 bool GetReparseData(CFSTR path, CByteBuffer &reparseData) in GetReparseData()
587 bool SetReparseData(CFSTR path, bool isDir, const void *data, DWORD size)
601 bool SetSymLink(CFSTR from, CFSTR t
[all...]
H A DDLL.h70 bool LoadEx(CFSTR path, DWORD flags = LOAD_LIBRARY_AS_DATAFILE) throw();
71 bool Load(CFSTR path) throw();
90 bool Load(CFSTR path) throw();
H A DDLL.cpp28 bool CLibrary::LoadEx(CFSTR path, DWORD flags) throw() in LoadEx()
45 bool CLibrary::Load(CFSTR path) throw() in Load()
142 bool CLibrary::Load(CFSTR path) throw() in Load()
H A DFileSystem.cpp25 CFSTR rootPath, in MyGetVolumeInformation()
60 UINT MyGetDriveType(CFSTR pathName) in MyGetDriveType()
88 bool MyGetDiskFreeSpace(CFSTR rootPath, UInt64 &clusterSize, UInt64 &totalSize, UInt64 &freeSize) in MyGetDiskFreeSpace()
/third_party/lzma/CPP/7zip/Common/
H A DFileStreams.h112 bool Open(CFSTR fileName) in Z7_class_final()
118 bool OpenShared(CFSTR fileName, bool shareForWrite) in Z7_class_final()
142 bool Create(CFSTR fileName, bool createAlways)
147 bool Open(CFSTR fileName, DWORD creationDisposition)
/third_party/ffmpeg/libavutil/
H A Dhwcontext_videotoolbox.c420 return CFSTR("ITU_R_2020"); in av_map_videotoolbox_color_matrix_from_av()
446 return CFSTR("ITU_R_2020"); in av_map_videotoolbox_color_primaries_from_av()
472 return CFSTR("SMPTE_ST_2084_PQ"); in av_map_videotoolbox_color_trc_from_av()
479 return CFSTR("ITU_R_2020"); in av_map_videotoolbox_color_trc_from_av()
489 return CFSTR("SMPTE_ST_428_1"); in av_map_videotoolbox_color_trc_from_av()
495 return CFSTR("ITU_R_2100_HLG"); in av_map_videotoolbox_color_trc_from_av()
/third_party/lzma/CPP/Common/
H A DListFileUtils.h12 // bool ReadNamesFromListFile(CFSTR fileName, UStringVector &strings, UINT codePage = CP_OEMCP);
15 bool ReadNamesFromListFile2(CFSTR fileName, UStringVector &strings, UINT codePage,
H A DLang.h20 bool Open(CFSTR fileName, const char *id);
H A DListFileUtils.cpp51 bool ReadNamesFromListFile2(CFSTR fileName, UStringVector &strings, UINT codePage, DWORD &lastError) in ReadNamesFromListFile2()
/third_party/cups-filters/backend/
H A Dserial.c1120 CFDictionarySetValue(classesToMatch, CFSTR(kIOSerialBSDTypeKey), in list_devices()
1121 CFSTR(kIOSerialBSDRS232Type)); in list_devices()
1140 CFSTR("HiddenPort"), in list_devices()
1150 CFSTR(kIOTTYDeviceKey), in list_devices()
1163 CFSTR(kIOCalloutDeviceKey), in list_devices()
/third_party/lzma/CPP/7zip/UI/FileManager/
H A DSysIconUtils.h50 DWORD_PTR GetRealIconIndex(CFSTR path, DWORD attrib, int &iconIndex);
/third_party/skia/src/ports/
H A DSkOSFile_ios.h32 /*resourceType=*/nullptr, CFSTR("data"))); in ios_get_path_in_bundle()
/third_party/lzma/CPP/7zip/Bundles/SFXSetup/
H A DSfxSetup.cpp37 static CFSTR const kTempDirPrefix = FTEXT("7zS");
41 static bool ReadDataString(CFSTR fileName, LPCSTR startID, in ReadDataString()
/third_party/ffmpeg/libavcodec/
H A Dvideotoolbox.c43 # define kVTVideoDecoderSpecification_RequireHardwareAcceleratedVideoDecoder CFSTR("RequireHardwareAcceleratedVideoDecoder")
46 # define kVTVideoDecoderSpecification_EnableHardwareAcceleratedVideoDecoder CFSTR("EnableHardwareAcceleratedVideoDecoder")
826 CFDictionarySetValue(avc_info, CFSTR("esds"), data); in videotoolbox_decoder_config_create()
831 CFDictionarySetValue(avc_info, CFSTR("avcC"), data); in videotoolbox_decoder_config_create()
836 CFDictionarySetValue(avc_info, CFSTR("hvcC"), data); in videotoolbox_decoder_config_create()
842 CFDictionarySetValue(avc_info, CFSTR("vpcC"), data); in videotoolbox_decoder_config_create()
/third_party/skia/third_party/externals/harfbuzz/src/
H A Dhb-coretext.cc90 CTFontDescriptorRef last_resort = CTFontDescriptorCreateWithNameAndSize (CFSTR("LastResort"), 0); in get_last_resort_font_desc()
155 if (CFStringHasPrefix (cg_postscript_name, CFSTR (".SFNSText")) || in create_ct_font()
156 CFStringHasPrefix (cg_postscript_name, CFSTR (".SFNSDisplay"))) in create_ct_font()
163 if (CFStringHasSuffix (cg_postscript_name, CFSTR ("-Bold"))) in create_ct_font()
197 bool isEmojiFont = CFStringCompare (fontName, CFSTR("AppleColorEmoji"), 0) == kCFCompareEqualTo; in create_ct_font()
796 # define kCTLanguageAttributeName CFSTR ("NSLanguage") in _hb_coretext_shape()
/third_party/lzma/CPP/7zip/UI/Common/
H A DArchiveOpenCallback.h175 bool SetSecondFileInfo(CFSTR newName) in SetSecondFileInfo()

Completed in 18 milliseconds

12