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

  /system/core/include/cutils/
debugger.h 69 * If reading debugger data from debuggerd ever takes longer than timeout_secs
73 int dump_tombstone_timeout(pid_t tid, char* pathbuf, size_t pathlen, int timeout_secs);
81 * If reading debugger data from debuggerd ever takes longer than timeout_secs
85 int dump_backtrace_to_file_timeout(pid_t tid, int fd, int timeout_secs);
  /system/core/libcutils/
debugger.c 72 static int make_dump_request(debugger_action_t action, pid_t tid, int timeout_secs) {
106 if (timeout_secs > 0) {
108 tm.tv_sec = timeout_secs;
131 int dump_backtrace_to_file_timeout(pid_t tid, int fd, int timeout_secs) {
132 int sock_fd = make_dump_request(DEBUGGER_ACTION_DUMP_BACKTRACE, tid, timeout_secs);
155 int dump_tombstone_timeout(pid_t tid, char* pathbuf, size_t pathlen, int timeout_secs) {
156 int sock_fd = make_dump_request(DEBUGGER_ACTION_DUMP_TOMBSTONE, tid, timeout_secs);
  /external/chromium_org/chrome/browser/chromeos/first_run/
drive_first_run_browsertest.cc 70 void SetDelays(int initial_delay_secs, int timeout_secs);
140 void DriveFirstRunTest::SetDelays(int initial_delay_secs, int timeout_secs) {
141 controller_->SetDelaysForTest(initial_delay_secs, timeout_secs);
drive_first_run_controller.h 59 void SetDelaysForTest(int initial_delay_secs, int timeout_secs);
drive_first_run_controller.cc 414 int timeout_secs) {
417 web_contents_timeout_secs_ = timeout_secs;
  /external/lldb/source/API/
SBListener.cpp 189 SBListener::WaitForEvent (uint32_t timeout_secs, SBEvent &event)
194 if (timeout_secs == UINT32_MAX)
196 log->Printf ("SBListener(%p)::WaitForEvent (timeout_secs=INFINITE, SBEvent(%p))...",
201 log->Printf ("SBListener(%p)::WaitForEvent (timeout_secs=%d, SBEvent(%p))...",
202 m_opaque_ptr, timeout_secs, event.get());
210 if (timeout_secs != UINT32_MAX)
212 assert (timeout_secs != 0); // Take this out after all calls with timeout set to zero have been removed....
214 time_value.OffsetWithSeconds (timeout_secs);
226 if (timeout_secs == UINT32_MAX)
228 log->Printf ("SBListener(%p)::WaitForEvent (timeout_secs=INFINITE, SBEvent(%p)) => %i"
    [all...]
  /external/chromium_org/tools/android/forwarder2/
socket.h 127 bool WaitForEvent(EventType type, int timeout_secs);
socket.cc 394 bool Socket::WaitForEvent(EventType type, int timeout_secs) {
410 if (timeout_secs > 0) {
411 tv.tv_sec = timeout_secs;
  /external/wpa_supplicant_8/src/utils/
os.h 101 os_time_t timeout_secs)
106 return (age.sec > timeout_secs) ||
107 (age.sec == timeout_secs && age.usec > 0);
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/
server_process.py 366 def stop(self, timeout_secs=0.0):
377 if timeout_secs:
378 deadline = now + timeout_secs
driver.py 328 def stop(self, timeout_secs=0.0):
330 self._server_process.stop(timeout_secs)
android.py     [all...]
  /external/chromium_org/net/socket/
ssl_session_cache_openssl.cc 330 long timeout_secs = static_cast<long>(::time(NULL)); local
338 if (session->time + session->timeout <= timeout_secs) {

Completed in 196 milliseconds