Searched defs:path_ (Results 1 - 6 of 6) sorted by relevance

/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/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/native/services/vr/performanced/
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 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
/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...]

Completed in 3108 milliseconds