/system/chre/util/include/chre/util/ |
D | dynamic_vector_impl.h | 31 DynamicVector<ElementType>::DynamicVector() {} in DynamicVector() function 34 DynamicVector<ElementType>::DynamicVector(DynamicVector<ElementType>&& other) in DynamicVector() function 46 DynamicVector<ElementType>::~DynamicVector() { in ~DynamicVector() 54 void DynamicVector<ElementType>::clear() { in clear() 60 ElementType *DynamicVector<ElementType>::data() { in data() 65 const ElementType *DynamicVector<ElementType>::data() const { in data() 70 size_t DynamicVector<ElementType>::size() const { in size() 75 size_t DynamicVector<ElementType>::capacity() const { in capacity() 80 bool DynamicVector<ElementType>::empty() const { in empty() 85 bool DynamicVector<ElementType>::push_back(const ElementType& element) { in push_back() [all …]
|
D | dynamic_vector.h | 31 class DynamicVector : public NonCopyable { 36 DynamicVector(); 44 DynamicVector(DynamicVector<ElementType>&& other); 49 ~DynamicVector(); 318 typename DynamicVector<ElementType>::iterator begin(); 319 typename DynamicVector<ElementType>::const_iterator begin() const; 320 typename DynamicVector<ElementType>::const_iterator cbegin() const; 325 typename DynamicVector<ElementType>::iterator end(); 326 typename DynamicVector<ElementType>::const_iterator end() const; 327 typename DynamicVector<ElementType>::const_iterator cend() const;
|
D | priority_queue.h | 172 DynamicVector<ElementType> mData;
|
/system/chre/util/tests/ |
D | dynamic_vector_test.cc | 24 using chre::DynamicVector; 55 TEST(DynamicVector, EmptyByDefault) { in TEST() argument 56 DynamicVector<int> vector; in TEST() 64 TEST(DynamicVector, PushBackAndRead) { in TEST() argument 65 DynamicVector<int> vector; in TEST() 74 TEST(DynamicVector, PushBackReserveAndReadTrivialType) { in TEST() argument 75 DynamicVector<int> vector; in TEST() 124 TEST(DynamicVector, PushBackReserveAndReadMovableButNonCopyable) { in TEST() argument 125 DynamicVector<MovableButNonCopyable> vector; in TEST() 170 TEST(DynamicVector, PushBackReserveAndReadCopyableButNonMovable) { in TEST() argument [all …]
|
D | heap_test.cc | 7 using chre::DynamicVector; 11 DynamicVector<int> v; in TEST() 17 DynamicVector<int> v; in TEST() 23 DynamicVector<int> v; in TEST() 54 DynamicVector<int> v; in TEST() 63 DynamicVector<int> v; in TEST()
|
/system/chre/core/include/chre/core/ |
D | wifi_scan_request.h | 89 DynamicVector<uint32_t>&& frequencies, 90 DynamicVector<WifiSsid>&& ssids); 105 const DynamicVector<uint32_t>& getFrequencies() const; 110 const DynamicVector<WifiSsid>& getSsids() const; 120 DynamicVector<uint32_t> mFrequencies; 123 DynamicVector<WifiSsid> mSsids;
|
D | request_multiplexer.h | 111 const DynamicVector<RequestType>& getRequests() const; 120 DynamicVector<RequestType> mRequests;
|
D | nanoapp.h | 104 DynamicVector<uint16_t> mRegisteredEvents;
|
D | event_loop.h | 183 DynamicVector<UniquePtr<Nanoapp>> mNanoapps;
|
D | host_comms_manager.h | 71 DynamicVector<uint8_t> message;
|
D | event_loop_manager.h | 205 DynamicVector<UniquePtr<EventLoop>> mEventLoops;
|
D | wifi_request_manager.h | 148 DynamicVector<uint32_t> mScanMonitorNanoapps;
|
D | request_multiplexer_impl.h | 74 const DynamicVector<RequestType>&
|
/system/chre/core/ |
D | wifi_scan_request.cc | 37 DynamicVector<uint32_t>() /* frequencies */, in WifiScanRequest() 38 DynamicVector<WifiSsid>() /* ssids */) {} in WifiScanRequest() 42 DynamicVector<uint32_t>&& frequencies, in WifiScanRequest() 43 DynamicVector<WifiSsid>&& ssids) in WifiScanRequest() 57 const DynamicVector<uint32_t>& WifiScanRequest::getFrequencies() const { in getFrequencies() 61 const DynamicVector<WifiSsid>& WifiScanRequest::getSsids() const { in getSsids()
|
D | sensor_request_manager.cc | 64 DynamicVector<PlatformSensor> platformSensors; in SensorRequestManager()
|
/system/chre/platform/shared/include/chre/platform/shared/ |
D | host_protocol_chre.h | 101 DynamicVector<NanoappListEntryOffset>& offsetVector, 116 DynamicVector<NanoappListEntryOffset>& offsetVector,
|
/system/chre/platform/include/chre/platform/ |
D | platform_sensor.h | 67 static bool getSensors(DynamicVector<PlatformSensor> *sensors);
|
/system/chre/platform/linux/ |
D | platform_sensor.cc | 33 bool PlatformSensor::getSensors(DynamicVector<PlatformSensor> *sensors) { in getSensors()
|
/system/chre/platform/shared/ |
D | host_protocol_chre.cc | 103 DynamicVector<Offset<fbs::NanoappListEntry>>& offsetVector, in addNanoappListEntry() 114 DynamicVector<Offset<fbs::NanoappListEntry>>& offsetVector, in finishNanoappListResponse()
|
/system/chre/platform/slpi/ |
D | host_link.cc | 123 DynamicVector<NanoappListEntryOffset> nanoappEntries; in constructNanoappListCallback() 134 DynamicVector<NanoappListEntryOffset>& nanoappEntries_) in constructNanoappListCallback() 138 DynamicVector<NanoappListEntryOffset>& nanoappEntries; in constructNanoappListCallback()
|
D | platform_sensor.cc | 65 DynamicVector<SensorStatus> gSensorStatusMonitor; 250 DynamicVector<PlatformSensor> *sensors) { in addPlatformSensor() 707 DynamicVector<PlatformSensor> *sensors) { in getSensorsForSensorId() 904 bool PlatformSensor::getSensors(DynamicVector<PlatformSensor> *sensors) { in getSensors()
|
/system/chre/ |
D | README.md | 28 ``--gtest_filter=DynamicVector.*``)
|
/system/chre/external/flatbuffers/include/flatbuffers/ |
D | flatbuffers.h | 1157 const chre::DynamicVector<T> &v) { 1376 chre::DynamicVector<FieldLoc> offsetbuf_; 1388 chre::DynamicVector<uoffset_t> vtables_;
|