Searched defs:writeInt (Results 1 - 6 of 6) sorted by relevance

/frameworks/base/packages/WallpaperCropper/src/com/android/gallery3d/exif/
H A DOrderedDataOutputStream.java44 public OrderedDataOutputStream writeInt(int value) throws IOException { method in class:OrderedDataOutputStream
52 writeInt((int) rational.getNumerator());
53 writeInt((int) rational.getDenominator());
/frameworks/support/tests/java/android/support/v4/provider/
H A DDocumentFileTest.java89 writeInt(rootFoo, 12);
90 writeInt(rootMeowCat, 24);
91 writeInt(rootMeowDog, 48);
163 writeInt(foo.getUri(), 13);
220 writeInt(newFile.getUri(), 0);
322 private void writeInt(Uri uri, int value) throws IOException { method in class:DocumentFileTest
326 os.writeInt(value);
332 private static void writeInt(File file, int value) throws IOException { method in class:DocumentFileTest
335 os.writeInt(value);
/frameworks/base/core/java/android/speech/srec/
H A DWaveHeader.java233 writeInt(out, 36 + mNumBytes);
238 writeInt(out, 16);
241 writeInt(out, mSampleRate);
242 writeInt(out, mNumChannels * mSampleRate * mBitsPerSample / 8);
248 writeInt(out, mNumBytes);
257 private static void writeInt(OutputStream out, int val) throws IOException { method in class:WaveHeader
/frameworks/volley/src/com/android/volley/toolbox/
H A DDiskBasedCache.java421 writeInt(os, CACHE_MAGIC);
483 static void writeInt(OutputStream os, int n) throws IOException { method in class:DiskBasedCache
537 writeInt(os, map.size());
543 writeInt(os, 0);
/frameworks/base/packages/SettingsProvider/src/com/android/providers/settings/
H A DSettingsBackupAgent.java534 out.writeInt(FULL_BACKUP_VERSION);
537 out.writeInt(systemSettingsData.length);
540 out.writeInt(secureSettingsData.length);
543 out.writeInt(globalSettingsData.length);
546 out.writeInt(locale.length);
549 out.writeInt(wifiSupplicantData.length);
552 out.writeInt(wifiConfigData.length);
667 dataOutput.writeInt(STATE_VERSION);
868 pos = writeInt(result, pos, values[i].length);
1018 private int writeInt(byt method in class:SettingsBackupAgent
[all...]
/frameworks/base/core/java/android/os/
H A DParcel.java68 * {@link #readDouble}, {@link #writeFloat}, {@link #readFloat}, {@link #writeInt},
487 writeInt(-1);
509 public final void writeInt(int val) { method in class:Parcel
589 writeInt(val);
613 writeInt(-1);
617 writeInt(entries.size());
630 writeInt(-1);
634 writeInt(N);
665 writeInt(-1);
678 writeInt(
[all...]

Completed in 5669 milliseconds