Home
last modified time | relevance | path

Searched refs:fds (Results 1 – 7 of 7) sorted by relevance

/art/profman/
Dprofile_assistant.cc139 bool Init(const std::vector<int>& fds, /* out */ std::string* error) { in Init() argument
140 for (size_t i = 0; i < fds.size(); i++) { in Init()
141 DCHECK_GE(fds[i], 0); in Init()
142 flocks_[i] = LockedFile::DupOf(fds[i], "profile-file", in Init()
Dprofman.cc1946 std::vector<int>* fds) { in ParseFdForCollection() argument
1949 fds->push_back(fd); in ParseFdForCollection()
1952 static void CloseAllFds(const std::vector<int>& fds, const char* descriptor) { in CloseAllFds() argument
1953 for (size_t i = 0; i < fds.size(); i++) { in CloseAllFds()
1954 if (close(fds[i]) < 0) { in CloseAllFds()
1956 << descriptor << " at index " << i << ": " << fds[i]; in CloseAllFds()
/art/dt_fd_forward/
DREADME.md16 When this transport has successfully received fds from the proxy it sends the
19 When this transport has closed its copies of the fds it will send the proxy the
/art/runtime/
Dclass_loader_context.cc414 const std::vector<int>& fds, in OpenDexFiles() argument
466 if (!fds.empty()) { in OpenDexFiles()
467 if (dex_file_index >= fds.size()) { in OpenDexFiles()
473 file = File(fds[dex_file_index++], /*check_usage=*/false); in OpenDexFiles()
532 if (dex_file_index != fds.size()) { in OpenDexFiles()
533 LOG(WARNING) << fds.size() << " FDs provided but only " << dex_file_index in OpenDexFiles()
Druntime.cc1506 static std::vector<File> FileFdsToFileObjects(std::vector<int>&& fds) { in FileFdsToFileObjects() argument
1508 files.reserve(fds.size()); in FileFdsToFileObjects()
1509 for (int fd : fds) { in FileFdsToFileObjects()
/art/artd/
Dartd.cc475 std::vector<int> fds; in GetFds() local
476 fds.reserve(fd_mapping_.size()); in GetFds()
478 fds.push_back(fd); in GetFds()
480 return Join(fds, ':'); in GetFds()
/art/odrefresh/
Dodrefresh.cc2056 std::vector<int> fds; in RunDex2oatForSystemServer() local
2066 fds.emplace_back(file->Fd()); in RunDex2oatForSystemServer()
2069 args.Add("--class-loader-context-fds=%s", Join(fds, ':')); in RunDex2oatForSystemServer()