/system/extras/simpleperf/scripts/ |
D | update.py | 102 def fetch_artifact(branch, build, target, name): argument 108 target, branch, name) 110 cmd = [fetch_artifact_path, '--branch', branch, '--target', target, 122 def commit(branch, build, add_paths): argument 129 Taken from branch {branch}.""").format(branch=branch, build=build) 145 def install_new_release(branch, build, install_dir): argument 148 install_entry(branch, build, install_dir, entry) 151 def install_entry(branch, build, install_dir, entry): argument 158 fetch_artifact(branch, build, target, name) 204 install_new_release(args.branch, args.build, install_dir) [all …]
|
/system/extras/simpleperf/ |
D | cmd_inject.cpp | 36 std::string BranchToProtoString(const std::vector<bool>& branch) { in BranchToProtoString() argument 37 size_t bytes = (branch.size() + 7) / 8; in BranchToProtoString() 39 for (size_t i = 0; i < branch.size(); i++) { in BranchToProtoString() 40 if (branch[i]) { in BranchToProtoString() 48 std::vector<bool> branch(bit_size, false); in ProtoStringToBranch() local 51 branch[i] = true; in ProtoStringToBranch() 54 return branch; in ProtoStringToBranch() 223 [this](const ETMBranchList& branch) { ProcessBranchList(branch); }); in ProcessRecord() argument 273 ++branch_list_binary_map_[branch_list.dso][branch_list.addr][branch_list.branch]; in ProcessBranchList() 336 std::vector<bool> branch = in BuildBranchMap() local [all …]
|
D | cmd_inject_test.cpp | 93 std::vector<bool> branch; in TEST() local 95 branch.push_back(i % 2 == 0); in TEST() 96 std::string s = BranchToProtoString(branch); in TEST() 99 ASSERT_EQ(b, branch[j]); in TEST() 101 std::vector<bool> branch2 = ProtoStringToBranch(s, branch.size()); in TEST() 102 ASSERT_EQ(branch, branch2); in TEST()
|
D | etm_branch_list.proto | 28 // vaddr in binary, instr addr before the first branch 32 // Each bit represents a branch: 0 for not branch, 1 for branch. 34 bytes branch = 1; field
|
D | ETMDecoder.cpp | 493 ETMBranchList branch; member 567 if (data.branch.branch.empty()) { in ProcessAtomPacket() 579 data.branch.dso = map->dso; in ProcessAtomPacket() 580 data.branch.addr = map->GetVaddrInFile(data.addr); in ProcessAtomPacket() 582 data.branch.addr |= 1; in ProcessAtomPacket() 587 data.branch.branch.push_back((bits & 1) == 1); in ProcessAtomPacket() 593 if (!data.branch.branch.empty()) { in FlushBranch() 594 callback_(data.branch); in FlushBranch() 595 data.branch.branch.clear(); in FlushBranch() 858 const std::vector<bool>& branch = branch_p.first; in ConvertBranchMapToInstrRanges() local [all …]
|
D | cmd_inject_impl.h | 24 std::string BranchToProtoString(const std::vector<bool>& branch);
|
D | ETMDecoder.h | 59 std::vector<bool> branch; member
|
D | README.md | 8 To snap the aosp-simpleperf-release branch to ToT AOSP main and kick off a
|
/system/core/libpixelflinger/codeflinger/ |
D | disassem.c | 309 int branch; in disasm() local 423 branch = ((insn << 2) & 0x03ffffff); in disasm() 424 if (branch & 0x02000000) in disasm() 425 branch |= 0xfc000000; in disasm() 426 di->di_printaddr(loc + 8 + branch); in disasm() 430 branch = ((insn << 2) & 0x03ffffff) | in disasm() 432 if (branch & 0x02000000) in disasm() 433 branch |= 0xfc000000; in disasm() 434 di->di_printaddr(loc + 8 + branch); in disasm()
|
/system/connectivity/wificond/net/kernel-header-latest/ |
D | README.txt | 12 Last update from kernel branch: `p-dev-msm-bluecross-4.9`
|
/system/extras/simpleperf/doc/ |
D | android_platform_profiling.md | 16 on the current main branch. Scripts are in `system/extras/simpleperf/scripts`, binaries are in
|
D | README.md | 236 1. Download AOSP main branch as [here](https://source.android.com/setup/build/requirements).
|
D | executable_commands_reference.md | 101 branch-loads 132 4,692,338 branch-misses # 468.118 K/sec (100%)
|
/system/extras/app-launcher/ |
D | app-launcher | 84 grep -F branch-misses "$infile" | awk '{print $1}' | sed s/,//g | computestats
|
/system/apex/docs/ |
D | README.md | 191 required patches, a down-merge from the `android-4.4` branch is strongly 215 the `android-common` branch.
|
/system/update_engine/ |
D | README.md | 604 Chrome OS tracks the Android code as an [upstream branch]. To merge the Android 605 code to Chrome OS (or vice versa) just do a `git merge` of that branch into 635 [upstream branch]: https://chromium.googlesource.com/aosp/platform/system/update_engine/+/upstream
|
D | pylintrc | 379 # Maximum number of branch for function / method body
|
/system/tools/mkbootimg/ |
D | pylintrc | 318 # Maximum number of branch for function / method body
|
/system/bt/doc/ |
D | style_guide.md | 345 ##### Create a new branch starting from the first unrelated patch
|