Home
last modified time | relevance | path

Searched refs:from (Results 1 – 25 of 760) sorted by relevance

12345678910>>...31

/system/bt/types/
Draw_address.cc42 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()
/system/update_engine/common/
Daction_pipe.h71 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/
DREADME.md44 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/extras/libperfmgr/tests/
DHintManagerTest.cc133 std::string from = in SetUp() local
135 size_t start_pos = json_doc_.find(from); in SetUp()
136 json_doc_.replace(start_pos, from.length(), files_[0 + 2]->path); in SetUp()
137 from = "/sys/devices/system/cpu/cpu4/cpufreq/scaling_min_freq"; in SetUp()
138 start_pos = json_doc_.find(from); in SetUp()
139 json_doc_.replace(start_pos, from.length(), files_[1 + 2]->path); in SetUp()
246 std::string from = "CPUCluster0MinFreq"; in TEST_F() local
247 size_t start_pos = json_doc_.find(from); in TEST_F()
248 json_doc_.replace(start_pos, from.length(), "CPUCluster1MinFreq"); in TEST_F()
256 std::string from = files_[0 + 2]->path; in TEST_F() local
[all …]
/system/core/toolbox/upstream-netbsd/lib/libc/string/
Dswab.c48 swab(const void * __restrict from, void * __restrict to, ssize_t len) in swab() argument
57 _DIAGASSERT(from != NULL); in swab()
61 fp = (const char *)from; in swab()
/system/core/libutils/include/utils/
DVectorImpl.h104 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;
DSortedVector.h147 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/
DREADME1 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/vold/
DMoveStorage.cpp188 static status_t moveStorageInternal(const std::shared_ptr<VolumeBase>& from, in moveStorageInternal() argument
195 if (from->getType() != VolumeBase::Type::kEmulated) goto fail; in moveStorageInternal()
202 bringOffline(from); in moveStorageInternal()
206 fromPath = from->getInternalPath(); in moveStorageInternal()
224 bringOnline(from); in moveStorageInternal()
244 bringOnline(from); in moveStorageInternal()
251 void MoveStorage(const std::shared_ptr<VolumeBase>& from, const std::shared_ptr<VolumeBase>& to, in MoveStorage() argument
256 status_t res = moveStorageInternal(from, to, listener); in MoveStorage()
/system/connectivity/wificond/net/kernel-header-latest/
DREADME.txt5 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/core/libutils/
DVectorImpl.cpp431 … const void* from = reinterpret_cast<const uint8_t *>(mStorage) + where*mItemSize; in _grow() local
433 _do_copy(dest, from, mCount-where); in _grow()
444 const void* from = reinterpret_cast<const uint8_t *>(array) + where*mItemSize; in _grow() local
446 _do_move_forward(to, from, mCount - where); in _grow()
498 … const void* from = reinterpret_cast<const uint8_t *>(mStorage) + (where+amount)*mItemSize; in _shrink() local
500 _do_copy(dest, from, new_size - where); in _shrink()
513 const void* from = reinterpret_cast<uint8_t *>(array) + (where+amount)*mItemSize; in _shrink() local
514 _do_move_backward(to, from, new_size - where); in _shrink()
538 void VectorImpl::_do_copy(void* dest, const void* from, size_t num) const in _do_copy() argument
541 do_copy(dest, from, num); in _do_copy()
[all …]
/system/sepolicy/prebuilts/api/28.0/private/
Dshared_relro.te3 # 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.
Dbinderservicedomain.te3 # Allow dumpstate and incidentd to collect information from binder services
9 # Allow dumpsys to work from adb shell or the serial console
13 # Receive and write to a pipe received over Binder from an app.
/system/sepolicy/private/
Dshared_relro.te3 # 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.
Dbinderservicedomain.te3 # Allow dumpstate and incidentd to collect information from binder services
9 # Allow dumpsys to work from adb shell or the serial console
13 # Receive and write to a pipe received over Binder from an app.
/system/bt/
DEventLogTags.logtags4 # Tag numbers are decimal integers, from 0 to 2^31. (Let's leave the
19 # The data type is a number from the following values:
25 # The data unit is a number taken from the following list:
34 # TODO: generate ".java" and ".h" files with integer constants from this file.
/system/timezone/zone_compactor/main/java/
DZoneCompactor.java87 String from = st.nextToken(); in ZoneCompactor() local
88 links.put(from, to); in ZoneCompactor()
107 String from = it.next(); in ZoneCompactor() local
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/27.0/private/
Dshared_relro.te4 # 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.
Dbinderservicedomain.te3 # Allow dumpstate and incidentd to collect information from binder services
9 # Allow dumpsys to work from adb shell or the serial console
13 # Receive and write to a pipe received over Binder from an app.
/system/sepolicy/prebuilts/api/26.0/private/
Dshared_relro.te4 # 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.
Dbinderservicedomain.te3 # Allow dumpstate and incidentd to collect information from binder services
9 # Allow dumpsys to work from adb shell or the serial console
13 # Receive and write to a pipe received over Binder from an app.
/system/core/logd/
Devent.logtags4 # Tag numbers are decimal integers, from 0 to 2^31. (Let's leave the
19 # The data type is a number from the following values:
25 # The data unit is a number taken from the following list:
35 # TODO: generate ".java" and ".h" files with integer constants from this file.
/system/extras/tests/icachetest/
Dicache_main.cpp39 const std::string from("ICACHE"); in printUsage() local
40 for (size_t pos = usage.find(from); pos != std::string::npos; pos = usage.find(from, pos)) { in printUsage()
41 usage.replace(pos, from.length(), exec_name); in printUsage()
/system/core/storaged/
DEventLogTags.logtags4 # Tag numbers are decimal integers, from 0 to 2^31. (Let's leave the
19 # The data type is a number from the following values:
26 # The data unit is a number taken from the following list:
35 # TODO: generate ".java" and ".h" files with integer constants from this file.
/system/core/liblog/
Devent.logtags4 # Tag numbers are decimal integers, from 0 to 2^31. (Let's leave the
19 # The data type is a number from the following values:
25 # The data unit is a number taken from the following list:
35 # TODO: generate ".java" and ".h" files with integer constants from this file.

12345678910>>...31