HomeSort by relevance Sort by last modified time
    Searched refs:fsType (Results 1 - 25 of 35) 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;
  /system/vold/
Utils.h 56 status_t ReadMetadata(const std::string& path, std::string& fsType,
60 status_t ReadMetadataUntrusted(const std::string& path, std::string& fsType,
86 bool IsFilesystemSupported(const std::string& fsType);
PrivateVolume.cpp 190 status_t PrivateVolume::doFormat(const std::string& fsType) {
191 std::string resolvedFsType = fsType;
192 if (fsType == "auto") {
215 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;
VolumeBase.h 102 status_t format(const std::string& fsType);
111 virtual status_t doFormat(const std::string& fsType);
PublicVolume.cpp 219 status_t PublicVolume::doFormat(const std::string& fsType) {
220 if (fsType == "vfat" || fsType == "auto") {
229 LOG(ERROR) << "Unsupported filesystem " << fsType;
Utils.cpp 163 static status_t readMetadata(const std::string& path, std::string& fsType,
165 fsType.clear();
194 fsType = value;
211 status_t ReadMetadata(const std::string& path, std::string& fsType,
213 return readMetadata(path, fsType, fsUuid, fsLabel, false);
216 status_t ReadMetadataUntrusted(const std::string& path, std::string& fsType,
218 return readMetadata(path, fsType, fsUuid, fsLabel, true);
486 bool IsFilesystemSupported(const std::string& fsType) {
492 return supported.find(fsType + "\n") != std::string::npos;
VolumeBase.cpp 235 status_t VolumeBase::format(const std::string& fsType) {
246 status_t res = doFormat(fsType);
251 status_t VolumeBase::doFormat(const std::string& fsType) {
Disk.cpp 321 std::string fsType;
323 if (ReadMetadataUntrusted(mDevPath, fsType, unused, unused) == OK) {
CommandListener.cpp 234 // format [volId] [fsType|auto]
236 std::string fsType(argv[3]);
242 return sendGenericOkFail(cli, vol->format(fsType));
405 "Usage: asec create <container-id> <size_mb> <fstype> <key> <ownerUid> "
  /external/gptfdisk/
bsd.cc 147 partitions[i].fsType = tempRecords[i].fsType;
148 if (bigEnd) { // reverse data (fsType is a single byte)
198 cout << hex << (int) partitions[i].fsType << "\n" << dec;
235 retval = partitions[i].fsType;
bsd.h 47 // and fsType, to simplify loading the data from disk....
52 uint8_t fsType; // filesystem type, see below
  /external/skia/src/core/
SkTypeface.cpp 277 if (os2table.version.v2.fsType.field.Bitmap ||
278 (os2table.version.v2.fsType.field.Restricted &&
279 !(os2table.version.v2.fsType.field.PreviewPrint ||
280 os2table.version.v2.fsType.field.Editable))) {
285 if (os2table.version.v2.fsType.field.NoSubsetting) {
  /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 85 } fsType;
SkOTTable_OS_2_VA.h 85 } fsType;
SkOTTable_OS_2_V1.h 83 } fsType;
SkOTTable_OS_2_V2.h 84 } fsType;
  /frameworks/base/core/java/android/os/storage/
VolumeInfo.java 156 public String fsType;
181 fsType = parcel.readString();
384 if ("vfat".equals(fsType)) {
461 pw.printPair("fsType", fsType);
528 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/
tttables.h 374 FT_UShort fsType;
    [all...]
  /external/pdfium/third_party/freetype/include/
tttables.h 374 FT_Short fsType;
    [all...]
  /external/skia/src/ports/
SkFontHost_FreeType.cpp 383 FT_UShort fsType = FT_Get_FSType_Flags(face);
384 return (fsType & (FT_FSTYPE_RESTRICTED_LICENSE_EMBEDDING |
389 FT_UShort fsType = FT_Get_FSType_Flags(face);
390 return (fsType & FT_FSTYPE_NO_SUBSETTING) == 0;
    [all...]

Completed in 1215 milliseconds

1 2