| /system/keymaster/android_keymaster/ |
| D | android_keymaster_messages.cpp | 42 const uint8_t* end) { in serialize_key_blob() 47 const uint8_t* end) { in deserialize_key_blob() 70 uint8_t* serialize_blob(const keymaster_blob_t& blob, uint8_t* buf, const uint8_t* end) { in serialize_blob() 74 bool deserialize_blob(keymaster_blob_t* blob, const uint8_t** buf_ptr, const uint8_t* end) { in deserialize_blob() 99 const uint8_t* end) { in serialize_chain() 108 CertificateChain deserialize_chain(const uint8_t** buf_ptr, const uint8_t* end) { in deserialize_chain() 178 bool KeymasterResponse::Deserialize(const uint8_t** buf_ptr, const uint8_t* end) { in Deserialize() 201 bool GenerateKeyRequest::Deserialize(const uint8_t** buf_ptr, const uint8_t* end) { in Deserialize() 224 bool GenerateKeyResponse::NonErrorDeserialize(const uint8_t** buf_ptr, const uint8_t* end) { in NonErrorDeserialize() 244 bool GenerateRkpKeyResponse::NonErrorDeserialize(const uint8_t** buf_ptr, const uint8_t* end) { in NonErrorDeserialize() [all …]
|
| D | serializable.cpp | 25 bool __buffer_bound_check(const uint8_t* buf, const uint8_t* end, size_t len) { in __buffer_bound_check() 31 uint8_t* append_to_buf(uint8_t* buf, const uint8_t* end, const void* data, size_t data_len) { in append_to_buf() 40 bool copy_from_buf(const uint8_t** buf_ptr, const uint8_t* end, void* dest, size_t size) { in copy_from_buf() 50 bool copy_size_and_data_from_buf(const uint8_t** buf_ptr, const uint8_t* end, size_t* size, in copy_size_and_data_from_buf() 175 bool Buffer::Deserialize(const uint8_t** buf_ptr, const uint8_t* end) { in Deserialize()
|
| /system/keymaster/include/keymaster/ |
| D | serializable.h | 99 inline uint8_t* append_uint32_to_buf(uint8_t* buf, const uint8_t* end, T value) { in append_uint32_to_buf() 107 inline uint8_t* append_uint64_to_buf(uint8_t* buf, const uint8_t* end, uint64_t value) { in append_uint64_to_buf() 117 inline uint8_t* append_size_and_data_to_buf(uint8_t* buf, const uint8_t* end, const void* data, in append_size_and_data_to_buf() 129 uint8_t* append_collection_to_buf(uint8_t* buf, const uint8_t* end, const T& value) { in append_collection_to_buf() 144 inline uint8_t* append_uint32_array_to_buf(uint8_t* buf, const uint8_t* end, const T* data, in append_uint32_array_to_buf() 181 inline bool copy_uint32_from_buf(const uint8_t** buf_ptr, const uint8_t* end, T* value) { in copy_uint32_from_buf() 192 inline bool copy_uint64_from_buf(const uint8_t** buf_ptr, const uint8_t* end, uint64_t* value) { in copy_uint64_from_buf() 203 inline bool copy_uint32_array_from_buf(const uint8_t** buf_ptr, const uint8_t* end, in copy_uint32_array_from_buf() 225 bool copy_collection_from_buf(const uint8_t** buf_ptr, const uint8_t* end, T* value) { in copy_collection_from_buf() 286 const uint8_t* end() const { return peek_read() + available_read(); } in end() function
|
| /system/core/trusty/coverage/ |
| D | coverage.cpp | 180 volatile uint8_t* end = nullptr; in ResetCounts() local 190 volatile uintptr_t* end = nullptr; in ResetPCs() local 219 void CoverageRecord::GetRawData(volatile void** begin, volatile void** end) { in GetRawData() 226 void CoverageRecord::GetRawCounts(volatile uint8_t** begin, volatile uint8_t** end) { in GetRawCounts() 240 void CoverageRecord::GetRawPCs(volatile uintptr_t** begin, volatile uintptr_t** end) { in GetRawPCs() 260 volatile uint8_t* end = NULL; in TotalEdgeCounts() local 286 volatile uintptr_t* end = nullptr; in SaveSancovFile() local
|
| /system/extras/simpleperf/ |
| D | record.cpp | 35 #define CHECK_SIZE(p, end, size) \ argument 42 #define CHECK_SIZE_U64(p, end, u64_count) \ argument 103 bool SampleId::ReadFromBinaryFormat(const perf_event_attr& attr, const char* p, const char* end) { in ReadFromBinaryFormat() 210 bool Record::ParseHeader(char*& p, char*& end) { in ParseHeader() 248 bool MmapRecord::Parse(const perf_event_attr& attr, char* p, char* end) { in Parse() 297 bool Mmap2Record::Parse(const perf_event_attr& attr, char* p, char* end) { in Parse() 350 bool CommRecord::Parse(const perf_event_attr& attr, char* p, char* end) { in Parse() 412 bool ExitOrForkRecord::Parse(const perf_event_attr& attr, char* p, char* end) { in Parse() 447 bool LostRecord::Parse(const perf_event_attr& attr, char* p, char* end) { in Parse() 461 bool SampleRecord::Parse(const perf_event_attr& attr, char* p, char* end) { in Parse() [all …]
|
| D | read_symbol_map.cpp | 39 size_t end = content_ref.find_first_of(" \t", begin + 1); in ConsumeWord() local 96 size_t end = content.find_first_of("\n\r", begin); in ReadSymbolMapFromString() local
|
| /system/teeui/libteeui/include/teeui/ |
| D | static_vec.h | 47 static_vec(T* begin, T* end) : data_(begin), size_(end - begin) {} in static_vec() 59 T* end() { return data_ + size_; } in end() function 61 const T* end() const { return data_ + size_; } in end() function
|
| D | utils.h | 62 T* end() { return data_ + elements; } in end() function 64 const T* end() const { return data_ + elements; } in end() function 114 const uint8_t* end() const { return data_ + size_; } in end() function
|
| D | font_rendering.h | 86 UTF8WordRange(CharIterator begin, CharIterator end) : range_(begin, end) {} in UTF8WordRange() 101 Iter(UTF8Iterator begin, UTF8Iterator end) : begin_(begin), end_(end) {} in Iter() 135 Iter end() const { return Iter(range_.end(), range_.end()); } in end() function
|
| D | utf8range.h | 32 UTF8Range(CharIterator begin, CharIterator end) : begin_(begin), end_(end) {} in UTF8Range() 101 Iter end() const { return Iter(end_); } in end() function
|
| /system/gatekeeper/ |
| D | gatekeeper_messages.cpp | 33 static inline bool fitsBuffer(const uint8_t* begin, const uint8_t* end, uint32_t field_size) { in fitsBuffer() 69 static inline gatekeeper_error_t read_from_buffer(const uint8_t **buffer, const uint8_t *end, in read_from_buffer() 135 gatekeeper_error_t GateKeeperMessage::Deserialize(const uint8_t *payload, const uint8_t *end) { in Deserialize() 181 gatekeeper_error_t VerifyRequest::nonErrorDeserialize(const uint8_t *payload, const uint8_t *end) { in nonErrorDeserialize() 222 gatekeeper_error_t VerifyResponse::nonErrorDeserialize(const uint8_t *payload, const uint8_t *end) { in nonErrorDeserialize() 256 gatekeeper_error_t EnrollRequest::nonErrorDeserialize(const uint8_t *payload, const uint8_t *end) { in nonErrorDeserialize() 293 gatekeeper_error_t EnrollResponse::nonErrorDeserialize(const uint8_t *payload, const uint8_t *end) { in nonErrorDeserialize()
|
| /system/libcppbor/include/cppbor/ |
| D | cppbor.h | 278 inline uint8_t* encodeHeader(uint64_t addlInfo, uint8_t* pos, const uint8_t* end) const { in encodeHeader() 308 uint8_t* encode(uint8_t* pos, const uint8_t* end) const override { in encode() 355 uint8_t* encode(uint8_t* pos, const uint8_t* end) const override { in encode() 392 uint8_t* encode(uint8_t* pos, const uint8_t* end) const override { in encode() 439 Bstr(I1 begin, I2 end) : mValue(begin, end) {} in Bstr() 487 ViewBstr(I1 begin, I2 end) : mView(begin, end) {} in ViewBstr() 490 ViewBstr(const uint8_t* begin, const uint8_t* end) : mView(begin, std::distance(begin, end)) {} in ViewBstr() 546 Tstr(I1 begin, I2 end) : mValue(begin, end) {} in Tstr() 590 ViewTstr(I1 begin, I2 end) : mView(begin, end) {} in ViewTstr() 593 ViewTstr(const uint8_t* begin, const uint8_t* end) in ViewTstr() [all …]
|
| /system/libcppbor/src/ |
| D | cppbor_parse.cpp | 55 std::tuple<bool, uint64_t, const uint8_t*> parseLength(const uint8_t* pos, const uint8_t* end, in parseLength() 135 const uint8_t* valueBegin, const uint8_t* end, in handleString() 151 const uint8_t* end, const std::string& errLabel, bool emitViews, ParseClient* parseClient, in handleIncompleteString() 326 const uint8_t* end, in handleEntries() 350 const uint8_t* valueBegin, const uint8_t* end, const std::string& typeName, bool emitViews, in handleCompound() 364 std::tuple<const uint8_t*, ParseClient*> parseRecursively(const uint8_t* begin, const uint8_t* end, in parseRecursively() 506 const uint8_t* end) override { in item() 526 const uint8_t* end) override { in itemEnd() 586 void parse(const uint8_t* begin, const uint8_t* end, ParseClient* parseClient) { in parse() 592 parse(const uint8_t* begin, const uint8_t* end) { in parse() [all …]
|
| /system/libbase/include/android-base/ |
| D | parseint.h | 54 char* end; variable 115 char* end; variable
|
| /system/core/libutils/ |
| D | Tokenizer.cpp | 114 const char* end = getEnd(); in peekRemainderOfLine() local 130 const char* end = getEnd(); in nextToken() local 146 const char* end = getEnd(); in nextLine() local 160 const char* end = getEnd(); in skipDelimiters() local
|
| /system/sepolicy/tools/sepolicy-analyze/ |
| D | neverallow.c | 20 static int read_typeset(policydb_t *policydb, char **ptr, char *end, in read_typeset() 182 static int read_classperms(policydb_t *policydb, char **ptr, char *end, in read_classperms() 377 static int check_neverallows(policydb_t *policydb, char *text, char *end) in check_neverallows() 463 char *text, *end; in check_neverallows_file() local 488 char *text, *end; in check_neverallows_string() local
|
| /system/media/audio_utils/include/audio_utils/ |
| D | linked_hash_map.h | 82 auto end() const { return list_.end(); } in end() function 85 auto end() { return list_.end(); } in end() function
|
| /system/core/trusty/fuzz/ |
| D | counters.cpp | 49 volatile uint8_t* end = NULL; in ExtraCounters() local 72 volatile uint8_t* end = NULL; in Flush() local
|
| /system/tools/hidl/ |
| D | Location.cpp | 56 Location::Location(const Position& begin, const Position& end) in Location() 59 void Location::setLocation(const Position& begin, const Position& end) { in setLocation() 73 const Position& Location::end() const { in end() function in android::Location
|
| /system/tools/hidl/test/hidl_test/ |
| D | FooCallback.cpp | 34 nsecs_t end = systemTime(); in heyItsYou() local 50 nsecs_t end = systemTime(); in heyItsYouIsntIt() local 66 nsecs_t end = systemTime(); in heyItsTheMeaningOfLife() local
|
| /system/unwinding/libunwindstack/include/unwindstack/ |
| D | MapInfo.h | 40 MapInfo(std::shared_ptr<MapInfo>& prev_map, uint64_t start, uint64_t end, uint64_t offset, in MapInfo() 49 MapInfo(uint64_t start, uint64_t end, uint64_t offset, uint64_t flags, SharedString name) in MapInfo() 58 uint64_t start, uint64_t end, uint64_t offset, in Create() 66 static inline std::shared_ptr<MapInfo> Create(uint64_t start, uint64_t end, uint64_t offset, in Create() 141 inline uint64_t end() const { return end_; } in end() function
|
| D | Maps.h | 73 iterator end() { return maps_.end(); } in end() function 77 const_iterator end() const { return maps_.end(); } in end() function
|
| /system/chre/util/include/chre/util/ |
| D | priority_queue_impl.h | 124 PriorityQueue<ElementType, CompareFunction>::end() { in end() function 136 PriorityQueue<ElementType, CompareFunction>::end() const { in end() function
|
| /system/libvintf/ |
| D | FQName.cpp | 76 static const char* eatIdent(const char* l, const char* end) { in eatIdent() 83 static const char* eatPackage(const char* l, const char* end) { in eatPackage() 94 static const char* eatNumber(const char* l, const char* end) { in eatNumber() 108 const char* end = l + s.size(); in setTo() local 117 const char* end = nullptr; in setTo() member
|
| /system/unwinding/libunwindstack/tools/ |
| D | unwind_reg_info.cpp | 59 void PrintExpression(std::shared_ptr<Memory>& memory, uint8_t class_type, uint64_t end, in PrintExpression() 284 char* end; in main() local 293 char* end; in main() local
|