Searched defs:raf (Results 1 - 5 of 5) sorted by relevance

/frameworks/multidex/library/src/android/support/multidex/
H A DZipUtil.java55 RandomAccessFile raf = new RandomAccessFile(apk, "r");
57 CentralDirectory dir = findCentralDirectory(raf);
59 return computeCrcOfCentralDir(raf, dir);
61 raf.close();
66 static CentralDirectory findCentralDirectory(RandomAccessFile raf) throws IOException, argument
68 long scanOffset = raf.length() - ENDHDR;
70 throw new ZipException("File too short to be a zip file: " + raf.length());
80 raf.seek(scanOffset);
81 if (raf.readInt() == endSig) {
95 raf
106 computeCrcOfCentralDir(RandomAccessFile raf, CentralDirectory dir) argument
[all...]
/frameworks/base/core/java/android/util/jar/
H A DStrictJarFile.java49 private final RandomAccessFile raf; field in class:StrictJarFile
78 this.raf = new RandomAccessFile(fileName, "r");
108 IoUtils.closeQuietly(this.raf);
198 IoUtils.closeQuietly(raf);
205 return new RAFStream(raf, ze.getDataOffset(),
209 raf, ze.getDataOffset(), ze.getDataOffset() + ze.getCompressedSize());
402 public RAFStream(RandomAccessFile raf, long initialOffset, long endOffset) { argument
403 sharedRaf = raf;
408 public RAFStream(RandomAccessFile raf, long initialOffset) throws IOException { argument
409 this(raf, initialOffse
[all...]
/frameworks/base/telephony/java/android/telephony/
H A DRadioAccessFamily.java146 int raf;
150 raf = GSM | WCDMA;
153 raf = GSM;
156 raf = WCDMA;
159 raf = GSM | WCDMA;
162 raf = CDMA | EVDO;
165 raf = RAF_LTE | CDMA | EVDO;
168 raf = RAF_LTE | GSM | WCDMA;
171 raf = RAF_LTE | CDMA | EVDO | GSM | WCDMA;
174 raf
230 getAdjustedRaf(int raf) argument
239 getNetworkTypeFromRaf(int raf) argument
[all...]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DProxyController.java101 // Record new and old Radio Access Family (raf) configuration.
102 // The old raf configuration is used to restore each logical modem raf when FINISH is
244 // All phones are already set to the requested raf
283 // get the logical mode corresponds to new raf requested and pass the
547 int raf = mPhones[i].getRadioAccessFamily();
548 logd("radioAccessFamily[" + i + "]=" + raf);
549 RadioAccessFamily phoneRC = new RadioAccessFamily(i, raf);
607 // This method will return max number of raf bits supported from the raf
644 getLogicalModemIdFromRaf(int raf) argument
[all...]
/frameworks/data-binding/prebuilds/1.0-rc0/
H A Ddatabinding-studio-bundle.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/databinding/ android/databinding/Bindable.class Bindable. ...

Completed in 153 milliseconds