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

  /external/chromium_org/device/serial/
serial_io_handler_win.cc 165 COMMTIMEOUTS timeouts = {0}; local
166 timeouts.ReadIntervalTimeout = MAXDWORD;
167 if (!::SetCommTimeouts(file().GetPlatformFile(), &timeouts)) {
  /external/dhcpcd/
eloop.c 56 } *timeouts; variable in typeref:struct:timeout
128 for (t = timeouts; t; t = t->next) {
133 timeouts = t->next;
158 if (!timeouts || timercmp(&t->when, &timeouts->when, <)) {
159 t->next = timeouts;
160 timeouts = t;
163 for (tt = timeouts; tt->next; tt = tt->next)
183 /* This deletes all timeouts for the interface EXCEPT for ones with the
193 for (t = timeouts; t && (tt = t->next, 1); t = tt)
    [all...]

Completed in 62 milliseconds