HomeSort by: relevance | last modified time | path
    Searched defs:open_fds (Results 1 - 4 of 4) sorted by relevancy

  /src/external/gpl3/gdb.old/dist/gdbserver/
hostio.cc 37 static struct fd_list *open_fds; variable in typeref:struct:fd_list
186 for (fd_ptr = open_fds; fd_ptr != NULL; fd_ptr = fd_ptr->next)
337 new_fd->next = open_fds;
338 open_fds = new_fd;
550 open_fd_p = &open_fds;
  /src/external/gpl3/gdb.old/dist/gdbsupport/
filestuff.cc 180 static std::vector<int> open_fds;
188 open_fds.push_back (fd);
213 auto it = std::remove (open_fds.begin (), open_fds.end (), fd);
215 if (it != open_fds.end ())
216 open_fds.erase (it);
218 gdb_assert_not_reached ("fd not found in open_fds");
227 for (int val : open_fds)
178 static std::vector<int> open_fds; variable
  /src/external/gpl3/gdb/dist/gdbserver/
hostio.cc 37 static struct fd_list *open_fds; variable in typeref:struct:fd_list
193 for (fd_ptr = open_fds; fd_ptr != NULL; fd_ptr = fd_ptr->next)
344 new_fd->next = open_fds;
345 open_fds = new_fd;
600 open_fd_p = &open_fds;
  /src/external/gpl3/gdb/dist/gdbsupport/
filestuff.cc 180 static std::vector<int> open_fds;
188 open_fds.push_back (fd);
213 auto it = std::remove (open_fds.begin (), open_fds.end (), fd);
215 if (it != open_fds.end ())
216 open_fds.erase (it);
218 gdb_assert_not_reached ("fd not found in open_fds");
227 for (int val : open_fds)
178 static std::vector<int> open_fds; variable

Completed in 47 milliseconds