OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:bwstart
(Results
1 - 2
of
2
) sorted by null
/external/openssh/
misc.h
85
struct timeval
bwstart
, bwend;
member in struct:bwlimit
/external/dropbear/
scp.c
769
static struct timeval
bwstart
, bwend;
local
774
if (!timerisset(&
bwstart
)) {
775
gettimeofday(&
bwstart
, NULL);
784
timersub(&bwend, &
bwstart
, &bwend);
791
bwstart
.tv_sec = waitlen / 1000000L;
792
bwstart
.tv_usec = waitlen % 1000000L;
794
if (timercmp(&
bwstart
, &bwend, >)) {
795
timersub(&
bwstart
, &bwend, &bwend);
817
gettimeofday(&
bwstart
, NULL);
Completed in 46 milliseconds