HomeSort by relevance Sort by last modified time
    Searched refs:writeByte (Results 201 - 225 of 540) sorted by null

1 2 3 4 5 6 7 891011>>

  /libcore/ojluni/src/main/java/java/io/
DataOutputStream.java 152 public final void writeByte(int v) throws IOException {
  /libcore/ojluni/src/main/java/java/time/
Ser.java 166 out.writeByte(type);
ZoneOffset.java 749 * out.writeByte(8); // identifies a ZoneOffset
751 * out.writeByte(offsetByte);
775 out.writeByte(Ser.ZONE_OFFSET_TYPE)
    [all...]
  /libcore/ojluni/src/main/java/java/util/zip/
ZipOutputStream.java 458 writeByte(flagEXTT);
581 writeByte(flagEXTT);
585 writeByte(flagEXTT);
705 private void writeByte(int v) throws IOException {
  /packages/apps/Dialer/java/com/android/incallui/rtt/impl/
RttCheckableButton.java 224 dest.writeByte((byte) (isChecked ? 1 : 0));
  /packages/apps/Dialer/java/com/android/incallui/video/impl/
CheckableImageButton.java 219 dest.writeByte((byte) (isChecked ? 1 : 0));
  /external/guava/guava/src/com/google/common/hash/
BloomFilter.java 424 dout.writeByte(SignedBytes.checkedCast(strategy.ordinal()));
425 dout.writeByte(UnsignedBytes.checkedCast(numHashFunctions)); // note: checked at the c'tor
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/
HttpUrl.java     [all...]
  /external/okhttp/okhttp-ws-tests/src/test/java/com/squareup/okhttp/internal/ws/
WebSocketWriterTest.java 136 payload.writeByte('0');
156 payload.writeByte('0');
  /external/turbine/java/com/google/turbine/bytecode/
AttributeWriter.java 168 tmp.writeByte(attribute.annotations().size());
200 output.writeByte(attribute.parameters().size());
  /frameworks/base/core/java/android/service/euicc/
EuiccProfileInfo.java 189 dest.writeByte((byte) 1);
192 dest.writeByte((byte) 0);
  /frameworks/base/telecomm/java/android/telecom/
ParcelableCall.java 395 destination.writeByte((byte) (mIsVideoCallProviderChanged ? 1 : 0));
406 destination.writeByte((byte) (mIsRttCallChanged ? 1 : 0));
  /frameworks/base/wifi/java/android/net/wifi/
WifiInfo.java 506 dest.writeByte((byte)1);
509 dest.writeByte((byte)0);
RttManager.java 539 dest.writeByte(params.secure ? (byte) 1 : 0);
844 dest.writeByte(result.LCI.id);
846 dest.writeByte((byte)result.LCI.data.length);
849 dest.writeByte(result.LCR.id);
851 dest.writeByte((byte) result.LCR.data.length)
    [all...]
  /frameworks/native/libs/binder/
Value.cpp 331 HANDLE_WRITE_TYPE(int8_t, VAL_BYTE, writeByte)
332 HANDLE_WRITE_TYPE(int8_t, VAL_BYTE, writeByte)
  /libcore/ojluni/src/main/java/java/time/chrono/
MinguoDate.java 487 * out.writeByte(8); // identifies a MinguoDate
489 * out.writeByte(get(MONTH_OF_YEAR));
490 * out.writeByte(get(DAY_OF_MONTH));
502 out.writeByte(get(MONTH_OF_YEAR));
503 out.writeByte(get(DAY_OF_MONTH));
ThaiBuddhistDate.java 487 * out.writeByte(10); // identifies a ThaiBuddhistDate
489 * out.writeByte(get(MONTH_OF_YEAR));
490 * out.writeByte(get(DAY_OF_MONTH));
502 out.writeByte(this.get(MONTH_OF_YEAR));
503 out.writeByte(this.get(DAY_OF_MONTH));
  /packages/apps/Settings/src/com/android/settings/datausage/
CellDataPreference.java 315 dest.writeByte((byte) (mChecked ? 1 : 0));
316 dest.writeByte((byte) (mMultiSimDialog ? 1 : 0));
  /packages/services/Telephony/src/com/android/phone/
MobileDataPreference.java 297 dest.writeByte((byte) (mChecked ? 1 : 0));
298 dest.writeByte((byte) (mMultiSimDialog ? 1 : 0));
  /prebuilts/go/darwin-x86/src/compress/flate/
dict_decoder.go 11 // stream as is. This is accomplished through the writeByte method for a
90 // writeByte writes a single byte to the dictionary.
93 func (dd *dictDecoder) writeByte(c byte) {
  /prebuilts/go/linux-x86/src/compress/flate/
dict_decoder.go 11 // stream as is. This is accomplished through the writeByte method for a
90 // writeByte writes a single byte to the dictionary.
93 func (dd *dictDecoder) writeByte(c byte) {
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/framed/
Http2.java 573 sink.writeByte(type & 0xff);
574 sink.writeByte(flags & 0xff);
767 sink.writeByte((i >>> 16) & 0xff);
768 sink.writeByte((i >>> 8) & 0xff);
769 sink.writeByte(i & 0xff);
  /external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/shadows/
ParcelTest.java 172 parcel.writeByte(val);
180 parcel.writeByte(i);
469 parcel.writeByte((byte) 0);
  /external/robolectric-shadows/robolectric/src/test/java/org/robolectric/shadows/
ShadowParcelTest.java 239 parcel.writeByte(val);
247 parcel.writeByte(i);
522 parcel.writeByte((byte) 0xAF);
  /frameworks/base/location/java/android/location/
GpsMeasurement.java     [all...]

Completed in 939 milliseconds

1 2 3 4 5 6 7 891011>>