Home
last modified time | relevance | path

Searched refs:conv (Results 1 – 5 of 5) sorted by relevance

/system/extras/perfprofd/
Dconfigreader.cc268 uint64_t conv; in parseLine() local
269 if (!android::base::ParseUint(value, &conv)) { in parseLine()
277 if (conv < vals.minv || conv > vals.maxv) { in parseLine()
282 conv, in parseLine()
289 LOG(INFO) << "option " << key << " set to " << conv; in parseLine()
291 uit->second = static_cast<unsigned>(conv); in parseLine()
316 uint64_t conv; in parseLine() local
317 if (!android::base::ParseUint(value, &conv)) { in parseLine()
321 if (conv > std::numeric_limits<unsigned>::max()) { in parseLine()
325 events.period = static_cast<unsigned>(conv); in parseLine()
/system/libvintf/
Dparse_xml.cpp235 inline void appendChildren(NodeType* parent, const XmlNodeConverter<T>& conv, in appendChildren()
239 appendChild(parent, conv.serialize(t, d, flags)); in appendChildren()
311 inline bool parseChild(NodeType* root, const XmlNodeConverter<T>& conv, T* t, in parseChild()
313 NodeType *child = getChild(root, conv.elementName()); in parseChild()
315 *error = "Could not find element with name <" + conv.elementName() + "> in element <" + in parseChild()
319 return conv.deserialize(t, child, error); in parseChild()
323 inline bool parseOptionalChild(NodeType* root, const XmlNodeConverter<T>& conv, in parseOptionalChild()
325 NodeType *child = getChild(root, conv.elementName()); in parseOptionalChild()
330 return conv.deserialize(t, child, error); in parseOptionalChild()
334 inline bool parseOptionalChild(NodeType* root, const XmlNodeConverter<T>& conv, in parseOptionalChild()
[all …]
/system/extras/tests/ext4/
Dandroid_emmc_perf_tests.sh224 adb shell dd if=/dev/zero conv=notrunc of="$CACHE" bs=1048576 count=200
/system/update_engine/sample_images/
Dgenerate_images.sh102 sudo dd of="${mntdir}"/removed conv=fsync status=none
/system/apex/apexd/
DAndroid.bp282 "dd if=/dev/zero of=$(genDir)/apex_payload.img conv=notrunc bs=1024 seek=16 count=1 && " +