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

  /external/chromium/third_party/libevent/
poll.c 60 struct pollfd *event_set; member in struct:pollop
63 int *idxplus1_by_fd; /* Index into event_set by fd; we add 1 so
112 assert(pop->event_set[idx].fd == i);
113 if (pop->event_set[idx].events & POLLIN) {
119 if (pop->event_set[idx].events & POLLOUT) {
127 struct pollfd *pfd = &pop->event_set[i];
147 res = poll(pop->event_set, nfds, msec);
172 what = pop->event_set[i].revents;
229 tmp_event_set = realloc(pop->event_set,
235 pop->event_set = tmp_event_set
    [all...]
event.c 596 event_set(&eonce->ev, fd, events, event_once_cb, eonce);
615 event_set(struct event *ev, int fd, short events, function
  /external/chromium_org/third_party/libevent/
poll.c 60 struct pollfd *event_set; member in struct:pollop
63 int *idxplus1_by_fd; /* Index into event_set by fd; we add 1 so
112 assert(pop->event_set[idx].fd == i);
113 if (pop->event_set[idx].events & POLLIN) {
119 if (pop->event_set[idx].events & POLLOUT) {
127 struct pollfd *pfd = &pop->event_set[i];
147 res = poll(pop->event_set, nfds, msec);
172 what = pop->event_set[i].revents;
229 tmp_event_set = realloc(pop->event_set,
235 pop->event_set = tmp_event_set
    [all...]
event.c 596 event_set(&eonce->ev, fd, events, event_once_cb, eonce);
615 event_set(struct event *ev, int fd, short events, function
  /external/chromium_org/chrome/browser/ui/webui/performance_monitor/
performance_monitor_handler.cc 56 std::set<EventType> event_set; local
59 event_set.insert(EVENT_EXTENSION_INSTALL);
60 event_set.insert(EVENT_EXTENSION_UNINSTALL);
61 event_set.insert(EVENT_EXTENSION_UPDATE);
62 event_set.insert(EVENT_EXTENSION_ENABLE);
63 event_set.insert(EVENT_EXTENSION_DISABLE);
66 event_set.insert(EVENT_CHROME_UPDATE);
69 event_set.insert(EVENT_RENDERER_HANG);
70 event_set.insert(EVENT_RENDERER_CRASH);
71 event_set.insert(EVENT_RENDERER_KILLED)
193 std::set<EventType> event_set = GetEventSetForCategory(category); local
    [all...]

Completed in 250 milliseconds