Home
last modified time | relevance | path

Searched refs:toFrc9000Int (Results 1 – 11 of 11) sorted by relevance

/packages/modules/AdServices/adservices/tests/unittest/service-core/src/com/android/adservices/service/common/bhttp/
DRequestControlDataTest.java20 …t static com.android.adservices.service.common.bhttp.Frc9000VariableLengthIntegerUtil.toFrc9000Int;
47 toFrc9000Int(METHOD.length), in testEncodeAndDecode_normal()
49 toFrc9000Int(SCHEME.length), in testEncodeAndDecode_normal()
51 toFrc9000Int(AUTHORITY.length), in testEncodeAndDecode_normal()
53 toFrc9000Int(PATH.length), in testEncodeAndDecode_normal()
63 toFrc9000Int(METHOD.length), in testEncodeAndDecode_normal()
65 toFrc9000Int(SCHEME.length), in testEncodeAndDecode_normal()
67 toFrc9000Int(AUTHORITY.length), in testEncodeAndDecode_normal()
69 toFrc9000Int(PATH.length), in testEncodeAndDecode_normal()
83 toFrc9000Int(METHOD.length), in deserialize_NotEnoughData()
[all …]
DFieldsTest.java42 Frc9000VariableLengthIntegerUtil.toFrc9000Int(fieldName1.length()), in testDeserialize_normal()
44 Frc9000VariableLengthIntegerUtil.toFrc9000Int(fieldValue1.length()), in testDeserialize_normal()
46 Frc9000VariableLengthIntegerUtil.toFrc9000Int(fieldName2.length()), in testDeserialize_normal()
48 Frc9000VariableLengthIntegerUtil.toFrc9000Int(fieldValue2.length()), in testDeserialize_normal()
57 Frc9000VariableLengthIntegerUtil.toFrc9000Int( in testDeserialize_normal()
71 Frc9000VariableLengthIntegerUtil.toFrc9000Int(10), in testSubReaderGoOutOfBound()
72 Frc9000VariableLengthIntegerUtil.toFrc9000Int(9), in testSubReaderGoOutOfBound()
DResponseControlDataTest.java20 …t static com.android.adservices.service.common.bhttp.Frc9000VariableLengthIntegerUtil.toFrc9000Int;
90 toFrc9000Int(50), in testDeserializeInvalidResponseCode()
91 toFrc9000Int(0))))); in testDeserializeInvalidResponseCode()
DFrc9000VariableLengthIntegerTest.java70 assertArrayEquals(bytes, Frc9000VariableLengthIntegerUtil.toFrc9000Int(number)); in testEquals()
/packages/modules/AdServices/adservices/service-core/java/com/android/adservices/service/common/bhttp/
DRequestControlData.java19 …t static com.android.adservices.service.common.bhttp.Frc9000VariableLengthIntegerUtil.toFrc9000Int;
75 toFrc9000Int(method.length), in knownLengthSerialize()
77 toFrc9000Int(scheme.length), in knownLengthSerialize()
79 toFrc9000Int(authority.length), in knownLengthSerialize()
81 toFrc9000Int(path.length), in knownLengthSerialize()
DField.java19 …t static com.android.adservices.service.common.bhttp.Frc9000VariableLengthIntegerUtil.toFrc9000Int;
57 return new byte[][] {toFrc9000Int(name.length), name, toFrc9000Int(value.length), value}; in knownLengthSerialize()
DInformativeResponse.java19 …t static com.android.adservices.service.common.bhttp.Frc9000VariableLengthIntegerUtil.toFrc9000Int;
59 result[0] = toFrc9000Int(getInformativeStatusCode()); in knownLengthSerialize()
DResponseControlData.java19 …t static com.android.adservices.service.common.bhttp.Frc9000VariableLengthIntegerUtil.toFrc9000Int;
78 result[pos] = toFrc9000Int(getFinalStatusCode()); in knownLengthSerialize()
DFields.java19 …t static com.android.adservices.service.common.bhttp.Frc9000VariableLengthIntegerUtil.toFrc9000Int;
81 byte[] length = toFrc9000Int(totalLength); in knownLengthSerialize()
DBinaryHttpMessage.java19 …t static com.android.adservices.service.common.bhttp.Frc9000VariableLengthIntegerUtil.toFrc9000Int;
162 byte[][] content = new byte[][] {toFrc9000Int(getContent().length), getContent()}; in knownLengthSerialize()
DFrc9000VariableLengthIntegerUtil.java31 public static byte[] toFrc9000Int(long i) { in toFrc9000Int() method in Frc9000VariableLengthIntegerUtil