Searched refs:Path (Results 1 – 11 of 11) sorted by relevance
| /system/ulib/fuzz-utils/include/fuzz-utils/ |
| A D | path.h | 23 class Path final { 25 Path(); 26 ~Path(); 81 explicit Path(fbl::RefPtr<PathBuffer> path); 82 explicit Path(const Path& other); 84 Path(Path&&) = delete; 85 Path& operator=(const Path&) = delete; 86 Path& operator=(Path&&) = delete; 89 fbl::unique_ptr<Path> parent_;
|
| A D | fuzzer.h | 63 zx_status_t RebasePath(const fbl::String& package, Path* out); 67 zx_status_t GetPackagePath(const fbl::String& package, Path* out); 130 Path resource_path_; 132 Path data_path_;
|
| /system/ulib/fuzz-utils/ |
| A D | path.cpp | 29 Path::Path() { in Path() function in fuzzing::Path 36 Path::Path(fbl::RefPtr<PathBuffer> path) : path_(path), length_(path->buffer_.length()) {} in Path() function in fuzzing::Path 38 Path::Path(const Path& other) : path_(other.path_), length_(other.length_) {} in Path() function in fuzzing::Path 40 Path::~Path() {} in ~Path() 84 fbl::unique_ptr<StringList> Path::List() const { in List() 104 zx_status_t Path::Ensure(const char* relpath) { in Ensure() 133 zx_status_t Path::Push(const char* relpath) { in Push() 151 fbl::unique_ptr<Path> cloned(new (&ac) Path(path_)); in Push() 164 void Path::Pop() { in Pop() 170 fbl::unique_ptr<Path> parent; in Pop() [all …]
|
| A D | fuzzer.cpp | 188 zx_status_t Fuzzer::RebasePath(const fbl::String& path, Path* out) { in RebasePath() 203 zx_status_t Fuzzer::GetPackagePath(const fbl::String& package, Path* out) { in GetPackagePath() 250 Path path; in FindZirconFuzzers() 267 Path path; in FindFuchsiaFuzzers() 375 Path path; in Execute()
|
| /system/utest/fuzz-utils/ |
| A D | test-fuzzer.h | 65 zx_status_t RebasePath(const fbl::String& package, Path* out) { in RebasePath() 68 zx_status_t GetPackagePath(const fbl::String& package, Path* out) { in GetPackagePath() 101 Path data_path_;
|
| A D | path.cpp | 41 Path path; in TestJoin() 73 Path path; in TestPushAndPop() 138 Path path; in TestGetSizeAndExists() 166 Path path; in TestList() 194 Path path; in TestEnsureAndRemove() 230 Path path; in TestRename() 272 Path path; in TestReset()
|
| A D | fuzzer.cpp | 97 Path path; in TestRebasePath() 116 Path path; in TestGetPackagePath() 857 Path path; in TestMerge()
|
| /system/dev/nand/broker/test/ |
| A D | parent.h | 32 const char* Path() const { return path_.c_str(); } in Path() function
|
| A D | nandpart-main.cpp | 74 strcpy(path, parent.Path()); in main()
|
| A D | broker-test.cpp | 108 caller_.reset(fbl::unique_fd(open(parent_->Path(), O_RDWR))); in NandDevice() 116 caller_.reset(OpenBroker(parent_->Path())); in NandDevice()
|
| /system/fidl/fuchsia-process/ |
| A D | launcher.fidl | 19 // Path at which to install the associated directory.
|
Completed in 13 milliseconds