/external/lzma/CPP/Windows/ |
D | FileName.h | 22 bool IsAltPathPrefix(CFSTR s) throw(); /* name: */ 31 bool IsDevicePath(CFSTR s) throw(); /* \\.\ */ 32 bool IsSuperUncPath(CFSTR s) throw(); /* \\?\UNC\ */ 33 bool IsNetworkPath(CFSTR s) throw(); /* \\?\UNC\ or \\SERVER */ 41 unsigned GetNetworkServerPrefixSize(CFSTR s) throw(); 43 bool IsNetworkShareRootPath(CFSTR s) throw(); /* \\?\UNC\SERVER\share or \\SERVER\share or with sl… 45 bool IsDrivePath_SuperAllowed(CFSTR s) throw(); // first chars are drive chars like "a:\" or "\\?\… 46 bool IsDriveRootPath_SuperAllowed(CFSTR s) throw(); // exact drive root path "a:\" or "\\?\a:\" 54 bool IsDrivePath2(CFSTR s) throw(); // first 2 chars are drive chars like "a:" 56 bool IsDrivePath(CFSTR s) throw(); [all …]
|
D | FileDir.h | 17 bool SetDirTime(CFSTR path, const FILETIME *cTime, const FILETIME *aTime, const FILETIME *mTime); 20 bool SetFileAttrib(CFSTR path, DWORD attrib); 29 bool SetFileAttrib_PosixHighDetect(CFSTR path, DWORD attrib); 32 bool MyMoveFile(CFSTR existFileName, CFSTR newFileName); 35 bool MyCreateHardLink(CFSTR newFileName, CFSTR existFileName); 38 bool RemoveDir(CFSTR path); 39 bool CreateDir(CFSTR path); 46 bool CreateComplexDir(CFSTR path); 48 bool DeleteFileAlways(CFSTR name); 51 bool MyGetFullPathName(CFSTR path, FString &resFullPath); [all …]
|
D | FileName.cpp | 65 bool IsAltPathPrefix(CFSTR s) throw() in IsAltPathPrefix() 103 bool IsDevicePath(CFSTR s) throw() in IsDevicePath() 136 bool IsSuperUncPath(CFSTR s) throw() { return (IS_SUPER_PREFIX(s) && IS_UNC_WITH_SLASH(s + kSuperPa… in IsSuperUncPath() 137 bool IsNetworkPath(CFSTR s) throw() in IsNetworkPath() 147 unsigned GetNetworkServerPrefixSize(CFSTR s) throw() in GetNetworkServerPrefixSize() 166 bool IsNetworkShareRootPath(CFSTR s) throw() in IsNetworkShareRootPath() 187 bool IsDrivePath2(CFSTR s) throw() { return IS_LETTER_CHAR(s[0]) && s[1] == ':'; } in IsDrivePath2() 189 bool IsDrivePath(CFSTR s) throw() { return IS_LETTER_CHAR(s[0]) && s[1] == ':' && IS_SEPAR(s[2]); } in IsDrivePath() 190 bool IsSuperPath(CFSTR s) throw() { return IS_SUPER_PREFIX(s); } in IsSuperPath() 191 bool IsSuperOrDevicePath(CFSTR s) throw() { return IS_SUPER_OR_DEVICE_PATH(s); } in IsSuperOrDevicePath() [all …]
|
D | FileDir.cpp | 72 bool SetDirTime(CFSTR path, const FILETIME *cTime, const FILETIME *aTime, const FILETIME *mTime) in SetDirTime() 105 bool SetFileAttrib(CFSTR path, DWORD attrib) in SetFileAttrib() 132 bool SetFileAttrib_PosixHighDetect(CFSTR path, DWORD attrib) in SetFileAttrib_PosixHighDetect() 140 bool RemoveDir(CFSTR path) in RemoveDir() 166 bool MyMoveFile(CFSTR oldFile, CFSTR newFile) in MyMoveFile() 202 bool MyCreateHardLink(CFSTR newFileName, CFSTR existFileName) in MyCreateHardLink() 261 bool CreateDir(CFSTR path) in CreateDir() 296 static bool CreateDir2(CFSTR path) in CreateDir2() 336 bool CreateComplexDir(CFSTR _path) in CreateComplexDir() 405 bool DeleteFileAlways(CFSTR path) in DeleteFileAlways() [all …]
|
D | FileIO.h | 65 bool GetReparseData(CFSTR path, CByteBuffer &reparseData, BY_HANDLE_FILE_INFORMATION *fileInfo = NU… 66 bool SetReparseData(CFSTR path, bool isDir, const void *data, DWORD size); 73 bool Create(CFSTR path, DWORD desiredAccess, 119 static bool GetFileInformation(CFSTR path, BY_HANDLE_FILE_INFORMATION *info) in GetFileInformation() 165 void CalcDeviceSize(CFSTR name); 170 bool Open(CFSTR fileName, DWORD shareMode, DWORD creationDisposition, DWORD flagsAndAttributes); 171 bool OpenShared(CFSTR fileName, bool shareForWrite); 172 bool Open(CFSTR fileName); 176 bool OpenReparse(CFSTR fileName) in OpenReparse() 197 bool Open(CFSTR fileName, DWORD shareMode, DWORD creationDisposition, DWORD flagsAndAttributes); [all …]
|
D | FileFind.h | 71 bool Find(CFSTR path); 88 bool FindFirst(CFSTR wildcard, CFileInfo &fileInfo); 107 bool FindFirst(CFSTR filePath, CStreamInfo &streamInfo); 124 bool DoesFileExist(CFSTR name); 125 bool DoesDirExist(CFSTR name); 126 bool DoesFileOrDirExist(CFSTR name); 128 DWORD GetFileAttrib(CFSTR path); 151 HANDLE FindFirst(CFSTR pathName, bool watchSubtree, DWORD notifyFilter);
|
D | FileIO.cpp | 27 bool MyGetDiskFreeSpace(CFSTR rootPath, UInt64 &clusterSize, UInt64 &totalSize, UInt64 &freeSize); 49 bool CFileBase::Create(CFSTR path, DWORD desiredAccess, in Create() 217 void CInFile::CalcDeviceSize(CFSTR s) in CalcDeviceSize() 311 bool CInFile::Open(CFSTR fileName, DWORD shareMode, DWORD creationDisposition, DWORD flagsAndAttrib… in Open() 318 bool CInFile::OpenShared(CFSTR fileName, bool shareForWrite) in OpenShared() 321 bool CInFile::Open(CFSTR fileName) in Open() 374 bool COutFile::Open(CFSTR fileName, DWORD shareMode, DWORD creationDisposition, DWORD flagsAndAttri… in Open() 377 bool COutFile::Open(CFSTR fileName, DWORD creationDisposition) in Open() 380 bool COutFile::Create(CFSTR fileName, bool createAlways) in Create() 383 bool COutFile::CreateAlways(CFSTR fileName, DWORD flagsAndAttributes) in CreateAlways()
|
D | FileSystem.h | 14 CFSTR rootPath , 21 UINT MyGetDriveType(CFSTR pathName); 23 bool MyGetDiskFreeSpace(CFSTR rootPath, UInt64 &clusterSize, UInt64 &totalSize, UInt64 &freeSize);
|
D | FileFind.cpp | 52 bool MyGetDiskFreeSpace(CFSTR rootPath, UInt64 &clusterSize, UInt64 &totalSize, UInt64 &freeSize); 149 bool CFindFile::FindFirst(CFSTR path, CFileInfo &fi) in FindFirst() 269 bool CFindStream::FindFirst(CFSTR path, CStreamInfo &si) in FindFirst() 370 DWORD GetFileAttrib(CFSTR path) in GetFileAttrib() 419 bool CFileInfo::Find(CFSTR path) in Find() 602 bool DoesFileExist(CFSTR name) in DoesFileExist() 608 bool DoesDirExist(CFSTR name) in DoesDirExist() 614 bool DoesFileOrDirExist(CFSTR name) in DoesFileOrDirExist() 671 HANDLE CFindChangeNotification::FindFirst(CFSTR path, bool watchSubtree, DWORD notifyFilter) in FindFirst()
|
D | FileSystem.cpp | 23 CFSTR rootPath, in MyGetVolumeInformation() 58 UINT MyGetDriveType(CFSTR pathName) in MyGetDriveType() 86 bool MyGetDiskFreeSpace(CFSTR rootPath, UInt64 &clusterSize, UInt64 &totalSize, UInt64 &freeSize) in MyGetDiskFreeSpace()
|
/external/llvm-project/lldb/tools/debugserver/source/ |
D | RNBServices.h | 19 #define DTSERVICES_APP_FRONTMOST_KEY CFSTR("isFrontApp") 20 #define DTSERVICES_APP_PATH_KEY CFSTR("executablePath") 21 #define DTSERVICES_APP_ICON_PATH_KEY CFSTR("iconPath") 22 #define DTSERVICES_APP_DISPLAY_NAME_KEY CFSTR("displayName") 23 #define DTSERVICES_APP_PID_KEY CFSTR("pid")
|
/external/clang/test/CodeGen/ |
D | cfstring.c | 14 #define CFSTR __builtin___CFStringMakeConstantString macro 17 CFSTR("Hello, World!"); in f() 21 void *G = CFSTR("yo joe"); 24 static void* h = CFSTR("Goodbye, World!"); in h()
|
D | cfstring2.c | 5 #define CFSTR(x) (CFStringRef) __builtin___CFStringMakeConstantString (x) macro 8 CFSTR("Hello, World!"); in f() 12 void *G = CFSTR("yo joe");
|
D | utf16-cfstrings.c | 6 #define CFSTR __builtin___CFStringMakeConstantString macro 9 CFSTR("überhund"); in foo()
|
/external/llvm-project/clang/test/CodeGen/ |
D | cfstring.c | 14 #define CFSTR __builtin___CFStringMakeConstantString macro 17 CFSTR("Hello, World!"); in f() 21 void *G = CFSTR("yo joe"); 24 static void* h = CFSTR("Goodbye, World!"); in h()
|
D | cfstring2.c | 5 #define CFSTR(x) (CFStringRef) __builtin___CFStringMakeConstantString (x) macro 8 CFSTR("Hello, World!"); in f() 12 void *G = CFSTR("yo joe");
|
D | utf16-cfstrings.c | 6 #define CFSTR __builtin___CFStringMakeConstantString macro 9 CFSTR("überhund"); in foo()
|
/external/webrtc/sdk/objc/helpers/ |
D | AVCaptureSession+DevicePosition.mm | 33 attachments, (const void *)CFSTR("{Exif}"), (const void **)&cfExifDictVal)) { 36 (const void *)CFSTR("LensModel"), 38 if (CFStringContainsString(cfLensModelStrVal, CFSTR("front"))) { 40 } else if (CFStringContainsString(cfLensModelStrVal, CFSTR("back"))) {
|
/external/clang/test/Sema/ |
D | builtins.c | 26 #define CFSTR __builtin___CFStringMakeConstantString macro 29 X = CFSTR("\242"); // expected-warning {{input conversion stopped}} in test7() 30 X = CFSTR("\0"); // no-warning in test7() 31 …X = CFSTR(242); // expected-error {{CFString literal is not a string constant}} expected-warning {… in test7() 32 X = CFSTR("foo", "bar"); // expected-error {{too many arguments to function call}} in test7()
|
/external/libcups/cups/ |
D | usersys.c | 37 # define kCUPSPrintingPrefs CFSTR("org.cups.PrintingPrefs") 40 # define kCUPSPrintingPrefs CFSTR(".GlobalPreferences") 43 # define kDigestOptionsKey CFSTR(kPREFIX "DigestOptions") 44 # define kUserKey CFSTR(kPREFIX "User") 45 # define kUserAgentTokensKey CFSTR(kPREFIX "UserAgentTokens") 46 # define kAllowAnyRootKey CFSTR(kPREFIX "AllowAnyRoot") 47 # define kAllowExpiredCertsKey CFSTR(kPREFIX "AllowExpiredCerts") 48 # define kEncryptionKey CFSTR(kPREFIX "Encryption") 49 # define kGSSServiceNameKey CFSTR(kPREFIX "GSSServiceName") 50 # define kSSLOptionsKey CFSTR(kPREFIX "SSLOptions") [all …]
|
/external/lzma/CPP/7zip/Common/ |
D | FileStreams.h | 68 bool Open(CFSTR fileName) in Open() 73 bool OpenShared(CFSTR fileName, bool shareForWrite) in OpenShared() 119 bool Create(CFSTR fileName, bool createAlways) in Create() 124 bool Open(CFSTR fileName, DWORD creationDisposition) in Open()
|
/external/llvm-project/lldb/source/Symbol/ |
D | LocateSymbolFileMacOSX.cpp | 154 uuid_dict, CFSTR("DBGSymbolRichExecutable"))); in LocateMacOSXFilesUsingDebugSymbols() 317 (CFDictionaryRef)uuid_dict, CFSTR("DBGSymbolRichExecutable")); in GetModuleSpecInfoFromUUIDDictionary() 331 CFSTR("DBGDSYMPath")); in GetModuleSpecInfoFromUUIDDictionary() 346 CFSTR("DBGArchitecture")); in GetModuleSpecInfoFromUUIDDictionary() 363 (CFDictionaryRef)uuid_dict, CFSTR("DBGSourcePathRemapping")); in GetModuleSpecInfoFromUUIDDictionary() 371 CFSTR("DBGVersion")); in GetModuleSpecInfoFromUUIDDictionary() 451 CFSTR("DBGBuildSourcePath")); in GetModuleSpecInfoFromUUIDDictionary() 457 CFSTR("DBGSourcePath")); in GetModuleSpecInfoFromUUIDDictionary() 508 CFSTR("DBGShellCommands"), CFSTR("com.apple.DebugSymbols")); in DownloadObjectAndSymbolFile()
|
/external/clang/test/SemaObjC/ |
D | format-ostrace-warning.m | 16 CFStringRef CFSTR ( const char *cStr ); function 50 …os_trace("testing %@, %s, %d, %@, %m", CFSTR("object"), "string", 3, "it"); // expected-warning {{… 52 os_trace("testing %@, %s, %d, %@, %m", CFSTR("object"), "string", 3, @"ok");
|
/external/llvm-project/clang/test/SemaObjC/ |
D | format-ostrace-warning.m | 16 CFStringRef CFSTR ( const char *cStr ); function 50 …os_trace("testing %@, %s, %d, %@, %m", CFSTR("object"), "string", 3, "it"); // expected-warning {{… 52 os_trace("testing %@, %s, %d, %@, %m", CFSTR("object"), "string", 3, @"ok");
|
/external/angle/src/gpu_info_util/ |
D | SystemInfo_macos.mm | 40 IORegistryEntryCreateCFProperty(platformExpert, CFSTR("model"), kCFAllocatorDefault, 0)); 108 if (!GetEntryProperty(entry, CFSTR("vendor-id"), &info.vendorId)) 115 if (!GetEntryProperty(entry, CFSTR("class-code"), &classCode)) 123 if (!GetEntryProperty(entry, CFSTR("device-id"), &info.deviceId)) 161 if (!(GetEntryProperty(gpuEntry, CFSTR("vendor-id"), &activeVendor) && 162 GetEntryProperty(gpuEntry, CFSTR("device-id"), &activeDevice))) 274 if (!GetEntryProperty(deviceEntry, CFSTR("vendor-id"), &vendorId))
|