Searched refs:file_ (Results 1 – 9 of 9) sorted by relevance
/system/libziparchive/ |
D | zip_writer.cc | 88 : file_(f), in ZipWriter() 103 : file_(writer.file_), in ZipWriter() 110 writer.file_ = nullptr; in ZipWriter() 115 file_ = writer.file_; in operator =() 122 writer.file_ = nullptr; in operator =() 275 if (fwrite(&header, sizeof(header), 1, file_) != 1) { in StartAlignedEntryWithTime() 279 if (fwrite(path.data(), 1, path.size(), file_) != path.size()) { in StartAlignedEntryWithTime() 284 file_) != file_entry.padding_length) { in StartAlignedEntryWithTime() 301 if (fseeko(file_, current_offset_, SEEK_SET) != 0) { in DiscardLastEntry() 377 if (fwrite(data, 1, len, file_) != len) { in StoreBytes() [all …]
|
D | zip_writer_test.cc | 33 FILE* file_; member 38 file_ = fdopen(fd_, "w"); in SetUp() 39 ASSERT_NE(file_, nullptr); in SetUp() 43 fclose(file_); in TearDown() 49 ZipWriter writer(file_); in TEST_F() 76 ZipWriter writer(file_); in TEST_F() 119 ZipWriter writer(file_); in TEST_F() 151 ZipWriter writer(file_); in TEST_F() 181 ZipWriter writer(file_); in TEST_F() 201 ZipWriter writer(file_); in TEST_F() [all …]
|
/system/tools/aidl/ |
D | location.cpp | 20 : file_(file), begin_(begin), end_(end), source_(source) {} in AidlLocation() 23 os << l.file_; in operator <<()
|
D | location.h | 45 std::string GetFile() const { return file_; } in GetFile() 54 const std::string file_;
|
D | aidl_language.cpp | 79 ss << location_.file_ << ":" << location_.begin_.line; in PrintLine() 85 ss << location_.file_ << ":" << location_.begin_.line << ":" << location_.begin_.column << ":" in PrintLocation()
|
/system/unwinding/libunwindstack/include/unwindstack/ |
D | Maps.h | 132 FileMaps(const std::string& file) : file_(file) {} in FileMaps() 135 const std::string GetMapsFile() const override { return file_; } in GetMapsFile() 138 const std::string file_;
|
/system/libziparchive/include/ziparchive/ |
D | zip_writer.h | 178 FILE* file_; variable
|
/system/libbase/ |
D | logging.cpp | 427 : file_(GetFileBasename(file)), in LogMessageData() 434 return file_; in GetFile() 461 const char* const file_; member in android::base::LogMessageData
|
/system/apex/apexer/ |
D | apexer.py | 713 for file_ in os.listdir(content_dir): 714 if os.path.isfile(os.path.join(content_dir, file_)): 715 cmd.extend(['-s', file_]) # don't compress any files
|