Searched refs:wait_time (Results 1 - 25 of 83) sorted by relevance

1234

/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_rwlock_timedrdlock/
H A D6-1.c112 struct timeval wait_time; local
169 wait_time.tv_sec = after_wait.tv_sec - before_wait.tv_sec;
170 wait_time.tv_usec = after_wait.tv_usec - before_wait.tv_usec;
171 if (wait_time.tv_usec < 0) {
172 --wait_time.tv_sec;
173 wait_time.tv_usec += 1000000;
175 if (wait_time.tv_sec < TIMEOUT) {
178 TIMEOUT, (long int)wait_time.tv_sec,
179 (long int)wait_time.tv_usec);
/external/autotest/server/cros/ap_configurators/
H A Dweb_driver_core_helpers.py95 def wait_for_objects_by_id(self, element_ids, wait_time=5):
99 @param wait_time: The time to wait before giving up.
107 xpath_found = self.wait_for_objects_by_xpath(xpaths, wait_time)
113 def wait_for_objects_by_xpath(self, xpaths, wait_time=5):
117 @param wait_time: The time to wait before giving up.
123 if wait_time < len(xpaths):
124 wait_time = len(xpaths)
126 while (int(time.time()) - start_time) < wait_time:
130 wait_time=0.25)
189 def wait_for_object_by_id(self, element_id, wait_time
[all...]
H A Dlinksysm10_ap_configurator.py26 self.wait_for_object_by_xpath(continue_btn, wait_time=10)
H A Ddlink_dwl2100_ap_configurator.py103 wait_time=30)
282 wait_time=30)
H A Dbuffalo_wzr_d1800h_ap_configurator.py94 self.wait_for_object_by_xpath(apply_set, wait_time=40)
107 self.wait_for_object_by_xpath(apply_set, wait_time=40)
123 self.wait_for_object_by_xpath(complete, wait_time=40)
127 self.wait_for_object_by_xpath(complete, wait_time=40)
/external/wpa_supplicant_8/wpa_supplicant/
H A Doffchannel.c248 * @wait_time: Wait time for response in milliseconds
256 * channel. The @wait_time parameter can be used to request the driver to remain
261 const u8 *buf, size_t len, unsigned int wait_time,
312 wpa_s->action_tx_wait_time = wait_time;
313 if (wait_time)
318 wait_time, wpa_s->pending_action_dst,
361 if (wait_time > wpa_s->max_remain_on_chan)
362 wait_time = wpa_s->max_remain_on_chan;
363 else if (wait_time == 0)
364 wait_time
259 offchannel_send_action(struct wpa_supplicant *wpa_s, unsigned int freq, const u8 *dst, const u8 *src, const u8 *bssid, const u8 *buf, size_t len, unsigned int wait_time, void (*tx_cb)(struct wpa_supplicant *wpa_s, unsigned int freq, const u8 *dst, const u8 *src, const u8 *bssid, const u8 *data, size_t data_len, enum offchannel_send_action_result result), int no_cck) argument
[all...]
H A Doffchannel.h15 const u8 *buf, size_t len, unsigned int wait_time,
H A Ddpp_supplicant.c505 unsigned int wait_time; local
583 wait_time = wpa_s->max_remain_on_chan;
584 if (wait_time > 2000)
585 wait_time = 2000;
586 eloop_register_timeout(wait_time / 1000, (wait_time % 1000) * 1000,
593 wait_time, wpas_dpp_tx_status, 0);
1359 unsigned int wait_time; local
1392 wait_time = wpa_s->max_remain_on_chan;
1393 if (wait_time > 200
1407 unsigned int wait_time; local
1448 unsigned int wait_time; local
1809 unsigned int wait_time; local
1876 unsigned int wait_time; local
[all...]
/external/autotest/server/site_tests/power_DarkResumeDisplay/
H A Dpower_DarkResumeDisplay.py101 wait_time = SUSPEND_DURATION * NUM_DARK_RESUMES + SUSPEND_DURATION / 2
102 logging.info('suspending host, and waiting %ds', wait_time)
104 time.sleep(wait_time)
/external/wpa_supplicant_8/hostapd/src/common/
H A Dgas_server.h20 unsigned int wait_time));
/external/wpa_supplicant_8/src/common/
H A Dgas_server.h20 unsigned int wait_time));
/external/wpa_supplicant_8/wpa_supplicant/src/common/
H A Dgas_server.h20 unsigned int wait_time));
/external/autotest/site_utils/
H A Drpc_flight_recorder.py81 wait_time = (start_time + period) - time.time()
82 if wait_time > 0:
83 time.sleep(wait_time)
110 wait_time = (start_time + period) - time.time()
111 if wait_time > 0:
112 time.sleep(wait_time)
/external/autotest/client/tests/netperf2/
H A Dnetperf2.py38 cpu_affinity = '', dev = '', bidi = False, wait_time = 5):
59 wait_time: Time to wait after establishing data/control connections
67 self.wait_time = wait_time
144 if self.wait_time:
145 args += ' -s %d ' % self.wait_time
164 (self.wait_time, 'mpstat', interval))
179 self.actual_times.append(t1 - t0 - self.wait_time)
/external/webrtc/webrtc/common_video/
H A Dincoming_video_stream.cc213 uint32_t wait_time; local
217 wait_time = render_buffers_->TimeToNextFrameRelease();
221 if (wait_time > kEventMaxWaitTimeMs) {
222 wait_time = kEventMaxWaitTimeMs;
224 deliver_buffer_event_->StartTimer(false, wait_time);
/external/wpa_supplicant_8/hostapd/src/p2p/
H A Dp2p_dev_disc.c71 unsigned int wait_time; local
92 wait_time = 1000;
93 if (p2p->cfg->max_listen && wait_time > p2p->cfg->max_listen)
94 wait_time = p2p->cfg->max_listen;
97 wpabuf_head(req), wpabuf_len(req), wait_time) < 0) {
/external/wpa_supplicant_8/src/p2p/
H A Dp2p_dev_disc.c71 unsigned int wait_time; local
92 wait_time = 1000;
93 if (p2p->cfg->max_listen && wait_time > p2p->cfg->max_listen)
94 wait_time = p2p->cfg->max_listen;
97 wpabuf_head(req), wpabuf_len(req), wait_time) < 0) {
/external/wpa_supplicant_8/wpa_supplicant/src/p2p/
H A Dp2p_dev_disc.c71 unsigned int wait_time; local
92 wait_time = 1000;
93 if (p2p->cfg->max_listen && wait_time > p2p->cfg->max_listen)
94 wait_time = p2p->cfg->max_listen;
97 wpabuf_head(req), wpabuf_len(req), wait_time) < 0) {
/external/ltp/utils/ffsb-6.0-rc2/
H A Dffsb_tg.h98 unsigned wait_time; member in struct:ffsb_tg
113 * It will sleep for wait_time secs between calls The ffsb_config
121 unsigned wait_time; /* in sec */ member in struct:tg_run_params
H A Dmain.c40 int wait_time; member in struct:ffsb_time_poll
53 if (difftime.tv_sec >= data->wait_time)
92 pdata.wait_time = fc.time;
152 params[i].wait_time = FFSB_TG_WAIT_TIME;
H A Dffsb_thread.c55 unsigned wait_time = tg_get_waittime(ft->tg); local
63 ffsb_milli_sleep(wait_time);
/external/wpa_supplicant_8/hostapd/src/ap/
H A Daccounting.c461 unsigned int i, wait_time; local
488 wait_time = 0;
490 wait_time = 3; /* RADIUS_CLIENT_FIRST_WAIT */
492 wait_time *= 2;
494 res = eloop_deplete_timeout(wait_time, 0, accounting_interim_update,
500 MAC2STR(addr), sta->acct_interim_errors, wait_time);
/external/wpa_supplicant_8/src/ap/
H A Daccounting.c461 unsigned int i, wait_time; local
488 wait_time = 0;
490 wait_time = 3; /* RADIUS_CLIENT_FIRST_WAIT */
492 wait_time *= 2;
494 res = eloop_deplete_timeout(wait_time, 0, accounting_interim_update,
500 MAC2STR(addr), sta->acct_interim_errors, wait_time);
/external/wpa_supplicant_8/wpa_supplicant/src/ap/
H A Daccounting.c461 unsigned int i, wait_time; local
488 wait_time = 0;
490 wait_time = 3; /* RADIUS_CLIENT_FIRST_WAIT */
492 wait_time *= 2;
494 res = eloop_deplete_timeout(wait_time, 0, accounting_interim_update,
500 MAC2STR(addr), sta->acct_interim_errors, wait_time);
/external/autotest/client/deps/glbench/src/
H A Dutils.cc151 double wait_time = 1.0e-6 * (time_now - time_start); local
152 assert(wait_time >= 0);
153 assert(wait_time < timeout + 5.0);
154 return wait_time;

Completed in 640 milliseconds

1234