Home
last modified time | relevance | path

Searched defs:val (Results 1 – 25 of 1110) sorted by relevance

12345678910>>...45

/aosp12/system/update_engine/update_manager/
H A Dboxed_value.cc48 const string* val = reinterpret_cast<const string*>(value); variable
54 const int* val = reinterpret_cast<const int*>(value); variable
78 const bool* val = reinterpret_cast<const bool*>(value); variable
109 const set<ConnectionType>* val = variable
122 const ConnectionTethering* val = variable
140 const RollbackToTargetVersion* val = variable
190 const UpdateRequestStatus* val = variable
206 const UpdateRestrictions* val = variable
221 const WeeklyTimeInterval* val = variable
228 const WeeklyTimeIntervalVector* val = variable
[all …]
/aosp12/frameworks/native/include/binder/
H A DParcel.h210 status_t writeEnumVector(const std::vector<T>& val) in writeEnumVector()
213 status_t writeEnumVector(const std::optional<std::vector<T>>& val) in writeEnumVector()
220 status_t writeEnumVector(const std::vector<T>& val) in writeEnumVector()
223 status_t writeEnumVector(const std::optional<std::vector<T>>& val) in writeEnumVector()
242 status_t writeParcelableVector(const std::vector<T>& val) in writeParcelableVector()
368 status_t readEnumVector(std::vector<T>* val) const in readEnumVector()
374 status_t readEnumVector(std::optional<std::vector<T>>* val) const in readEnumVector()
378 status_t readEnumVector(std::vector<T>* val) const in readEnumVector()
384 status_t readEnumVector(std::optional<std::vector<T>>* val) const in readEnumVector()
389 std::optional<std::vector<std::optional<T>>>* val) const in readParcelableVector()
[all …]
/aosp12/frameworks/native/libs/binder/include/binder/
H A DParcel.h210 status_t writeEnumVector(const std::vector<T>& val) in writeEnumVector()
213 status_t writeEnumVector(const std::optional<std::vector<T>>& val) in writeEnumVector()
220 status_t writeEnumVector(const std::vector<T>& val) in writeEnumVector()
223 status_t writeEnumVector(const std::optional<std::vector<T>>& val) in writeEnumVector()
242 status_t writeParcelableVector(const std::vector<T>& val) in writeParcelableVector()
368 status_t readEnumVector(std::vector<T>* val) const in readEnumVector()
374 status_t readEnumVector(std::optional<std::vector<T>>* val) const in readEnumVector()
378 status_t readEnumVector(std::vector<T>* val) const in readEnumVector()
384 status_t readEnumVector(std::optional<std::vector<T>>* val) const in readEnumVector()
389 std::optional<std::vector<std::optional<T>>>* val) const in readParcelableVector()
[all …]
/aosp12/frameworks/base/core/java/android/util/proto/
H A DEncodedBuffer.java271 public void writeRawByte(byte val) { in writeRawByte()
281 public static int getRawVarint32Size(int val) { in getRawVarint32Size()
294 public void writeRawVarint32(int val) { in writeRawVarint32()
309 public static int getRawZigZag32Size(int val) { in getRawZigZag32Size()
318 public void writeRawZigZag32(int val) { in writeRawZigZag32()
325 public static int getRawVarint64Size(long val) { in getRawVarint64Size()
341 public void writeRawVarint64(long val) { in writeRawVarint64()
363 public void writeRawZigZag64(long val) { in writeRawZigZag64()
370 public void writeRawFixed32(int val) { in writeRawFixed32()
380 public void writeRawFixed64(long val) { in writeRawFixed64()
[all …]
H A DProtoOutputStream.java227 public void write(long fieldId, double val) { in write()
362 public void write(long fieldId, float val) { in write()
497 public void write(long fieldId, int val) { in write()
632 public void write(long fieldId, long val) { in write()
765 public void write(long fieldId, boolean val) { in write()
1054 public void writeInt32(long fieldId, int val) { in writeInt32()
1061 private void writeInt32Impl(int id, int val) { in writeInt32Impl()
1142 private void writeInt64Impl(int id, long val) { in writeInt64Impl()
1214 private void writeUInt32Impl(int id, int val) { in writeUInt32Impl()
1944 public void writeEnum(long fieldId, int val) { in writeEnum()
[all …]
/aosp12/frameworks/base/core/java/android/os/
H A DHwParcel.java88 public native final void writeBool(boolean val); in writeBool()
94 public native final void writeInt8(byte val); in writeInt8()
100 public native final void writeInt16(short val); in writeInt16()
106 public native final void writeInt32(int val); in writeInt32()
112 public native final void writeInt64(long val); in writeInt64()
118 public native final void writeFloat(float val); in writeFloat()
124 public native final void writeDouble(double val); in writeDouble()
133 public native final void writeString(String val); in writeString()
154 private native final void writeInt8Vector(byte[] val); in writeInt8Vector()
166 private native final void writeInt32Vector(int[] val); in writeInt32Vector()
[all …]
H A DParcel.java794 public final void writeInt(int val) { in writeInt()
805 public final void writeLong(long val) { in writeLong()
957 public final void writeByte(byte val) { in writeByte()
1274 char[] val = new char[N]; in createCharArray() local
1311 int[] val = new int[N]; in createIntArray() local
1349 long[] val = new long[N]; in createLongArray() local
1387 float[] val = new float[N]; in createFloatArray() local
1425 double[] val = new double[N]; in createDoubleArray() local
1477 String[] val = new String[N]; in createString8Array() local
1517 String[] val = new String[N]; in createString16Array() local
[all …]
/aosp12/frameworks/base/errorprone/tests/res/android/os/
H A DParcel.java22 public void writeString(String val) { in writeString()
25 public void writeString8(String val) { in writeString8()
28 public final void writeStringArray(String[] val) { in writeStringArray()
31 public final void writeString8Array(String[] val) { in writeString8Array()
42 public final void writeList(List val) { in writeList()
45 public final <T extends Parcelable> void writeParcelableList(List<T> val, int flags) { in writeParcelableList()
48 public <T extends Parcelable> void writeTypedList(List<T> val, int flags) { in writeTypedList()
54 public final <T extends Parcelable> void writeTypedArray(T[] val, int flags) { in writeTypedArray()
/aosp12/frameworks/base/libs/protoutil/src/
H A DProtoOutputStream.cpp104 ProtoOutputStream::write(uint64_t fieldId, double val) in write()
111 ProtoOutputStream::write(uint64_t fieldId, float val) in write()
117 ProtoOutputStream::write(uint64_t fieldId, int val) in write()
123 ProtoOutputStream::write(uint64_t fieldId, long val) in write()
151 ProtoOutputStream::write(uint64_t fieldId, long long val) in write()
157 ProtoOutputStream::write(uint64_t fieldId, bool val) in write()
173 ProtoOutputStream::write(uint64_t fieldId, std::string val) in write()
562 ProtoOutputStream::writeDoubleImpl(uint32_t id, double val) in writeDoubleImpl()
569 ProtoOutputStream::writeFloatImpl(uint32_t id, float val) in writeFloatImpl()
646 ProtoOutputStream::writeEnumImpl(uint32_t id, int val) in writeEnumImpl()
[all …]
H A DEncodedBuffer.cpp160 EncodedBuffer::writeRawByte(uint8_t val) in writeRawByte()
167 EncodedBuffer::writeRawVarint64(uint64_t val) in writeRawVarint64()
183 EncodedBuffer::writeRawVarint32(uint32_t val) in writeRawVarint32()
190 EncodedBuffer::writeRawFixed32(uint32_t val) in writeRawFixed32()
199 EncodedBuffer::writeRawFixed64(uint64_t val) in writeRawFixed64()
284 uint8_t val = *at(mEp); in readRawByte() local
292 uint64_t val = 0, shift = 0; in readRawVarint() local
306 uint32_t val = 0; in readRawFixed32() local
316 uint64_t val = 0; in readRawFixed64() local
324 EncodedBuffer::editRawFixed32(size_t pos, uint32_t val) in editRawFixed32()
[all …]
/aosp12/frameworks/base/tools/aapt/
H A DBundle.h87 void setVerbose(bool val) { mVerbose = val; } in setVerbose()
89 void setAndroidList(bool val) { mAndroidList = val; } in setAndroidList()
91 void setForce(bool val) { mForce = val; } in setForce()
97 void setUpdate(bool val) { mUpdate = val; } in setUpdate()
99 void setExtending(bool val) { mExtending = val; } in setExtending()
104 void setWantUTF16(bool val) { mWantUTF16 = val; } in setWantUTF16()
106 void setValues(bool val) { mValues = val; } in setValues()
112 void setJunkPath(bool val) { mJunkPath = val; } in setJunkPath()
207 void setDebugMode(bool val) { mDebugMode = val; } in setDebugMode()
209 void setNonConstantId(bool val) { mNonConstantId = val; } in setNonConstantId()
[all …]
/aosp12/hardware/broadcom/wlan/bcmdhd/dhdutil/include/
H A Dbcmendian.h30 #define BCMSWAP16(val) \ argument
35 #define BCMSWAP32(val) \ argument
42 #define BCMSWAP32BY16(val) \ argument
101 #define bcmswap16(val) ({ \ argument
106 #define bcmswap32(val) ({ \ argument
111 #define bcmswap32by16(val) ({ \ argument
125 #define htol16_ua_store(val, bytes) ({ \ argument
132 #define htol32_ua_store(val, bytes) ({ \ argument
181 bcmswap16(uint16 val) in bcmswap16()
187 bcmswap32(uint32 val) in bcmswap32()
[all …]
/aosp12/art/test/542-inline-trycatch/src/
H A DMain.java48 int val = 0; in testSingleBlockFromTry() local
64 int val = 0; in testSingleBlockFromCatch() local
75 int val = 0; in testMultipleBlocksFromTry() local
103 int val = 0; in testMultipleBlocksFromCatch() local
121 int val = 0; in testTryCatchFromTry() local
139 int val = 0; in testTryCatchFromCatch() local
/aosp12/hardware/libhardware/modules/camera/3_4/metadata/
H A Dmetadata_common.h77 const T& val) { in UpdateMetadata()
85 const std::vector<T>& val) { in UpdateMetadata()
93 const std::array<T, N>& val) { in UpdateMetadata()
101 const ArrayVector<T, N>& val) { in UpdateMetadata()
109 const std::vector<std::array<T, N>>& val) { in UpdateMetadata()
180 T* val) { in SingleTagValue()
211 std::array<T, N>* val) { in SingleTagValue()
260 std::vector<T>* val) { in VectorTagValue()
284 std::vector<std::array<T, N>>* val) { in VectorTagValue()
/aosp12/packages/apps/Test/connectivity/sl4n/rapidjson/include/rapidjson/msinttypes/
H A Dstdint.h65 #define INT8_C(val) val##i8 argument
66 #define INT16_C(val) val##i16 argument
67 #define INT32_C(val) val##i32 argument
68 #define INT64_C(val) val##i64 argument
70 #define UINT8_C(val) val##ui8 argument
71 #define UINT16_C(val) val##ui16 argument
72 #define UINT32_C(val) val##ui32 argument
73 #define UINT64_C(val) val##ui64 argument
276 #define INT8_C(val) val##i8 argument
277 #define INT16_C(val) val##i16 argument
[all …]
/aosp12/art/runtime/
H A Doffsets.h30 constexpr explicit Offset(size_t val) : val_(val) {} in Offset()
55 constexpr explicit FrameOffset(size_t val) : Offset(val) {} in FrameOffset()
64 constexpr explicit ThreadOffset(size_t val) : Offset(val) {} in ThreadOffset()
73 constexpr explicit MemberOffset(size_t val) : Offset(val) {} in MemberOffset()
/aosp12/system/incremental_delivery/incfs/tests/
H A Dhardening_benchmark.cpp43 int val = 0; in TestEmpty() local
54 int val; in TestSignal() local
64 int val = 0; in TestRead() local
77 int val = 0; in TestMapPtrRaw() local
91 int val = 0; in TestMapPtr() local
101 int val = 0; in TestAccess() local
111 int val = 0; in TestAccessFast() local
123 int val = 0; in TestAccessVal() local
133 int val = 0; in TestAccessNested() local
145 int val = 0; in TestAccessDoubleNested() local
[all …]
/aosp12/frameworks/base/services/usage/java/com/android/server/usage/
H A DUnixCalendar.java34 public void addDays(int val) { in addDays()
38 public void addWeeks(int val) { in addWeeks()
42 public void addMonths(int val) { in addMonths()
46 public void addYears(int val) { in addYears()
/aosp12/hardware/interfaces/identity/support/tests/
H A Dcppbor_test.cpp455 Uint val(99); in TEST() local
468 Nint val(-1); in TEST() local
481 Tstr val("99"); in TEST() local
495 Bstr val("99"); in TEST() local
539 Map val(99, 1); in TEST() local
699 Uint val(100); in TEST() local
714 Nint val(-10); in TEST() local
730 Bool val(true); in TEST() local
881 Uint val(10); in TEST() local
888 Nint val(-10); in TEST() local
[all …]
/aosp12/art/test/ti-agent/
H A Dearly_return_helper.cc35 JNIEnv* env, jclass k ATTRIBUTE_UNUSED, jthread thr, jfloat val) { in Java_art_NonStandardExit_forceEarlyReturnFloat()
40 JNIEnv* env, jclass k ATTRIBUTE_UNUSED, jthread thr, jdouble val) { in Java_art_NonStandardExit_forceEarlyReturnDouble()
45 JNIEnv* env, jclass k ATTRIBUTE_UNUSED, jthread thr, jlong val) { in Java_art_NonStandardExit_forceEarlyReturnLong()
50 JNIEnv* env, jclass k ATTRIBUTE_UNUSED, jthread thr, jint val) { in Java_art_NonStandardExit_forceEarlyReturnInt()
60 JNIEnv* env, jclass k ATTRIBUTE_UNUSED, jthread thr, jobject val) { in Java_art_NonStandardExit_forceEarlyReturnObject()
/aosp12/frameworks/native/libs/binder/
H A DParcel.cpp960 status_t Parcel::writeInt32(int32_t val) in writeInt32()
965 status_t Parcel::writeUint32(uint32_t val) in writeUint32()
1003 status_t Parcel::writeBool(bool val) in writeBool()
1008 status_t Parcel::writeChar(char16_t val) in writeChar()
1013 status_t Parcel::writeByte(int8_t val) in writeByte()
1018 status_t Parcel::writeInt64(int64_t val) in writeInt64()
1033 status_t Parcel::writeFloat(float val) in writeFloat()
1040 status_t Parcel::writeDouble(double val) in writeDouble()
1052 status_t Parcel::writeDouble(double val) in writeDouble()
1503 status_t Parcel::writeAligned(T val) { in writeAligned()
[all …]
/aosp12/frameworks/native/libs/binder/tests/
H A DbinderTextOutputTest.cpp47 #define CHECK_VAL_(val, singleline) \ argument
56 #define CHECK_VAL(val) CHECK_VAL_(val, true) argument
100 android::Parcel val; in TEST() local
106 android::HexDump val(buf, sizeof(buf)); in TEST() local
112 android::HexDump val(buf, sizeof(buf), 4); in TEST() local
117 android::TypeCode val(1234); in TEST() local
122 int32_t val = 321; //0x141 in TEST() local
127 android::String8 val("foobar"); in TEST() local
132 android::String16 val("foobar"); in TEST() local
/aosp12/frameworks/base/core/java/com/android/internal/util/
H A DArrayUtils.java452 public static @NonNull int[] appendInt(@Nullable int[] cur, int val, in appendInt()
476 public static @NonNull int[] appendInt(@Nullable int[] cur, int val) { in appendInt()
483 public static @Nullable int[] removeInt(@Nullable int[] cur, int val) { in removeInt()
530 public static @NonNull long[] appendLong(@Nullable long[] cur, long val, in appendLong()
553 public static @NonNull long[] appendLong(@Nullable long[] cur, long val) { in appendLong()
607 @Nullable Collection<T> val) { in addAll()
657 public static <T> boolean contains(@Nullable Collection<T> cur, T val) { in contains()
737 public static @NonNull int[] defeatNullable(@Nullable int[] val) { in defeatNullable()
741 public static @NonNull String[] defeatNullable(@Nullable String[] val) { in defeatNullable()
745 public static @NonNull File[] defeatNullable(@Nullable File[] val) { in defeatNullable()
[all …]
/aosp12/system/core/libutils/
H A DString8_fuzz.cpp134 int val = dataProvider->ConsumeIntegral<int>(); in fuzzFormat() local
148 uint val = dataProvider->ConsumeIntegral<uint>(); in fuzzFormat() local
166 float val = dataProvider->ConsumeFloatingPoint<float>(); in fuzzFormat() local
176 char val = dataProvider->ConsumeIntegral<char>(); in fuzzFormat() local
186 std::string val = dataProvider->ConsumeRandomLengthString(MAX_STRING_BYTES); in fuzzFormat() local
195 uintptr_t val = dataProvider->ConsumeIntegral<uintptr_t>(); in fuzzFormat() local
/aosp12/packages/apps/Car/SystemUI/src/com/android/systemui/car/hvac/
H A DHvacPropertySetter.java28 void setHvacProperty(@HvacController.HvacProperty Integer propertyId, int areaId, int val); in setHvacProperty()
34 void setHvacProperty(@HvacController.HvacProperty Integer propertyId, int areaId, float val); in setHvacProperty()
40 void setHvacProperty(@HvacController.HvacProperty Integer propertyId, int areaId, boolean val); in setHvacProperty()

12345678910>>...45