OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:profiles_fd
(Results
1 - 2
of
2
) sorted by null
/frameworks/native/cmds/installd/
dexopt.cpp
590
/*out*/ std::vector<unique_fd>*
profiles_fd
, /*out*/ unique_fd* reference_profile_fd) {
607
profiles_fd
->push_back(std::move(profile_fd));
639
static void run_profman_merge(const std::vector<unique_fd>&
profiles_fd
,
644
std::vector<std::string> profile_args(
profiles_fd
.size());
646
for (size_t k = 0; k <
profiles_fd
.size(); k++) {
647
sprintf(profile_buf, "--profile-file-fd=%d",
profiles_fd
[k].get());
654
const char* argv[3 +
profiles_fd
.size()];
676
std::vector<unique_fd>
profiles_fd
;
local
678
open_profile_files(uid, location, is_secondary_dex, &
profiles_fd
, &reference_profile_fd);
679
if (
profiles_fd
.empty() || (reference_profile_fd.get() < 0))
[
all
...]
/art/profman/
profile_assistant_test.cc
142
int ProcessProfiles(const std::vector<int>&
profiles_fd
, int reference_profile_fd) {
146
for (size_t k = 0; k <
profiles_fd
.size(); k++) {
147
argv_str.push_back("--profile-file-fd=" + std::to_string(
profiles_fd
[k]));
[
all
...]
Completed in 54 milliseconds