/external/chromium_org/third_party/android_testrunner/ |
D | adb_interface.py | 310 def WaitForDevicePm(self, wait_time=120): argument 321 self.SendCommand("wait-for-device", timeout_time=wait_time, retry_count=0) 326 wait_time) 329 "Package manager did not respond after %s seconds" % wait_time) 331 def WaitForInstrumentation(self, package_name, runner_name, wait_time=120): argument 346 self._WaitForShellCommandContents(command, "instrumentation:", wait_time, 355 def WaitForProcess(self, name, wait_time=120): argument 368 self._WaitForShellCommandContents("ps", name, wait_time) 370 def WaitForProcessEnd(self, name, wait_time=120): argument 382 self._WaitForShellCommandContents("ps", name, wait_time, invert=True) [all …]
|
D | README.chromium | 19 4. Fixed a bug where wait_time wasn't properly respected in
|
/external/chromium_org/native_client_sdk/src/libraries/third_party/pthreads-win32/ |
D | pthread_delay_np.c | 84 DWORD wait_time; in pthread_delay_np() local 119 if (0 > (wait_time = secs_in_millisecs + millisecs)) in pthread_delay_np() 142 (status = WaitForSingleObject (sp->cancelEvent, wait_time))) in pthread_delay_np() 168 Sleep (wait_time); in pthread_delay_np()
|
/external/wpa_supplicant_8/wpa_supplicant/ |
D | offchannel.c | 224 const u8 *buf, size_t len, unsigned int wait_time, in offchannel_send_action() argument 267 wpa_s->action_tx_wait_time = wait_time; in offchannel_send_action() 271 wait_time, wpa_s->pending_action_dst, in offchannel_send_action() 314 if (wait_time > wpa_s->max_remain_on_chan) in offchannel_send_action() 315 wait_time = wpa_s->max_remain_on_chan; in offchannel_send_action() 316 else if (wait_time == 0) in offchannel_send_action() 317 wait_time = 20; in offchannel_send_action() 318 if (wpa_drv_remain_on_channel(wpa_s, freq, wait_time) < 0) { in offchannel_send_action()
|
D | gas_query.c | 259 unsigned int wait_time; in gas_query_tx() local 270 wait_time = 1000; in gas_query_tx() 272 wait_time > gas->wpa_s->max_remain_on_chan) in gas_query_tx() 273 wait_time = gas->wpa_s->max_remain_on_chan; in gas_query_tx() 277 wait_time, gas_query_tx_status, 0); in gas_query_tx()
|
D | offchannel.h | 15 const u8 *buf, size_t len, unsigned int wait_time,
|
/external/chromium_org/content/browser/ |
D | histogram_synchronizer.cc | 207 base::TimeDelta wait_time) { in FetchHistogramsAsynchronously() argument 209 callback_thread, callback, wait_time); in FetchHistogramsAsynchronously() 216 base::TimeDelta wait_time) { in FetchHistogramsAsynchronously() argument 226 HistogramSynchronizer::ASYNC_HISTOGRAMS, wait_time); in FetchHistogramsAsynchronously() 231 base::TimeDelta wait_time) { in RegisterAndNotifyAllProcesses() argument 251 wait_time); in RegisterAndNotifyAllProcesses()
|
D | histogram_synchronizer.h | 75 base::TimeDelta wait_time); 90 base::TimeDelta wait_time);
|
/external/wpa_supplicant_8/src/p2p/ |
D | p2p_dev_disc.c | 71 unsigned int wait_time; in p2p_send_dev_disc_req() local 92 wait_time = 1000; in p2p_send_dev_disc_req() 93 if (p2p->cfg->max_listen && wait_time > p2p->cfg->max_listen) in p2p_send_dev_disc_req() 94 wait_time = p2p->cfg->max_listen; in p2p_send_dev_disc_req() 97 wpabuf_head(req), wpabuf_len(req), wait_time) < 0) { in p2p_send_dev_disc_req()
|
D | p2p_sd.c | 269 unsigned int wait_time; in p2p_start_sd() local 294 wait_time = 5000; in p2p_start_sd() 295 if (p2p->cfg->max_listen && wait_time > p2p->cfg->max_listen) in p2p_start_sd() 296 wait_time = p2p->cfg->max_listen; in p2p_start_sd() 299 wpabuf_head(req), wpabuf_len(req), wait_time) < 0) { in p2p_start_sd()
|
D | p2p_i.h | 147 unsigned int wait_time; member 781 size_t len, unsigned int wait_time);
|
/external/chromium_org/chrome/browser/metrics/ |
D | thread_watcher_unittest.cc | 165 void WaitForWaitStateChange(TimeDelta wait_time, WaitState expected_state) { in WaitForWaitStateChange() argument 167 TimeTicks end_time = TimeTicks::Now() + wait_time; in WaitForWaitStateChange() 175 void VeryLongMethod(TimeDelta wait_time) { in VeryLongMethod() argument 177 WaitForWaitStateChange(wait_time, STOPPED_WAITING); in VeryLongMethod() 181 State WaitForStateChange(const TimeDelta& wait_time, State expected_state) { in WaitForStateChange() argument 189 TimeTicks end_time = TimeTicks::Now() + wait_time; in WaitForStateChange() 208 CheckResponseState WaitForCheckResponse(const TimeDelta& wait_time, in WaitForCheckResponse() argument 218 TimeTicks end_time = TimeTicks::Now() + wait_time; in WaitForCheckResponse() 294 void WaitForSetUp(TimeDelta wait_time) { in WaitForSetUp() argument 296 TimeTicks end_time = TimeTicks::Now() + wait_time; in WaitForSetUp()
|
/external/chromium_org/tools/python/google/ |
D | httpd_utils.py | 32 wait_time = 5 33 while wait_time > 0: 40 wait_time -= 1
|
/external/chromium_org/third_party/webrtc/modules/video_render/ |
D | incoming_video_stream.cc | 307 uint32_t wait_time = render_buffers_.TimeToNextFrameRelease(); in IncomingVideoStreamProcess() local 311 if (wait_time > KEventMaxWaitTimeMs) { in IncomingVideoStreamProcess() 312 wait_time = KEventMaxWaitTimeMs; in IncomingVideoStreamProcess() 314 deliver_buffer_event_.StartTimer(false, wait_time); in IncomingVideoStreamProcess()
|
/external/chromium_org/content/public/browser/ |
D | histogram_fetcher.h | 29 base::TimeDelta wait_time);
|
/external/chromium_org/net/ssl/ |
D | default_channel_id_store.cc | 347 base::TimeDelta wait_time; in OnLoaded() local 349 wait_time = base::TimeTicks::Now() - waiting_tasks_start_time_; in OnLoaded() 350 DVLOG(1) << "Task delay " << wait_time.InMilliseconds(); in OnLoaded() 352 wait_time, in OnLoaded()
|
/external/chromium_org/media/filters/ |
D | pipeline_integration_test_base.cc | 208 const base::TimeDelta& wait_time) { in WaitUntilCurrentTimeIsAfter() argument 211 DCHECK(wait_time <= pipeline_->GetMediaDuration()); in WaitUntilCurrentTimeIsAfter() 217 wait_time), in WaitUntilCurrentTimeIsAfter()
|
D | pipeline_integration_test_base.h | 80 bool WaitUntilCurrentTimeIsAfter(const base::TimeDelta& wait_time);
|
/external/chromium_org/base/threading/ |
D | sequenced_worker_pool.cc | 351 TimeDelta* wait_time, 730 TimeDelta wait_time; in ThreadLoop() local 733 GetWork(&task, &wait_time, &delete_these_outside_lock); in ThreadLoop() 811 has_work_cv_.TimedWait(wait_time); in ThreadLoop() 902 TimeDelta* wait_time, in GetWork() argument 970 *wait_time = i->time_to_run - current_time; in GetWork()
|
/external/qemu/distrib/sdl-1.2.15/src/video/maccommon/ |
D | SDL_macevents.c | 130 UInt32 wait_time; in Mac_HandleEvents() local 134 wait_time = 2147483647; in Mac_HandleEvents() 136 wait_time = 0; in Mac_HandleEvents() 138 WaitNextEvent(everyEvent, &event, wait_time, nil); in Mac_HandleEvents()
|
/external/chromium_org/build/android/pylib/ |
D | android_commands.py | 417 self._adb.WaitForDevicePm(wait_time=timeout) 610 def WaitForSystemBootCompleted(self, wait_time): argument 627 while not boot_completed and (attempts * wait_period) < wait_time: 642 'sys.boot_completed flag was not set after %s seconds' % wait_time) 1105 wait_time = 5 * retry 1107 (wait_time, output)) 1108 time.sleep(wait_time)
|
/external/dnsmasq/contrib/dnslist/ |
D | dnslist.pl | 58 my $wait_time = 2; 65 if (/-d/) { $wait_time = shift; next; } 264 sleep $wait_time; # Take a nap.
|
/external/chromium_org/v8/tools/push-to-trunk/ |
D | common_includes.py | 329 wait_time = wait_plan.pop() 330 print "Waiting for %f seconds." % wait_time 331 self._side_effect_handler.Sleep(wait_time)
|
/external/chromium_org/third_party/libjingle/source/talk/app/webrtc/test/ |
D | fakeaudiocapturemodule.cc | 698 const uint32 wait_time = (next_frame_time_ > current_time) ? in ProcessFrameP() local 700 process_thread_->PostDelayed(wait_time, this, MSG_RUN_PROCESS); in ProcessFrameP()
|
/external/chromium_org/third_party/webrtc/modules/rtp_rtcp/source/ |
D | rtp_rtcp_impl.cc | 936 int64_t wait_time = 5 + ((rtt * 3) >> 1); // 5 + RTT * 1.5. in SendNACK() local 937 if (wait_time == 5) { in SendNACK() 938 wait_time = 100; // During startup we don't have an RTT. in SendNACK() 941 const int64_t time_limit = now - wait_time; in SendNACK()
|