HomeSort by relevance Sort by last modified time
    Searched refs:WithTimeout (Results 1 - 12 of 12) sorted by null

  /device/google/bonito/dumpstate/
DumpstateDevice.cpp 93 CommandOptions options = CommandOptions::WithTimeout(120).Build();
128 RunCommandToFd(fd, "MKDIR MODEM LOG", {"/vendor/bin/mkdir", "-p", modemLogAllDir.c_str()}, CommandOptions::WithTimeout(2).Build());
131 RunCommandToFd(fd, "MODEM RFS INFO", {"/vendor/bin/find /data/vendor/rfs/mpss/OEMFI/"}, CommandOptions::WithTimeout(2).Build());
132 RunCommandToFd(fd, "MODEM DIAG SYSTEM PROPERTIES", {"/vendor/bin/getprop | grep vendor.sys.modem.diag"}, CommandOptions::WithTimeout(2).Build());
166 RunCommandToFd(fd, "SMLOG DUMP", {"smlog_dump", "-d", "-o", modemLogAllDir.c_str()}, CommandOptions::WithTimeout(10).Build());
200 RunCommandToFd(fd, "CP MODEM LOG", {"/vendor/bin/cp", logFile.c_str(), modemLogAllDir.c_str()}, CommandOptions::WithTimeout(2).Build());
208 RunCommandToFd(fd, "TAR LOG", {"/vendor/bin/tar", "cvf", modemLogCombined.c_str(), "-C", modemLogAllDir.c_str(), "."}, CommandOptions::WithTimeout(120).Build());
209 RunCommandToFd(fd, "CHG PERM", {"/vendor/bin/chmod", "a+w", modemLogCombined.c_str()}, CommandOptions::WithTimeout(2).Build());
234 RunCommandToFd(fd, "RM MODEM DIR", { "/vendor/bin/rm", "-r", modemLogAllDir.c_str()}, CommandOptions::WithTimeout(2).Build());
235 RunCommandToFd(fd, "RM LOG", { "/vendor/bin/rm", modemLogCombined.c_str()}, CommandOptions::WithTimeout(2).Build())
    [all...]
  /device/google/crosshatch/dumpstate/
DumpstateDevice.cpp 93 CommandOptions options = CommandOptions::WithTimeout(120).Build();
128 RunCommandToFd(fd, "MKDIR MODEM LOG", {"/vendor/bin/mkdir", "-p", modemLogAllDir.c_str()}, CommandOptions::WithTimeout(2).Build());
131 RunCommandToFd(fd, "MODEM RFS INFO", {"/vendor/bin/find /data/vendor/rfs/mpss/OEMFI/"}, CommandOptions::WithTimeout(2).Build());
132 RunCommandToFd(fd, "MODEM DIAG SYSTEM PROPERTIES", {"/vendor/bin/getprop | grep vendor.sys.modem.diag"}, CommandOptions::WithTimeout(2).Build());
163 RunCommandToFd(fd, "SMLOG DUMP", {"smlog_dump", "-d", "-o", modemLogAllDir.c_str()}, CommandOptions::WithTimeout(10).Build());
192 RunCommandToFd(fd, "CP MODEM LOG", {"/vendor/bin/cp", logFile.c_str(), modemLogAllDir.c_str()}, CommandOptions::WithTimeout(2).Build());
198 RunCommandToFd(fd, "TAR LOG", {"/vendor/bin/tar", "cvf", modemLogCombined.c_str(), "-C", modemLogAllDir.c_str(), "."}, CommandOptions::WithTimeout(120).Build());
199 RunCommandToFd(fd, "CHG PERM", {"/vendor/bin/chmod", "a+w", modemLogCombined.c_str()}, CommandOptions::WithTimeout(2).Build());
224 RunCommandToFd(fd, "RM MODEM DIR", { "/vendor/bin/rm", "-r", modemLogAllDir.c_str()}, CommandOptions::WithTimeout(2).Build());
225 RunCommandToFd(fd, "RM LOG", { "/vendor/bin/rm", modemLogCombined.c_str()}, CommandOptions::WithTimeout(2).Build())
    [all...]
  /external/syzkaller/vendor/golang.org/x/net/context/
go17.go 51 // WithTimeout returns WithDeadline(parent, time.Now().Add(timeout)).
57 // ctx, cancel := context.WithTimeout(ctx, 100*time.Millisecond)
61 func WithTimeout(parent Context, timeout time.Duration) (Context, CancelFunc) {
pre_go17.go 261 // WithTimeout returns WithDeadline(parent, time.Now().Add(timeout)).
267 // ctx, cancel := context.WithTimeout(ctx, 100*time.Millisecond)
271 func WithTimeout(parent Context, timeout time.Duration) (Context, CancelFunc) {
context.go 14 // using WithDeadline, WithTimeout, WithCancel, or WithValue.
pre_go19.go 27 // expires; WithTimeout arranges for Done to be closed when the timeout
  /device/google/wahoo/dumpstate/
DumpstateDevice.cpp 86 CommandOptions options = CommandOptions::WithTimeout(120).Build();
113 CommandOptions options = CommandOptions::WithTimeout(120).Build();
  /device/google/marlin/dumpstate/
DumpstateDevice.cpp 62 CommandOptions options = CommandOptions::WithTimeout(120).Build();
  /external/syzkaller/vendor/google.golang.org/grpc/transport/
handler_server.go 315 ctx, cancel = context.WithTimeout(ctx, ht.timeout)
http2_server.go 320 s.ctx, s.cancel = context.WithTimeout(t.ctx, state.timeout)
    [all...]
  /external/syzkaller/vendor/google.golang.org/grpc/
clientconn.go 331 // WithTimeout returns a DialOption that configures a timeout for dialing a ClientConn
334 // Deprecated: use DialContext and context.WithTimeout instead.
335 func WithTimeout(d time.Duration) DialOption {
515 ctx, cancel = context.WithTimeout(ctx, cc.dopts.timeout)
    [all...]
stream.go 159 ctx, cancel = context.WithTimeout(ctx, *mc.Timeout)

Completed in 198 milliseconds