HomeSort by relevance Sort by last modified time
    Searched defs:writePackedSInt64 (Results 1 - 2 of 2) sorted by null

  /cts/tests/tests/proto/src/android/util/proto/cts/
ProtoOutputStreamSInt64Test.java 250 // writePackedSInt64
265 private void writePackedSInt64(ProtoOutputStream po, int fieldId, long val) {
267 po.writePackedSInt64(ProtoOutputStream.makeFieldId(fieldId, fieldFlags), new long[] { val, val });
277 po.writePackedSInt64(ProtoOutputStream.makeFieldId(1000, fieldFlags), null);
278 po.writePackedSInt64(ProtoOutputStream.makeFieldId(1001, fieldFlags), new long[0]);
279 writePackedSInt64(po, 1, 0);
280 writePackedSInt64(po, 2, 1);
281 writePackedSInt64(po, 3, -1);
282 writePackedSInt64(po, 4, Integer.MIN_VALUE);
283 writePackedSInt64(po, 5, Integer.MAX_VALUE)
    [all...]
  /frameworks/base/core/java/android/util/proto/
ProtoOutputStream.java     [all...]

Completed in 74 milliseconds