Home
last modified time | relevance | path

Searched refs:read_timeout (Results 1 – 7 of 7) sorted by relevance

/external/v8/src/
Dd8-posix.cc82 int read_timeout, in WaitOnFD() argument
101 if (read_timeout == -1 || in WaitOnFD()
102 (total_timeout != -1 && total_timeout - gone < read_timeout)) { in WaitOnFD()
103 read_timeout = total_timeout - gone; in WaitOnFD()
105 timeout.tv_usec = (read_timeout % 1000) * 1000; in WaitOnFD()
106 timeout.tv_sec = read_timeout / 1000; in WaitOnFD()
108 read_timeout != -1 ? &timeout : nullptr); in WaitOnFD()
221 int* read_timeout, in GetTimeouts() argument
238 *read_timeout = args[2] in GetTimeouts()
303 int read_timeout, int total_timeout) { in GetStdout() argument
[all …]
/external/libpcap/
Dpcap-new.c353 pcap_t *pcap_open(const char *source, int snaplen, int flags, int read_timeout, struct pcap_rmtauth… in pcap_open() argument
389 return pcap_open_rpcap(source, snaplen, flags, read_timeout, auth, errbuf); in pcap_open()
427 status = pcap_set_timeout(fp, read_timeout); in pcap_open()
Dpcap-rpcap.h41 int read_timeout, struct pcap_rmtauth *auth, char *errbuf);
Drpcap-protocol.h309 uint32 read_timeout; /* Read timeout in milliseconds */ member
Dpcap-rpcap.c1155 startcapreq->read_timeout = htonl(fp->opt.timeout); in pcap_startcapture_remote()
2102 pcap_t *pcap_open_rpcap(const char *source, int snaplen, int flags, int read_timeout, struct pcap_r… in pcap_open_rpcap() argument
2150 fp->opt.timeout = read_timeout; in pcap_open_rpcap()
/external/libpcap/pcap/
Dpcap.h836 int read_timeout, struct pcap_rmtauth *auth, char *errbuf);
/external/libpcap/rpcapd/
Ddaemon.c1600 ntohl(startcapreq.read_timeout), in daemon_msg_startcap_req()