Home
last modified time | relevance | path

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

1234

/system/update_engine/update_manager/
Dboxed_value.cc45 const string* val = reinterpret_cast<const string*>(value); in ValuePrinter() local
51 const int* val = reinterpret_cast<const int*>(value); in ValuePrinter() local
57 const unsigned int* val = reinterpret_cast<const unsigned int*>(value); in ValuePrinter() local
63 const int64_t* val = reinterpret_cast<const int64_t*>(value); in ValuePrinter() local
69 const uint64_t* val = in ValuePrinter() local
76 const bool* val = reinterpret_cast<const bool*>(value); in ValuePrinter() local
82 const double* val = reinterpret_cast<const double*>(value); in ValuePrinter() local
88 const base::Time* val = reinterpret_cast<const base::Time*>(value); in ValuePrinter() local
94 const base::TimeDelta* val = reinterpret_cast<const base::TimeDelta*>(value); in ValuePrinter() local
100 const ConnectionType* val = reinterpret_cast<const ConnectionType*>(value); in ValuePrinter() local
[all …]
/system/keymaster/include/keymaster/
Dauthorization_set.h233 bool Contains(TypedEnumTag<KM_ENUM_REP, Tag, T> tag, T val) const { in Contains()
241 bool Contains(TypedEnumTag<KM_ENUM, Tag, T> tag, T val) const { in Contains()
249 bool Contains(TypedTag<KM_UINT, Tag> tag, uint32_t val) const { in Contains()
258 inline bool GetTagValue(TypedTag<KM_UINT, T> tag, uint32_t* val) const { in GetTagValue()
268 bool GetTagValue(TypedTag<KM_UINT_REP, Tag> tag, size_t instance, uint32_t* val) const { in GetTagValue()
277 inline bool GetTagValue(TypedTag<KM_ULONG, T> tag, uint64_t* val) const { in GetTagValue()
287 bool GetTagValue(TypedTag<KM_ULONG_REP, Tag> tag, size_t instance, uint64_t* val) const { in GetTagValue()
296 bool GetTagValue(TypedEnumTag<KM_ENUM, Tag, T> tag, T* val) const { in GetTagValue()
306 bool GetTagValue(TypedEnumTag<KM_ENUM_REP, Tag, T> tag, size_t instance, T* val) const { in GetTagValue()
316 bool GetTagValue(TypedEnumTag<KM_ENUM_REP, Tag, T> tag, T* val) const { in GetTagValue()
[all …]
Dserializable.h89 uint32_t val = static_cast<uint32_t>(value); in append_uint32_to_buf() local
157 uint32_t val; in copy_uint32_from_buf() local
/system/extras/tests/sdcard/
Dtestcase.h61 void setNproc(size_t val) { mNproc = val; } in setNproc()
64 void setDataSize(size_t val) { mDataSize = val; } in setDataSize()
67 void setChunkSize(size_t val) { mChunkSize = val; } in setChunkSize()
70 void setTreeDepth(size_t val) { mTreeDepth = val; } in setTreeDepth()
73 void setNewFairSleepers(bool val) { in setNewFairSleepers()
79 void setNormalizedSleepers(bool val) { in setNormalizedSleepers()
/system/libhwbinder/
DDebug.cpp60 static inline char makehexdigit(uint32_t val) in makehexdigit()
65 static char* appendhexnum(uint32_t val, char* out) in appendhexnum()
234 const unsigned char val = *(pos+startIndex-index); in printHexData() local
251 const unsigned char val = *(pos+startIndex-index); in printHexData() local
269 const unsigned char val = pos[index]; in printHexData() local
DTextOutput.cpp46 TextOutput& operator<<(TextOutput& to, const TypeCode& val) in operator <<()
65 TextOutput& operator<<(TextOutput& to, const HexDump& val) in operator <<()
DParcel.cpp610 status_t Parcel::writeInt8(int8_t val) in writeInt8()
615 status_t Parcel::writeUint8(uint8_t val) in writeUint8()
620 status_t Parcel::writeInt16(int16_t val) in writeInt16()
625 status_t Parcel::writeUint16(uint16_t val) in writeUint16()
630 status_t Parcel::writeInt32(int32_t val) in writeInt32()
635 status_t Parcel::writeUint32(uint32_t val) in writeUint32()
640 status_t Parcel::writeBool(bool val) in writeBool()
644 status_t Parcel::writeInt64(int64_t val) in writeInt64()
649 status_t Parcel::writeUint64(uint64_t val) in writeUint64()
654 status_t Parcel::writePointer(uintptr_t val) in writePointer()
[all …]
/system/keymaster/
Dandroid_keymaster_test_utils.h59 KeymasterEnum val) { in contains()
66 KeymasterEnum val) { in contains()
75 bool contains(const AuthorizationSet& set, TypedTag<KM_UINT, Tag> tag, uint32_t val) { in contains()
81 bool contains(const AuthorizationSet& set, TypedTag<KM_UINT_REP, Tag> tag, uint32_t val) { in contains()
90 bool contains(const AuthorizationSet& set, TypedTag<KM_ULONG, Tag> tag, uint64_t val) { in contains()
96 bool contains(const AuthorizationSet& set, TypedTag<KM_BYTES, Tag> tag, const std::string& val) { in contains()
104 bool contains(const AuthorizationSet& set, TypedTag<KM_BIGNUM, Tag> tag, const std::string& val) { in contains()
DList.h50 explicit _Node(const T& val) : mVal(val) {} in _Node()
56 inline void setVal(const T& val) { mVal = val; } in setVal()
207 void push_front(const T& val) { insert(begin(), val); } in push_front()
208 void push_back(const T& val) { insert(end(), val); } in push_back()
211 iterator insert(iterator posn, const T& val) in insert()
Dauthorization_set_test.cpp251 uint32_t val; in read_uint32() local
257 uint32_t val; in add_to_uint32() local
429 uint32_t val; in TEST() local
449 uint64_t val; in TEST() local
471 uint64_t val; in TEST() local
491 keymaster_algorithm_t val; in TEST() local
510 keymaster_purpose_t val; in TEST() local
531 uint64_t val; in TEST() local
549 keymaster_blob_t val; in TEST() local
Dopenssl_utils.h82 T* val __attribute__((unused)) = p.release(); in release_because_ownership_transferred() local
/system/core/libutils/include/utils/
DList.h50 explicit _Node(const T& val) : mVal(val) {} in _Node()
56 inline void setVal(const T& val) { mVal = val; } in setVal()
207 void push_front(const T& val) { insert(begin(), val); } in push_front()
208 void push_back(const T& val) { insert(end(), val); } in push_back()
211 iterator insert(iterator posn, const T& val) in insert()
/system/core/libsysutils/include/sysutils/
DList.h51 explicit _Node(const T& val) : mVal(val) {} in _Node()
57 inline void setVal(const T& val) { mVal = val; } in setVal()
208 void push_front(const T& val) { insert(begin(), val); } in push_front()
209 void push_back(const T& val) { insert(end(), val); } in push_back()
212 iterator insert(iterator posn, const T& val) in insert()
/system/core/toolbox/upstream-netbsd/lib/libc/stdlib/
Dstrsuftoll.c134 __strsuftollx(const char *desc, const char *val, in __strsuftollx()
244 strsuftollx(const char *desc, const char *val, in strsuftollx()
/system/core/libcutils/tests/
DPropertiesTest.cpp233 bool val = property_get_bool(PROPERTY_TEST_KEY, /*default_value*/false); in TEST_F() local
243 bool val = property_get_bool(PROPERTY_TEST_KEY, /*default_value*/true); in TEST_F() local
258 bool val = property_get_bool(PROPERTY_TEST_KEY, /*default_value*/true); in TEST_F() local
308 int64_t val = property_get_int64(PROPERTY_TEST_KEY, DEFAULT_VALUE); in TEST_F() local
355 int32_t val = property_get_int32(PROPERTY_TEST_KEY, DEFAULT_VALUE); in TEST_F() local
Dandroid_get_control_socket_test.cpp60 char val[32]; in TEST() local
/system/core/libsync/
Dsync_test.c94 unsigned val = i + j * 3 + 1; in main() local
142 void *val; in main() local
/system/extras/tests/lib/testUtil/
DtestUtil.c46 double ts2double(const struct timespec *val) in ts2double()
57 double tv2double(const struct timeval *val) in tv2double()
183 uint32_t val; in testRand() local
210 uint32_t val = (mod <= lrand48maxVal) ? (uint32_t) lrand48() : testRand(); in testRandMod() local
/system/extras/alloc-stress/
Dalloc-stress.cpp66 bool val = true; in signal() local
71 bool val = false; in wait() local
76 bool val = false; in wait_ret_error() local
/system/bt/osi/include/socket_utils/
Dsockets.h41 const char* val = getenv(key); in osi_android_get_control_socket() local
/system/bt/btcore/test/
Ddevice_class_test.cc87 uint32_t* val = (uint32_t*)&dc; in TEST_F() local
104 uint32_t* val = (uint32_t*)&dc; in TEST_F() local
121 uint32_t* val = (uint32_t*)&dc; in TEST_F() local
/system/extras/tests/workloads/
Dpowerave.py33 val = float(line.split(" ")[1]) # xxx take 2nd arg in line variable
/system/core/libcutils/
Dandroid_get_control_file.cpp61 const char* val = getenv(key); in __android_get_control_from_env() local
Dstr_parms.c292 int str_parms_get_str(struct str_parms *str_parms, const char *key, char *val, in str_parms_get_str()
304 int str_parms_get_int(struct str_parms *str_parms, const char *key, int *val) in str_parms_get_int()
321 float *val) in str_parms_get_float()
/system/bt/bta/ag/
Dbta_ag_cmd.cc606 tBTA_AG_VAL val; in bta_ag_at_hsp_cback() local
666 static bool bta_ag_parse_bind_set(tBTA_AG_SCB* p_scb, tBTA_AG_VAL val) { in bta_ag_parse_bind_set()
774 static bool bta_ag_parse_biev_response(tBTA_AG_SCB* p_scb, tBTA_AG_VAL* val) { in bta_ag_parse_biev_response()
827 tBTA_AG_VAL val; in bta_ag_at_hfp_cback() local
1265 tBTA_AG_VAL val; in bta_ag_at_err_cback() local

1234