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

  /cts/tests/tests/proto/src/android/util/proto/cts/
ProtoOutputStreamSInt32Test.java 215 // writePackedSInt32
230 private void writePackedSInt32(ProtoOutputStream po, int fieldId, int val) {
232 po.writePackedSInt32(ProtoOutputStream.makeFieldId(fieldId, fieldFlags), new int[] { val, val });
242 po.writePackedSInt32(ProtoOutputStream.makeFieldId(1000, fieldFlags), null);
243 po.writePackedSInt32(ProtoOutputStream.makeFieldId(1001, fieldFlags), new int[0]);
244 writePackedSInt32(po, 1, 0);
245 writePackedSInt32(po, 2, 1);
246 writePackedSInt32(po, 3, -1);
247 writePackedSInt32(po, 4, Integer.MIN_VALUE);
248 writePackedSInt32(po, 5, Integer.MAX_VALUE)
    [all...]
  /frameworks/base/core/java/android/util/proto/
ProtoOutputStream.java     [all...]

Completed in 56 milliseconds