Searched refs:copy (Results 1 - 25 of 106) sorted by relevance

12345

/system/vold/
H A DKeyBuffer.cpp6 * You may obtain a copy of the License at
26 std::copy(rhs.begin(), rhs.end(), std::back_inserter(lhs));
31 std::copy(rhs, rhs + strlen(rhs), std::back_inserter(lhs));
/system/tools/hidl/utils/
H A DStringHelper.cpp6 * You may obtain a copy of the License at
72 std::string copy(in);
76 copy = RTrimAll(copy, "_");
77 while(!copy.empty()) {
78 copy = LTrimAll(copy, "_");
79 if (std::regex_search(copy, match, kStartLowercase))
81 if (std::regex_search(copy, match, kStartCapcase))
83 if (std::regex_search(copy, matc
[all...]
/system/connectivity/wifilogd/tests/
H A Dbyte_buffer_unittest.cpp6 * You may obtain a copy of the License at
65 ByteBuffer<kBufferSizeBytes> copy; local
66 ASSERT_NE(buffer_.size(), copy.size());
68 copy = buffer_;
69 ASSERT_EQ(buffer_.size(), copy.size());
70 EXPECT_EQ(0, std::memcmp(copy.data(), buffer_.data(), buffer_.size()));
87 const ByteBuffer<kBufferSizeBytes> copy{buffer_};
88 ASSERT_EQ(buffer_.size(), copy.size());
89 EXPECT_EQ(0, std::memcmp(copy.data(), buffer_.data(), buffer_.size()));
/system/core/adb/
H A Drange.h8 * You may obtain a copy of the License at
26 Range(const Range& copy) = delete; member in struct:Range
27 Range& operator=(const Range& copy) = delete; member in struct:Range
/system/update_engine/update_manager/
H A Dgeneric_variables_unittest.cc6 // You may obtain a copy of the License at
43 // Generate and validate a copy.
52 // Check that the content of the copy was not affected (distinct instance).
55 // Generate and validate a second copy.
80 // Tells if the instance was constructed using the copy-constructor.
89 // Ensures that CopyVariables indeed uses the copy constructor.
94 unique_ptr<const CopyConstructorTestClass> copy(
96 ASSERT_NE(nullptr, copy.get());
97 EXPECT_TRUE(copy->copied_);
133 unique_ptr<const CopyConstructorTestClass> copy(
[all...]
/system/bt/types/
H A Draw_address.cc7 * You may obtain a copy of the License at:
33 std::copy(addr, addr + kLength, address);
66 std::copy(from, from + kLength, address);
/system/tools/hidl/docs/src/writer/elements/
H A DTypedefElement.kt6 * You may obtain a copy of the License at
37 <pre class="prettyprint devsite-disable-click-to-copy">${declaration()}</pre>
H A DAbstractElement.kt6 * You may obtain a copy of the License at
36 <pre class="prettyprint devsite-disable-click-to-copy">${declaration()}</pre>
/system/core/debuggerd/tombstoned/
H A Dintercept_manager.h6 * You may obtain a copy of the License at
53 InterceptManager(InterceptManager& copy) = delete; member in struct:InterceptManager
/system/extras/cppreopts/
H A DAndroid.mk5 # You may obtain a copy of the License at
17 # Create the cppreopts that does the copy
/system/netd/libnetdutils/include/netdutils/
H A DMemBlock.h6 * You may obtain a copy of the License at
38 // Allocate memory of size src.size() and copy src into this MemBlock.
40 copy(get(), src);
43 // No copy construction or assignment.
/system/extras/libfec/
H A Dfec_read.cpp6 * You may obtain a copy of the License at
137 /* copy raw data to reconstruct the RS block */
159 uint8_t copy[FEC_RSM]; local
162 /* copy parity data */
172 memcpy(copy, &ecc_data[i * FEC_RSM], FEC_RSM);
182 dump("raw RS block", rsb, copy, FEC_RSM);
265 size_t copy = FEC_BLOCKSIZE - coff; local
267 if (copy > left) {
268 copy = left;
271 memcpy(dest, &data[coff], copy);
386 size_t copy = FEC_BLOCKSIZE - coff; local
[all...]
/system/core/storaged/
H A Dstoraged_utils.cpp6 * You may obtain a copy of the License at
108 std::copy(perf_history.begin() + start, perf_history.begin() + end,
115 std::copy(perf_history.begin() + start, perf_history.begin() + end,
121 std::copy(perf_history.begin() + start, perf_history.end(),
/system/extras/perfprofd/
H A Dmap_utils.h117 AggregatedSymbol copy = std::move(it->second); local
119 copy.offsets.insert(val);
120 map_.emplace(val, std::move(copy));
/system/netd/libnetdutils/
H A DSliceTest.cpp6 * You may obtain a copy of the License at
100 copy(buffer, makeSlice(origA1));
101 copy(drop(buffer, sizeof(origA1)), makeSlice(origB));
102 copy(drop(buffer, sizeof(origA1) + sizeof(origB)), makeSlice(origA2));
/system/extras/boottime_tools/bootanalyze/
H A DAndroid.mk5 # You may obtain a copy of the License at
/system/extras/boottime_tools/bootanalyze/stressfs/
H A DAndroid.mk5 # You may obtain a copy of the License at
/system/extras/iotop/
H A DAndroid.mk5 # You may obtain a copy of the License at
/system/extras/kexec_tools/
H A DAndroid.mk5 # You may obtain a copy of the License at
/system/extras/ksmutils/
H A DAndroid.mk5 # You may obtain a copy of the License at
/system/extras/latencytop/
H A DAndroid.mk5 # You may obtain a copy of the License at
/system/extras/librank/
H A DAndroid.mk5 # You may obtain a copy of the License at
/system/extras/preopt2cachename/
H A DAndroid.mk5 # You may obtain a copy of the License at
/system/extras/procmem/
H A DAndroid.mk5 # You may obtain a copy of the License at
/system/extras/procrank/
H A DAndroid.mk5 # You may obtain a copy of the License at

Completed in 2621 milliseconds

12345