Searched refs:path_ (Results 1 - 10 of 10) sorted by relevance

/frameworks/native/vulkan/libvulkan/
H A Dlayers_extensions.cpp73 : path_(path), dlhandle_(nullptr), refcount_(0) {}
76 : path_(std::move(other.path_)),
98 const std::string path_; member in class:vulkan::api::__anon1938::LayerLibrary
108 ALOGV("opening layer library '%s'", path_.c_str());
116 !android::base::StartsWith(path_, kSystemLayerLibraryDir)) {
120 dlhandle_ = android_dlopen_ext(path_.c_str(), RTLD_NOW | RTLD_LOCAL,
123 dlhandle_ = dlopen(path_.c_str(), RTLD_NOW | RTLD_LOCAL);
126 ALOGE("failed to load layer library '%s': %s", path_.c_str(),
138 ALOGV("closing layer library '%s'", path_
[all...]
/frameworks/base/libs/androidfw/
H A DApkAssets.cpp68 loaded_apk->path_ = path;
94 LOG(ERROR) << "No entry '" << path << "' found in APK '" << path_ << "'"; local
100 if (!map->create(path_.c_str(), ::GetFileDescriptor(zip_handle_.get()), entry.offset,
102 LOG(ERROR) << "Failed to mmap file '" << path << "' in APK '" << path_ << "'"; local
115 if (!map->create(path_.c_str(), ::GetFileDescriptor(zip_handle_.get()), entry.offset,
117 LOG(ERROR) << "Failed to mmap file '" << path << "' in APK '" << path_ << "'"; local
123 LOG(ERROR) << "Failed to mmap file '" << path << "' in APK '" << path_ << "'"; local
/frameworks/base/libs/androidfw/include/androidfw/
H A DApkAssets.h45 inline const std::string& GetPath() const { return path_; }
65 std::string path_; member in class:android::ApkAssets
/frameworks/native/services/vr/performanced/
H A Dcpu_set.cpp196 path_ = name_;
198 path_ = parent_->name() + name_;
200 path_ = parent_->path() + "/" + name_;
224 path_.c_str(), name.c_str(), strerror(errno));
231 path_.c_str(), name.c_str(), strerror(errno));
246 ALOGE("CpuSet::AttachTask: Failed to open %s/tasks: %s", path_.c_str(),
H A Dcpu_set.h25 std::string path() const { return path_; }
50 std::string path_; member in class:android::dvr::CpuSet
/frameworks/native/cmds/dumpstate/
H A Dutils.cpp156 path_(path) {
157 if (!path_.empty()) {
163 MYLOGD("Loading stats from %s\n", path_.c_str());
165 if (!android::base::ReadFileToString(path_, &content)) {
166 MYLOGI("Could not read stats from %s; using max of %d\n", path_.c_str(), max_);
170 MYLOGE("No stats (empty file) on %s; using max of %d\n", path_.c_str(), max_);
176 MYLOGE("Invalid stats on file %s: not enough lines (%d). Using max of %d\n", path_.c_str(),
185 MYLOGE("Invalid stats line on file %s: %s\n", path_.c_str(), lines[0].c_str());
200 path_.c_str());
201 if (path_
[all...]
H A Ddumpstate.cpp1593 ds.path_ = ds.GetPath(".zip");
1594 MYLOGD("Creating initial .zip file (%s)\n", ds.path_.c_str());
1595 create_parent_dirs(ds.path_.c_str());
1596 ds.zip_file.reset(fopen(ds.path_.c_str(), "wb"));
1598 MYLOGE("fopen(%s, 'wb'): %s\n", ds.path_.c_str(), strerror(errno));
1621 dprintf(ds.control_socket_fd_, "BEGIN:%s\n", ds.path_.c_str());
1648 if (chown(ds.path_.c_str(), AID_SHELL, AID_SHELL)) {
1649 MYLOGE("Unable to change ownership of zip file %s: %s\n", ds.path_.c_str(),
1780 if (ds.path_ != new_path) {
1781 MYLOGD("Renaming zip file from %s to %s\n", ds.path_
[all...]
H A DDumpstateService.cpp93 dprintf(fd, "path: %s\n", ds_.path_.c_str());
H A Ddumpstate.h137 const std::string& path_; member in class:Progress
324 std::string path_; member in class:Dumpstate
/frameworks/native/cmds/dumpstate/tests/
H A Ddumpstate_test.cpp806 ReadFileToString(path_, &out);
810 path_ = kTestDataPath + name;
811 MYLOGD("Creating fd for file %s\n", path_.c_str());
813 fd = TEMP_FAILURE_RETRY(open(path_.c_str(),
816 ASSERT_GE(fd, 0) << "could not create FD for path " << path_;
856 std::string path_; member in class:android::os::dumpstate::DumpstateUtilTest

Completed in 644 milliseconds