Home
last modified time | relevance | path

Searched refs:ch_deadline (Results 1 – 2 of 2) sorted by relevance

/vim-8.2.3635/src/
H A Dchannel.c2206 chanpart->ch_deadline = GetTickCount() + 100L; in channel_parse_json()
2208 gettimeofday(&chanpart->ch_deadline, NULL); in channel_parse_json()
2209 chanpart->ch_deadline.tv_usec += 100 * 1000; in channel_parse_json()
2210 if (chanpart->ch_deadline.tv_usec > 1000 * 1000) in channel_parse_json()
2212 chanpart->ch_deadline.tv_usec -= 1000 * 1000; in channel_parse_json()
2213 ++chanpart->ch_deadline.tv_sec; in channel_parse_json()
2221 timeout = GetTickCount() > chanpart->ch_deadline; in channel_parse_json()
2227 timeout = now_tv.tv_sec > chanpart->ch_deadline.tv_sec in channel_parse_json()
3761 timeout = chanpart->ch_deadline - GetTickCount() + 1; in channel_read_json_block()
3767 timeout = (chanpart->ch_deadline.tv_sec in channel_read_json_block()
[all …]
H A Dstructs.h2240 DWORD ch_deadline; member
2242 struct timeval ch_deadline; member