HomeSort by relevance Sort by last modified time
    Searched refs:dump_fd (Results 1 - 8 of 8) sorted by null

  /system/extras/memory_replay/
main.cpp 174 int dump_fd = open(argv[1], O_RDONLY); local
175 if (dump_fd == -1) {
185 size_t max_allocs = GetMaxAllocs(dump_fd);
186 ProcessDump(dump_fd, max_allocs, max_threads);
188 close(dump_fd);
  /system/connectivity/wifilogd/
command_processor.h 65 // Dumps all of the logged messages to |dump_fd|. Returns true unless
67 bool Dump(::android::base::unique_fd dump_fd);
command_processor.cpp 211 bool CommandProcessor::Dump(unique_fd dump_fd) {
239 os_->Write(dump_fd, output_string.data(), output_string.size());
  /bionic/libc/malloc_debug/
RecordData.cpp 144 int dump_fd = open(dump_file_.c_str(), O_WRONLY | O_CREAT | O_TRUNC | O_CLOEXEC | O_NOFOLLOW, local
146 if (dump_fd != -1) {
149 ssize_t bytes = write(dump_fd, line.c_str(), line.length());
163 close(dump_fd);
  /external/f2fs-tools/lib/
libf2fs_io.c 153 if (lseek64(c.dump_fd, (off64_t)offset, SEEK_SET) < 0)
155 if (write(c.dump_fd, buf, len) < 0)
  /external/f2fs-tools/fsck/
dump.c 384 c.dump_fd = open(path, O_TRUNC|O_CREAT|O_RDWR, 0666);
385 ASSERT(c.dump_fd >= 0);
391 ret = ftruncate(c.dump_fd, le32_to_cpu(inode->i_size));
394 close(c.dump_fd);
  /external/autotest/database/
migrate.py 403 dump_fd, dump_file = tempfile.mkstemp('.migrate_dump')
410 os.close(dump_fd)
  /external/f2fs-tools/include/
f2fs_fs.h 284 int32_t dump_fd; member in struct:f2fs_configuration
    [all...]

Completed in 382 milliseconds