/system/bt/types/ |
D | raw_address.cc | 42 bool RawAddress::FromString(const std::string& from, RawAddress& to) { in FromString() argument 44 if (from.length() != 17) return false; in FromString() 47 base::SplitString(from, ":", base::TRIM_WHITESPACE, base::SPLIT_WANT_ALL); in FromString() 65 size_t RawAddress::FromOctets(const uint8_t* from) { in FromOctets() argument 66 std::copy(from, from + kLength, address); in FromOctets()
|
D | class_of_device.cc | 40 bool ClassOfDevice::FromString(const std::string& from, ClassOfDevice& to) { in FromString() argument 42 if (from.length() != 8) return false; in FromString() 45 base::SplitString(from, "-", base::TRIM_WHITESPACE, base::SPLIT_WANT_ALL); in FromString() 70 size_t ClassOfDevice::FromOctets(const uint8_t* from) { in FromOctets() argument 71 std::copy(from, from + kLength, cod); in FromOctets()
|
/system/extras/libperfmgr/tests/ |
D | HintManagerTest.cc | 166 std::string from = in SetUp() local 168 size_t start_pos = json_doc_.find(from); in SetUp() 169 json_doc_.replace(start_pos, from.length(), files_[0 + 2]->path); in SetUp() 170 from = "/sys/devices/system/cpu/cpu4/cpufreq/scaling_min_freq"; in SetUp() 171 start_pos = json_doc_.find(from); in SetUp() 172 json_doc_.replace(start_pos, from.length(), files_[1 + 2]->path); in SetUp() 304 std::string from = "CPUCluster0MinFreq"; in TEST_F() local 305 size_t start_pos = json_doc_.find(from); in TEST_F() 306 json_doc_.replace(start_pos, from.length(), "CPUCluster1MinFreq"); in TEST_F() 313 std::string from = "ModeProperty"; in TEST_F() local [all …]
|
/system/bt/gd/hci/ |
D | address.cc | 64 std::optional<Address> Address::FromString(const std::string& from) { in FromString() argument 65 if (from.length() != 17) { in FromString() 70 std::istringstream stream(from); in FromString() 103 bool Address::FromString(const std::string& from, Address& to) { in FromString() argument 104 auto addr = FromString(from); in FromString() 113 size_t Address::FromOctets(const uint8_t* from) { in FromOctets() argument 114 std::copy(from, from + kLength, data()); in FromOctets()
|
D | class_of_device.cc | 96 bool ClassOfDevice::FromString(const std::string& from, ClassOfDevice& to) { in FromString() argument 97 auto new_cod = FromString(from); in FromString() 132 size_t ClassOfDevice::FromOctets(const uint8_t* from) { in FromOctets() argument 133 std::copy(from, from + kLength, data()); in FromOctets()
|
/system/update_engine/common/ |
D | action_pipe.h | 71 static void Bond(FromAction* from, ToAction* to) { in Bond() argument 73 from->set_out_pipe(pipe); in Bond() 91 void BondActions(FromAction* from, ToAction* to) { in BondActions() argument 96 ActionPipe<typename FromAction::OutputObjectType>::Bond(from, to); in BondActions()
|
/system/bt/test/ |
D | README.md | 44 Running main() from gtest_main.cc 45 [==========] Running 11 tests from 2 test cases. 47 [----------] 6 tests from BluetoothTest 60 [----------] 6 tests from BluetoothTest (32789 ms total) 62 [----------] 5 tests from GattTest 73 [----------] 5 tests from GattTest (11706 ms total) 76 [==========] 11 tests from 2 test cases ran. (44495 ms total)
|
/system/bt/gd/common/ |
D | byte_array.h | 78 static std::optional<ByteArray<kLength>> FromString(const std::string& from) { in FromString() argument 79 if (from.length() != (kLength * 2)) { in FromString() 82 auto vec = common::FromHexString(from); in FromString() 93 static std::optional<ByteArray<kLength>> FromLegacyConfigString(const std::string& from) { in FromLegacyConfigString() argument 94 return FromString(from); in FromLegacyConfigString()
|
/system/extras/memory_replay/traces/ |
D | TRACES | 7 Trace of the native camera app from start-up. 10 Trace of the Google Gmail app from start-up and through reading messages. 13 Trace of the Google Maps app from start-up while looking at various parts 17 Trace of the system app process surfaceflinger from start-up while 21 Trace of the system app process system_server from start-up while 25 Trace of the system app process systemui from start-up while 29 Trace of the Google YouTube app from start-up and while watching various 65 Trace from app start while looking at different photos, scrolling the
|
/system/core/libutils/include/utils/ |
D | VectorImpl.h | 104 virtual void do_copy(void* dest, const void* from, size_t num) const = 0; 106 virtual void do_move_forward(void* dest, const void* from, size_t num) const = 0; 107 virtual void do_move_backward(void* dest, const void* from, size_t num) const = 0; 115 inline void _do_copy(void* dest, const void* from, size_t num) const; 117 inline void _do_move_forward(void* dest, const void* from, size_t num) const; 118 inline void _do_move_backward(void* dest, const void* from, size_t num) const;
|
D | SortedVector.h | 147 virtual void do_copy(void* dest, const void* from, size_t num) const; 149 virtual void do_move_forward(void* dest, const void* from, size_t num) const; 150 virtual void do_move_backward(void* dest, const void* from, size_t num) const; 267 UTILS_VECTOR_NO_CFI void SortedVector<TYPE>::do_copy(void* dest, const void* from, size_t num) cons… in do_copy() argument 268 copy_type( reinterpret_cast<TYPE*>(dest), reinterpret_cast<const TYPE*>(from), num ); in do_copy() 277 UTILS_VECTOR_NO_CFI void SortedVector<TYPE>::do_move_forward(void* dest, const void* from, size_t n… in do_move_forward() argument 278 move_forward_type( reinterpret_cast<TYPE*>(dest), reinterpret_cast<const TYPE*>(from), num ); in do_move_forward() 282 UTILS_VECTOR_NO_CFI void SortedVector<TYPE>::do_move_backward(void* dest, const void* from, size_t … in do_move_backward() argument 283 move_backward_type( reinterpret_cast<TYPE*>(dest), reinterpret_cast<const TYPE*>(from), num ); in do_move_backward()
|
/system/extras/tests/mmc_tracepoints/ |
D | README | 1 The code in this directory is used to process data from the mmc tracepoints 19 The mmc_trace_reduce script will take the output from the kernel, and convert it 24 The file mmc_trace_sample_data contains sample mmc trace data from a Nexus 10. 25 It includes read, write and discard entries. The discard entries came from
|
/system/sepolicy/private/ |
D | stats.te | 8 # allow stats access to stdout from its parent shell. 20 # back the stats report data from a ParcelFileDescriptor. 29 # Allow pipes from (and only from) stats.
|
D | shared_relro.te | 3 # The shared relro process is a Java program forked from the zygote, so it 4 # inherits from app to get basic permissions it needs to run.
|
/system/sepolicy/prebuilts/api/29.0/private/ |
D | stats.te | 8 # allow stats access to stdout from its parent shell. 20 # back the stats report data from a ParcelFileDescriptor. 29 # Allow pipes from (and only from) stats.
|
D | shared_relro.te | 3 # The shared relro process is a Java program forked from the zygote, so it 4 # inherits from app to get basic permissions it needs to run.
|
/system/sepolicy/prebuilts/api/30.0/private/ |
D | stats.te | 8 # allow stats access to stdout from its parent shell. 20 # back the stats report data from a ParcelFileDescriptor. 29 # Allow pipes from (and only from) stats.
|
D | shared_relro.te | 3 # The shared relro process is a Java program forked from the zygote, so it 4 # inherits from app to get basic permissions it needs to run.
|
/system/connectivity/wificond/net/kernel-header-latest/ |
D | README.txt | 5 external/kernel-headers has the headers from the stable kernel tree which is generally 8 Copy the nl80211.h header from the following location: 12 Last update from kernel branch: `p-dev-msm-bluecross-4.9`
|
/system/vold/ |
D | MoveStorage.cpp | 194 static status_t moveStorageInternal(const std::shared_ptr<VolumeBase>& from, in moveStorageInternal() argument 201 if (from->getType() != VolumeBase::Type::kEmulated) goto fail; in moveStorageInternal() 208 bringOffline(from); in moveStorageInternal() 212 fromPath = from->getInternalPath(); in moveStorageInternal() 230 bringOnline(from); in moveStorageInternal() 251 bringOnline(from); in moveStorageInternal() 259 void MoveStorage(const std::shared_ptr<VolumeBase>& from, const std::shared_ptr<VolumeBase>& to, in MoveStorage() argument 264 status_t res = moveStorageInternal(from, to, listener); in MoveStorage()
|
/system/apex/apexd/ |
D | apexd_rollback_utils.h | 43 int32_t copy_directory_recursive(const char* from, const char* to) { in copy_directory_recursive() argument 52 from, in copy_directory_recursive() 55 LOG(DEBUG) << "Copying " << from << " to " << to; in copy_directory_recursive()
|
/system/timezone/input_tools/android/zone_compactor/main/java/ |
D | ZoneCompactor.java | 88 String from = st.nextToken(); in ZoneCompactor() local 89 links.put(from, to); in ZoneCompactor() 107 for (String from : links.keySet()) { in ZoneCompactor() 108 String to = links.get(from); in ZoneCompactor() 110 offsets.put(from, offsets.get(to)); in ZoneCompactor() 111 lengths.put(from, lengths.get(to)); in ZoneCompactor()
|
/system/sepolicy/prebuilts/api/28.0/private/ |
D | shared_relro.te | 3 # The shared relro process is a Java program forked from the zygote, so it 4 # inherits from app to get basic permissions it needs to run.
|
/system/core/libutils/ |
D | VectorImpl.cpp | 430 … const void* from = reinterpret_cast<const uint8_t *>(mStorage) + where*mItemSize; in _grow() local 432 _do_copy(dest, from, mCount-where); in _grow() 443 const void* from = reinterpret_cast<const uint8_t *>(array) + where*mItemSize; in _grow() local 445 _do_move_forward(to, from, mCount - where); in _grow() 497 … const void* from = reinterpret_cast<const uint8_t *>(mStorage) + (where+amount)*mItemSize; in _shrink() local 499 _do_copy(dest, from, new_size - where); in _shrink() 512 const void* from = reinterpret_cast<uint8_t *>(array) + (where+amount)*mItemSize; in _shrink() local 513 _do_move_backward(to, from, new_size - where); in _shrink() 537 void VectorImpl::_do_copy(void* dest, const void* from, size_t num) const in _do_copy() argument 540 do_copy(dest, from, num); in _do_copy() [all …]
|
/system/sepolicy/prebuilts/api/26.0/private/ |
D | shared_relro.te | 4 # The shared relro process is a Java program forked from the zygote, so it 5 # inherits from app to get basic permissions it needs to run.
|