HomeSort by relevance Sort by last modified time
    Searched defs:fd_count (Results 1 - 4 of 4) sorted by null

  /external/chromium/third_party/libevent/
poll.c 59 int fd_count; /* Size of idxplus1_by_fd */ member in struct:pollop
108 for (i = 0; i < pop->fd_count; ++i) {
258 if (ev->ev_fd >= pop->fd_count) {
261 if (pop->fd_count < 32)
264 new_count = pop->fd_count * 2;
274 memset(pop->idxplus1_by_fd + pop->fd_count,
275 0, sizeof(int)*(new_count - pop->fd_count));
276 pop->fd_count = new_count;
  /system/core/init/
init.c 663 int fd_count = 0; local
761 ufds[fd_count].fd = get_property_set_fd();
762 ufds[fd_count].events = POLLIN;
763 ufds[fd_count].revents = 0;
764 fd_count++;
768 ufds[fd_count].fd = get_signal_fd();
769 ufds[fd_count].events = POLLIN;
770 ufds[fd_count].revents = 0;
771 fd_count++;
775 ufds[fd_count].fd = get_keychord_fd()
    [all...]
  /frameworks/base/libs/binder/
Parcel.cpp 782 size_t fd_count = val.getFdCount(); local
787 err = this->writeInt32(fd_count);
796 if (fd_count) {
797 fds = new int[fd_count];
800 err = val.flatten(buf, len, fds, fd_count);
801 for (size_t i=0 ; i<fd_count && err==NO_ERROR ; i++) {
805 if (fd_count) {
1128 const size_t fd_count = this->readInt32(); local
1136 if (fd_count) {
1137 fds = new int[fd_count];
    [all...]
  /external/valgrind/main/coregrind/m_syswrap/
syswrap-generic.c 542 static Int fd_count = 0; variable
565 fd_count--;
603 fd_count++;
718 VG_(message)(Vg_UserMsg, "FILE DESCRIPTORS: %d open at exit.\n", fd_count);
    [all...]

Completed in 1538 milliseconds