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

1 2 3 4 5 6 7 8 91011>>

  /external/okhttp/src/main/java/com/squareup/okhttp/internal/spdy/
SpdyWriter.java 52 out.writeInt(0x80000000 | (SpdyConnection.VERSION & 0x7fff) << 16 | type & 0xffff);
53 out.writeInt((flags & 0xff) << 24 | length & 0xffffff);
54 out.writeInt(streamId & 0x7fffffff);
55 out.writeInt(associatedStreamId & 0x7fffffff);
67 out.writeInt(0x80000000 | (SpdyConnection.VERSION & 0x7fff) << 16 | type & 0xffff);
68 out.writeInt((flags & 0xff) << 24 | length & 0xffffff);
69 out.writeInt(streamId & 0x7fffffff);
80 out.writeInt(0x80000000 | (SpdyConnection.VERSION & 0x7fff) << 16 | type & 0xffff);
81 out.writeInt((flags & 0xff) << 24 | length & 0xffffff);
82 out.writeInt(streamId & 0x7fffffff)
    [all...]
  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/unit/
MediaPlayerMetadataParserTest.java 76 mParcel.writeInt(pos - offset);
85 mParcel.writeInt(-1); // Placeholder for the size
86 mParcel.writeInt(kMarker);
111 mParcel.writeInt(size);
130 mParcel.writeInt(13); // record length
138 mParcel.writeInt(13); // record length lies
139 mParcel.writeInt(Metadata.TITLE);
147 mParcel.writeInt(0);
155 mParcel.writeInt(12);
156 mParcel.writeInt(Metadata.TITLE)
    [all...]
  /frameworks/base/location/java/com/android/internal/location/
ProviderProperties.java 142 parcel.writeInt(mRequiresNetwork ? 1 : 0);
143 parcel.writeInt(mRequiresSatellite ? 1 : 0);
144 parcel.writeInt(mRequiresCell ? 1 : 0);
145 parcel.writeInt(mHasMonetaryCost ? 1 : 0);
146 parcel.writeInt(mSupportsAltitude ? 1 : 0);
147 parcel.writeInt(mSupportsSpeed ? 1 : 0);
148 parcel.writeInt(mSupportsBearing ? 1 : 0);
149 parcel.writeInt(mPowerRequirement);
150 parcel.writeInt(mAccuracy);
  /frameworks/base/core/java/android/appwidget/
AppWidgetProviderInfo.java 228 out.writeInt(1);
231 out.writeInt(0);
233 out.writeInt(this.minWidth);
234 out.writeInt(this.minHeight);
235 out.writeInt(this.minResizeWidth);
236 out.writeInt(this.minResizeHeight);
237 out.writeInt(this.updatePeriodMillis);
238 out.writeInt(this.initialLayout);
239 out.writeInt(this.initialKeyguardLayout);
241 out.writeInt(1)
    [all...]
  /frameworks/base/core/java/android/view/inputmethod/
ExtractedTextRequest.java 58 dest.writeInt(token);
59 dest.writeInt(this.flags);
60 dest.writeInt(hintMaxLines);
61 dest.writeInt(hintMaxChars);
ExtractedText.java 97 dest.writeInt(startOffset);
98 dest.writeInt(partialStartOffset);
99 dest.writeInt(partialEndOffset);
100 dest.writeInt(selectionStart);
101 dest.writeInt(selectionEnd);
102 dest.writeInt(this.flags);
  /sdk/testapps/basicProjectWithAidl/src/com/android/tests/basicprojectwithaidl/
Rect.java 30 out.writeInt(left);
31 out.writeInt(top);
32 out.writeInt(right);
33 out.writeInt(bottom);
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/cat/
Input.java 81 dest.writeInt(minLen);
82 dest.writeInt(maxLen);
83 dest.writeInt(ucs2 ? 1 : 0);
84 dest.writeInt(packed ? 1 : 0);
85 dest.writeInt(digitOnly ? 1 : 0);
86 dest.writeInt(echo ? 1 : 0);
87 dest.writeInt(yesNo ? 1 : 0);
88 dest.writeInt(helpAvailable ? 1 : 0);
  /external/smali/dexlib/src/main/java/org/jf/dexlib/
HeaderItem.java 189 out.writeInt(0);
196 out.writeInt(dexFile.getFileSize());
199 out.writeInt(HEADER_SIZE);
202 out.writeInt(LITTLE_ENDIAN);
205 out.writeInt(0);
208 out.writeInt(0);
211 out.writeInt(dexFile.MapItem.getOffset());
214 out.writeInt(dexFile.StringIdsSection.getItems().size());
217 out.writeInt(dexFile.StringIdsSection.getOffset());
220 out.writeInt(dexFile.TypeIdsSection.getItems().size())
    [all...]
  /frameworks/base/core/java/android/content/
SyncStatusInfo.java 68 parcel.writeInt(VERSION);
69 parcel.writeInt(authorityId);
71 parcel.writeInt(numSyncs);
72 parcel.writeInt(numSourcePoll);
73 parcel.writeInt(numSourceServer);
74 parcel.writeInt(numSourceLocal);
75 parcel.writeInt(numSourceUser);
77 parcel.writeInt(lastSuccessSource);
79 parcel.writeInt(lastFailureSource);
82 parcel.writeInt(pending ? 1 : 0)
    [all...]
  /frameworks/base/core/java/android/content/pm/
ConfigurationInfo.java 109 dest.writeInt(reqTouchScreen);
110 dest.writeInt(reqKeyboardType);
111 dest.writeInt(reqNavigation);
112 dest.writeInt(reqInputFeatures);
113 dest.writeInt(reqGlEsVersion);
PackageInfoLite.java 66 dest.writeInt(versionCode);
67 dest.writeInt(recommendedInstallLocation);
68 dest.writeInt(installLocation);
71 dest.writeInt(0);
73 dest.writeInt(verifiers.length);
  /libcore/dalvik/src/main/java/dalvik/system/profiler/
BinaryHprofWriter.java 82 out.writeInt(BinaryHprof.ID_SIZE);
94 out.writeInt(flags);
117 out.writeInt(e.threadId);
119 out.writeInt(0); // stack trace where thread was started unavailable
129 out.writeInt(e.threadId);
140 out.writeInt(timeDeltaInMicroseconds);
141 out.writeInt(recordLength);
145 out.writeInt(id);
171 out.writeInt(id);
184 out.writeInt(totalSamples)
    [all...]
  /frameworks/base/tests/FrameworkPerf/src/com/android/frameworkperf/
TestArgs.java 49 dest.writeInt(combOp);
50 dest.writeInt(fgOp);
51 dest.writeInt(bgOp);
  /frameworks/base/wifi/java/android/net/wifi/
RssiPacketCountInfo.java 49 out.writeInt(rssi);
50 out.writeInt(txgood);
51 out.writeInt(txbad);
  /packages/apps/Gallery2/gallerycommon/src/com/android/gallery3d/exif/
OrderedDataOutputStream.java 44 public OrderedDataOutputStream writeInt(int value) throws IOException {
52 writeInt((int) rational.getNumerator());
53 writeInt((int) rational.getDenominator());
  /packages/apps/Gallery2/src/com/android/gallery3d/util/
ProfileData.java 52 private byte mScratch[] = new byte[4]; // scratch space for writeInt()
106 writeInt(0);
107 writeInt(3);
108 writeInt(1);
109 writeInt(20000); // Sampling period: 20ms
110 writeInt(0);
116 writeInt(0);
117 writeInt(1);
118 writeInt(0);
132 writeInt(node.sampleCount)
    [all...]
  /dalvik/dx/src/com/android/dx/dex/
TableOfContents.java 170 out.writeInt(checksum);
172 out.writeInt(fileSize);
173 out.writeInt(SizeOf.HEADER_ITEM);
174 out.writeInt(DexFormat.ENDIAN_TAG);
175 out.writeInt(linkSize);
176 out.writeInt(linkOff);
177 out.writeInt(mapList.off);
178 out.writeInt(stringIds.size);
179 out.writeInt(stringIds.off);
180 out.writeInt(typeIds.size)
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/
TraceCommandWriter.java 48 mStream.writeInt(CMD_SIZE);
49 mStream.writeInt(cmd);
  /frameworks/base/core/java/android/os/
Parcel.java 64 * {@link #readDouble}, {@link #writeFloat}, {@link #readFloat}, {@link #writeInt},
469 writeInt(-1);
480 public final void writeInt(int val) {
560 writeInt(val);
584 writeInt(-1);
588 writeInt(entries.size());
601 writeInt(-1);
615 writeInt(-1);
620 writeInt(N);
634 writeInt(-1)
    [all...]
  /external/emma/core/java12/com/vladium/jcd/lib/
UDataOutputStream.java 44 writeInt ((int) ulong); // this narrowing cast is Ok
  /frameworks/base/core/java/android/app/
ResultInfo.java 55 out.writeInt(mRequestCode);
56 out.writeInt(mResultCode);
58 out.writeInt(1);
61 out.writeInt(0);
  /frameworks/base/core/java/android/database/
BulkCursorDescriptor.java 59 out.writeInt(wantsAllOnMoveCalls ? 1 : 0);
60 out.writeInt(count);
62 out.writeInt(1);
65 out.writeInt(0);
  /frameworks/base/core/java/android/hardware/usb/
UsbEndpoint.java 157 parcel.writeInt(mAddress);
158 parcel.writeInt(mAttributes);
159 parcel.writeInt(mMaxPacketSize);
160 parcel.writeInt(mInterval);
UsbInterface.java 141 parcel.writeInt(mId);
142 parcel.writeInt(mClass);
143 parcel.writeInt(mSubclass);
144 parcel.writeInt(mProtocol);

Completed in 1169 milliseconds

1 2 3 4 5 6 7 8 91011>>