HomeSort by relevance Sort by last modified time
    Searched refs:fsType (Results 1 - 25 of 37) sorted by null

1 2

  /external/freetype/src/base/
ftfstype.c 5 /* FreeType utility file to access FSType data (body). */
52 /* look at FSType before fsType for Type42 */
56 return os2->fsType;
  /external/pdfium/third_party/freetype/src/base/
ftfstype.c 5 /* FreeType utility file to access FSType data (body). */
52 /* look at FSType before fsType for Type42 */
56 return os2->fsType;
  /external/harfbuzz_ng/src/
hb-ot-os2-table.hh 59 USHORT fsType;
  /system/vold/
PrivateVolume.cpp 176 status_t PrivateVolume::doFormat(const std::string& fsType) {
177 std::string resolvedFsType = fsType;
178 if (fsType == "auto") {
201 LOG(ERROR) << getId() << " unsupported filesystem " << fsType;
PrivateVolume.h 48 status_t doFormat(const std::string& fsType) override;
PublicVolume.h 50 status_t doFormat(const std::string& fsType) override;
Utils.h 64 status_t ReadMetadata(const std::string& path, std::string& fsType,
68 status_t ReadMetadataUntrusted(const std::string& path, std::string& fsType,
98 bool IsFilesystemSupported(const std::string& fsType);
VolumeBase.h 102 status_t format(const std::string& fsType);
111 virtual status_t doFormat(const std::string& fsType);
PublicVolume.cpp 232 status_t PublicVolume::doFormat(const std::string& fsType) {
233 if (fsType == "vfat" || fsType == "auto") {
242 LOG(ERROR) << "Unsupported filesystem " << fsType;
Utils.cpp 187 static status_t readMetadata(const std::string& path, std::string& fsType,
189 fsType.clear();
218 fsType = value;
235 status_t ReadMetadata(const std::string& path, std::string& fsType,
237 return readMetadata(path, fsType, fsUuid, fsLabel, false);
240 status_t ReadMetadataUntrusted(const std::string& path, std::string& fsType,
242 return readMetadata(path, fsType, fsUuid, fsLabel, true);
532 bool IsFilesystemSupported(const std::string& fsType) {
538 return supported.find(fsType + "\n") != std::string::npos;
VolumeBase.cpp 233 status_t VolumeBase::format(const std::string& fsType) {
244 status_t res = doFormat(fsType);
249 status_t VolumeBase::doFormat(const std::string& fsType) {
Disk.cpp 366 std::string fsType;
368 if (ReadMetadataUntrusted(mDevPath, fsType, unused, unused) == OK) {
  /external/skia/src/core/
SkTypeface.cpp 302 SkOTTableOS2::Version::V2::Type::Field fsType;
304 constexpr size_t fsTypeOffset = offsetof(SkOTTableOS2::Version::V2, fsType);
305 if (this->getTableData(os2Tag, fsTypeOffset, sizeof(fsType), &fsType) == sizeof(fsType)) {
306 if (fsType.Bitmap || (fsType.Restricted && !(fsType.PreviewPrint || fsType.Editable))) {
309 if (fsType.NoSubsetting)
    [all...]
  /external/gptfdisk/
bsd.cc 149 partitions[i].fsType = tempRecords[i].fsType;
150 if (bigEnd) { // reverse data (fsType is a single byte)
200 cout << hex << (int) partitions[i].fsType << "\n" << dec;
237 retval = partitions[i].fsType;
bsd.h 47 // and fsType, to simplify loading the data from disk....
52 uint8_t fsType; // filesystem type, see below
  /tools/external/fat32lib/src/main/java/de/waldheinz/fs/fat/
BootSector.java 192 * @param fsType the
196 public void setFileSystemTypeLabel(String fsType)
199 if (fsType.length() != FILE_SYSTEM_TYPE_LENGTH) {
204 set8(getFileSystemTypeLabelOffset() + i, fsType.charAt(i));
  /external/skia/src/sfnt/
SkOTTable_OS_2_V0.h 82 } fsType;
SkOTTable_OS_2_VA.h 84 } fsType;
SkOTTable_OS_2_V1.h 80 } fsType;
  /frameworks/base/core/java/android/os/storage/
VolumeInfo.java 156 public String fsType;
181 fsType = parcel.readString();
384 if ("vfat".equals(fsType)) {
465 pw.printPair("fsType", fsType);
532 parcel.writeString(fsType);
  /external/fonttools/Lib/fontTools/
merge.py 234 # Compute least restrictive logic for each fsType value
246 fsType = mergeBits(os2FsTypeMergeBitMap)(lst)
248 if fsType & 0x0002:
249 fsType &= ~0x000C
250 return fsType
258 'fsType': mergeOs2FsType, # Will be overwritten
283 self.fsType &= ~0x0300
288 if self.fsType & 0x0008:
289 self.fsType &= ~0x0004
  /external/freetype/include/freetype/
tttables.h 386 FT_UShort fsType;
    [all...]
  /external/pdfium/third_party/freetype/include/freetype/
tttables.h 374 FT_UShort fsType;
    [all...]
  /prebuilts/misc/darwin-x86_64/freetype/include/freetype2/
tttables.h 374 FT_UShort fsType;
    [all...]
  /external/skia/src/ports/
SkFontHost_FreeType.cpp 506 FT_UShort fsType = FT_Get_FSType_Flags(face);
507 return (fsType & (FT_FSTYPE_RESTRICTED_LICENSE_EMBEDDING |
512 FT_UShort fsType = FT_Get_FSType_Flags(face);
513 return (fsType & FT_FSTYPE_NO_SUBSETTING) == 0;
    [all...]

Completed in 547 milliseconds

1 2