Searched refs:input_file (Results 1 - 6 of 6) sorted by relevance

/art/test/952-invoke-custom/generator/
H A Dbuild-test.sh58 for input_file in $progdir/*.java; do
59 i=${input_file##*/Test}
/art/runtime/base/unix_file/
H A Dfd_file.cc295 bool FdFile::Copy(FdFile* input_file, int64_t offset, int64_t size) { argument
313 sendfile(Fd(), input_file->Fd(), &off, end - off));
320 if (lseek(input_file->Fd(), off, SEEK_SET) != off) {
332 if (!input_file->ReadFully(buffer.get(), chunk_size) ||
H A Dfd_file.h130 bool Copy(FdFile* input_file, int64_t offset, int64_t size);
/art/profman/
H A Dprofman.cc526 std::unique_ptr<std::ifstream> input_file(new std::ifstream(input_filename, std::ifstream::in));
527 if (input_file.get() == nullptr) {
532 ReadCommentedInputStream<T>(*input_file, process));
533 input_file->close();
/art/dex2oat/
H A Ddex2oat.cc2586 std::unique_ptr<std::ifstream> input_file(new std::ifstream(input_filename, std::ifstream::in));
2587 if (input_file.get() == nullptr) {
2592 ReadCommentedInputStream<T>(*input_file, process));
2593 input_file->close();
2615 std::unique_ptr<MemMap> input_file(zip_entry->ExtractToMemMap(zip_filename,
2618 if (input_file.get() == nullptr) {
2623 const std::string input_string(reinterpret_cast<char*>(input_file->Begin()),
2624 input_file->Size());
/art/oatdump/
H A Doatdump.cc3278 std::unique_ptr<std::ifstream> input_file(new std::ifstream(input_filename, std::ifstream::in));
3279 if (input_file.get() == nullptr) {
3283 std::vector<std::string> result = ReadCommentedInputStream(*input_file);
3284 input_file->close();

Completed in 414 milliseconds