HomeSort by relevance Sort by last modified time
    Searched refs:timeout (Results 51 - 75 of 4818) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/ltp/testcases/commands/tpm-tools/tpm/tpm_restrictpubek/
tpm_restrictpubek_tests_exp01.sh 22 set timeout 30
28 expect timeout
tpm_restrictpubek_tests_exp02.sh 22 set timeout 30
28 expect timeout
tpm_restrictpubek_tests_exp03.sh 22 set timeout 30
35 expect timeout
  /external/ltp/testcases/commands/tpm-tools/tpmtoken/tpmtoken_objects/
tpmtoken_objects_tests_exp01.sh 22 set timeout 30
28 expect timeout
  /external/mesa3d/src/gallium/include/state_tracker/
opencl_interop.h 37 typedef bool (*opencl_dri_event_wait_t)(void *cl_event, uint64_t timeout);
  /platform_testing/libraries/app-helpers/interfaces/common/src/android/platform/helpers/
IGoogleKeyboardHelper.java 23 * @param timeout wait timeout in milliseconds
25 public boolean waitForKeyboard(long timeout);
  /prebuilts/go/darwin-x86/src/cmd/vendor/golang.org/x/arch/arm/armasm/testdata/
Makefile 2 cd ..; go test -cover -run 'ObjdumpARMCond' -v -timeout 10h -printtests -long 2>&1 | tee log
3 cd ..; go test -cover -run 'ObjdumpARMUncond' -v -timeout 10h -printtests -long 2>&1 | tee -a log
  /prebuilts/go/linux-x86/src/cmd/vendor/golang.org/x/arch/arm/armasm/testdata/
Makefile 2 cd ..; go test -cover -run 'ObjdumpARMCond' -v -timeout 10h -printtests -long 2>&1 | tee log
3 cd ..; go test -cover -run 'ObjdumpARMUncond' -v -timeout 10h -printtests -long 2>&1 | tee -a log
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/thread/thread.condition/
cv_status.pass.cpp 14 // enum class cv_status { no_timeout, timeout };
22 assert(static_cast<int>(std::cv_status::timeout) == 1);
  /external/autotest/client/tests/barriertest/
barriertest.py 12 def run_once(self, our_addr, hostnames, master, timeout=120):
17 self.job.barrier(our_addr, 'First', timeout=timeout,
23 self.job.barrier(our_addr, 'Second', timeout=timeout,
31 self.job.barrier(our_addr, 'WillAbort', timeout=timeout,
47 self.job.barrier(our_addr, 'FinalSync', timeout=timeout,
55 self.job.barrier(our_addr, 'WillAbortServers', timeout=timeout
    [all...]
  /external/mesa3d/src/gallium/auxiliary/os/
os_time.c 112 os_time_get_absolute_timeout(uint64_t timeout)
117 if (timeout == PIPE_TIMEOUT_INFINITE || timeout > INT64_MAX)
121 abs_timeout = time + (int64_t)timeout;
132 os_wait_until_zero(volatile int *var, uint64_t timeout)
137 if (!timeout)
140 if (timeout == PIPE_TIMEOUT_INFINITE) {
150 int64_t end_time = start_time + timeout;
166 os_wait_until_zero_abs_timeout(volatile int *var, int64_t timeout)
171 if (timeout == PIPE_TIMEOUT_INFINITE
    [all...]
  /external/linux-kselftest/tools/testing/selftests/firmware/
fw_fallback.sh 19 OLD_TIMEOUT=$(cat /sys/class/firmware/timeout)
30 echo "$OLD_TIMEOUT" >/sys/class/firmware/timeout
44 local timeout=10
47 timeout=$(( $timeout - 1 ))
48 if [ "$timeout" -eq 0 ]; then
71 local timeout=10
74 timeout=$(( $timeout - 1 ))
75 if [ "$timeout" -eq 0 ]; the
    [all...]
  /external/curl/docs/examples/
multi-double.c 67 struct timeval timeout; local
82 /* set a suitable timeout to play around with */
83 timeout.tv_sec = 1;
84 timeout.tv_usec = 0;
88 timeout.tv_sec = curl_timeo / 1000;
89 if(timeout.tv_sec > 1)
90 timeout.tv_sec = 1;
92 timeout.tv_usec = (curl_timeo % 1000) * 1000;
120 /* Note that on some platforms 'timeout' may be modified by select().
122 rc = select(maxfd + 1, &fdread, &fdwrite, &fdexcep, &timeout);
    [all...]
  /external/ksoap2/ksoap2-j2se/src/main/java/org/ksoap2/transport/
HttpsServiceConnectionSEIgnoringConnectionClose.java 9 int timeout)
11 super(host, port, file, timeout);
  /external/libusb/libusb/os/
threads_posix.c 43 struct timespec timeout; local
46 r = usbi_backend->clock_gettime(USBI_CLOCK_REALTIME, &timeout);
50 timeout.tv_sec += tv->tv_sec;
51 timeout.tv_nsec += tv->tv_usec * 1000;
52 while (timeout.tv_nsec >= 1000000000L) {
53 timeout.tv_nsec -= 1000000000L;
54 timeout.tv_sec++;
57 return pthread_cond_timedwait(cond, mutex, &timeout);
  /external/ltp/testcases/kdump/lib/
ssh.tcl 6 # 1 min timeout
7 #set timeout 60
8 set timeout -1
17 #timeout { exit 1 }
  /external/ltp/testcases/kernel/syscalls/epoll_pwait/
epoll_pwait.h 29 int timeout, const sigset_t *sigmask)
32 timeout, sigmask, _NSIG / 8);
  /external/ltp/testcases/open_posix_testsuite/conformance/definitions/mqueue_h/
10-1-buildonly.c 14 struct timespec timeout; local
25 err = mq_timedsend(mqdes, msgp, msg_len, msg_prio, &timeout);
  /external/toolchain-utils/automation/clients/helper/
jobs.py 7 def CreateLinuxJob(label, command, lock=False, timeout=4 * 60 * 60):
8 to_return = job.Job(label, command, timeout)
  /external/toolchain-utils/binary_search_tool/android/
boot_test.sh 27 # WARNING: Do not run without timeout command, could run forever
37 timeout 60 adb wait-for-device
48 # Spawn subshell that will timeout in 60 seconds
49 # Feed to cat so that timeout will recognize it as a command
50 # (timeout only works for commands/programs, not functions)
51 timeout 60 cat <(wait_for_boot)
interactive_test.sh 20 timeout 60 adb wait-for-device
  /prebuilts/go/darwin-x86/src/net/testdata/
resolv.conf 7 options ndots:5 timeout:10 attempts:3 rotate
  /prebuilts/go/linux-x86/src/net/testdata/
resolv.conf 7 options ndots:5 timeout:10 attempts:3 rotate
  /external/autotest/client/common_lib/cros/
arc_common.py 27 def wait_for_android_boot(timeout=None):
28 """Sleep until Android has completed booting or timeout occurs."""
29 if timeout is None:
30 timeout = _WAIT_FOR_ANDROID_BOOT_SECONDS
40 timeout=timeout,
  /external/autotest/site_utils/lxc/container_pool/
unittest_client.py 11 def connect(address, timeout=30):
15 @param timeout: Connection timeout, in seconds. Default is 30.
17 @raises socket.timeout: If a connection is not made before the timeout
20 return _ClientFactory(address).connect(timeout)
24 """Factory class for making client connections with a timeout.
28 a set period of time, the make_connction call will raise a socket.timeout
46 def connect(self, timeout):
47 """Attempts to create a connection.Client with a timeout
    [all...]

Completed in 747 milliseconds

1 23 4 5 6 7 8 91011>>