Searched defs:wait (Results 26 - 50 of 73) sorted by relevance

123

/external/chromium/chrome/common/deprecated/
H A Devent_sys-inl.h150 bool wait = false; local
155 wait = (found->first == current_listener_callback_ &&
158 if (!wait) {
/external/chromium/third_party/libjingle/source/talk/session/phone/
H A Dfilemediaengine.cc171 int wait = talk_base::TimeUntil( local
173 wait = talk_base::_max(0, wait);
174 PostDelayed(wait, this);
/external/kernel-headers/original/linux/
H A Dpoll.h9 #include <linux/wait.h>
47 wait_queue_t wait; member in struct:poll_table_entry
H A Dnet.h21 #include <linux/wait.h>
104 * @wait: wait queue for several uses
114 wait_queue_head_t wait; member in struct:socket
143 struct poll_table_struct *wait);
252 SOCKCALL_UWRAP(name, poll, (struct file *file, struct socket *sock, struct poll_table_struct *wait), \
253 (file, sock, wait)) \
H A Dwait.h11 #define __WNOTHREAD 0x20000000 /* Don't wait on children of other threads in this group */
29 typedef int (*wait_queue_func_t)(wait_queue_t *wait, unsigned mode, int sync, void *key);
30 int default_wake_function(wait_queue_t *wait, unsigned mode, int sync, void *key);
47 wait_queue_t wait; member in struct:wait_bit_queue
103 * Used to distinguish between sync and async io wait context:
104 * sync i/o typically specifies a NULL wait queue entry or a wait
106 * aio specifies a wait queue entry with an async notification
109 #define is_sync_wait(wait) (!(wait) || ((wai
342 add_wait_queue_exclusive_locked(wait_queue_head_t *q, wait_queue_t * wait) argument
352 remove_wait_queue_locked(wait_queue_head_t *q, wait_queue_t * wait) argument
[all...]
/external/libnfc-nci/src/adaptation/
H A DNfcAdaptation.cpp115 mCondVar.wait();
205 CondVar.wait();
576 ** Function: ThreadCondVar::wait()
578 ** Description: wait on the mCondVar
583 void ThreadCondVar::wait() function in class:ThreadCondVar
/external/oprofile/module/
H A Dcompat22.h40 /* the wake_up path doesn't disable interrupts for wait queue
89 int retry, int wait)
88 smp_call_function(void (*func) (void * info), void * info, int retry, int wait) argument
/external/webkit/Source/JavaScriptCore/wtf/
H A DThreadingPthreads.cpp358 void ThreadCondition::wait(Mutex& mutex) function in class:WTF::ThreadCondition
370 wait(mutex);
H A DThreadingWin.cpp328 // Enter the wait state.
338 // Main wait - use timeout.
350 // this may occur if many calls to wait with a timeout are made and
456 void ThreadCondition::wait(Mutex& mutex) function in class:WTF::ThreadCondition
466 // Consider the wait to have timed out, even if our condition has already been signaled, to
492 // Time is too far in the future (and would overflow unsigned long) - wait forever.
/external/webkit/Source/JavaScriptCore/wtf/gtk/
H A DThreadingGtk.cpp208 void ThreadCondition::wait(Mutex& mutex) function in class:WTF::ThreadCondition
219 // Time is too far in the future for g_cond_timed_wait - wait forever.
221 wait(mutex);
/external/webkit/Source/JavaScriptCore/wtf/qt/
H A DThreadingQt.cpp188 bool res = thread->wait();
251 void ThreadCondition::wait(Mutex& mutex) function in class:WTF::ThreadCondition
253 m_condition->wait(mutex.impl());
264 // Time is too far in the future (and would overflow unsigned long) - wait forever.
266 wait(mutex);
271 return m_condition->wait(mutex.impl(), static_cast<unsigned long>(intervalMilliseconds));
/external/jmonkeyengine/engine/src/android/com/jme3/input/android/
H A DAndroidInput.java170 * @param wait if true waits for a reusable event to get available/released
175 private TouchEvent getNextFreeTouchEvent(boolean wait) { argument
192 if (eventPool.isEmpty() && wait) {
/external/qemu/distrib/sdl-1.2.15/src/audio/symbian/
H A DSDL_epocaudio.cpp140 CSimpleWait* wait = new (ELeave) CSimpleWait(); local
141 CleanupStack::PushL(wait);
142 wait->ConstructL();
144 return wait;
576 SDL_TRACE1("wait %d audio\n", CEpocAudio::AudioLib().StreamPlayer(KSfxChannel).SyncTime());
/external/webkit/Source/WebKit2/Platform/CoreIPC/
H A DConnection.cpp50 bool wait(double absoluteTime) function in class:CoreIPC::Connection::SyncMessageState
52 return m_waitForSyncReplySemaphore.wait(absoluteTime);
333 // We don't support having multiple clients wait for the same message.
336 // Insert our pending wait.
340 // Now wait for it to be set.
352 // Now we wait.
354 // We timed out, now remove the pending wait.
388 // Then wait for a reply. Waiting for a reply could involve dispatching incoming sync messages, so
440 timedOut = !m_syncMessageState->wait(absoluteTime);
545 // will then wait indefinitel
[all...]
/external/chromium/chrome/browser/history/
H A Dtop_sites_unittest.cc66 // Queries top sites. If |wait| is true a nested message loop is run until the
68 void QueryTopSites(TopSites* top_sites, bool wait) { argument
73 if (wait && start_number_of_callbacks == number_of_callbacks_) {
181 // need to wait until you know history has processed a task.
188 // to wait until top sites finishes processing a task.
274 // Recreate TopSites and wait for it to load.
943 // We need to wait for top sites and history to finish processing requests.
1327 // Remove the TopSites file. This forces TopSites to wait until history loads
/external/dnsmasq/src/
H A Ddnsmasq.c580 /* if we are out of resources, find how long we have to wait
1028 int wait = 0, i; local
1043 get_new_frec(now, &wait);
1062 if (listener->fd != -1 && wait == 0)
1089 return wait;
1246 /* Note that whilst in the three second wait, we check for
H A Dforward.c957 /* if wait==NULL return a free or older than TIMEOUT record.
958 else return *wait zero if one available, or *wait is delay to
961 struct frec *get_new_frec(time_t now, int *wait) argument
966 if (wait)
967 *wait = 0;
1001 if (!wait)
1012 if (oldest && wait)
1013 *wait = oldest->time + (time_t)TIMEOUT - now;
1017 if (!(f = allocate_frec(now)) && wait)
[all...]
/external/javasqlite/src/main/java/SQLite/JDBC2z/
H A DJDBCConnection.java84 db.wait(100);
529 void wait(int ms) { method in class:DatabaseX
532 lock.wait(ms);
/external/blktrace/btt/
H A Dglobals.h119 __u64 rqm[2], ios[2], sec[2], wait, svctm; member in struct:stats
/external/chromium/base/
H A Dprocess_util_posix.cc13 #include <sys/wait.h>
53 // This POSIX version of this function only guarantees that we wait no less
91 // Sleep for a bit while we wait for the process to finish.
224 bool KillProcess(ProcessHandle process_id, int exit_code, bool wait) { argument
233 if (result && wait) {
245 // The wait may fail with ECHILD if another process also waited for
506 bool wait,
615 if (wait) {
634 bool wait,
637 wait, process_handl
502 LaunchAppImpl( const std::vector<std::string>& argv, const environment_vector& env_changes, const file_handle_mapping_vector& fds_to_remap, bool wait, ProcessHandle* process_handle, bool start_new_process_group) argument
630 LaunchApp( const std::vector<std::string>& argv, const environment_vector& env_changes, const file_handle_mapping_vector& fds_to_remap, bool wait, ProcessHandle* process_handle) argument
640 LaunchAppInNewProcessGroup( const std::vector<std::string>& argv, const environment_vector& env_changes, const file_handle_mapping_vector& fds_to_remap, bool wait, ProcessHandle* process_handle) argument
650 LaunchApp(const std::vector<std::string>& argv, const file_handle_mapping_vector& fds_to_remap, bool wait, ProcessHandle* process_handle) argument
657 LaunchApp(const CommandLine& cl, bool wait, bool start_hidden, ProcessHandle* process_handle) argument
[all...]
H A Dprocess_util_win.cc221 bool wait, bool start_hidden, bool inherit_handles,
237 if (wait)
250 bool wait, bool start_hidden, ProcessHandle* process_handle) {
251 return LaunchAppImpl(cmdline, wait, start_hidden, false, process_handle);
255 const std::wstring& cmdline, bool wait, bool start_hidden,
257 return LaunchAppImpl(cmdline, wait, start_hidden, true, process_handle);
305 bool wait, bool start_hidden, ProcessHandle* process_handle) {
306 return LaunchAppImpl(cl.command_line_string(), wait,
313 bool KillProcessById(ProcessId process_id, int exit_code, bool wait) { argument
322 bool ret = KillProcess(process, exit_code, wait);
220 LaunchAppImpl(const std::wstring& cmdline, bool wait, bool start_hidden, bool inherit_handles, ProcessHandle* process_handle) argument
249 LaunchApp(const std::wstring& cmdline, bool wait, bool start_hidden, ProcessHandle* process_handle) argument
254 LaunchAppWithHandleInheritance( const std::wstring& cmdline, bool wait, bool start_hidden, ProcessHandle* process_handle) argument
304 LaunchApp(const CommandLine& cl, bool wait, bool start_hidden, ProcessHandle* process_handle) argument
400 KillProcess(ProcessHandle process, int exit_code, bool wait) argument
[all...]
/external/grub/netboot/
H A Deepro100.c183 /* How to wait for the command unit to accept a command.
187 short wait = 100; local
189 while(inb(cmd_ioaddr) && --wait >= 0);
/external/libmtp/src/
H A Dlibusb-glue.c1492 /* PTP Events wait for or check mode */
1497 ptp_usb_event (PTPParams* params, PTPContainer* event, int wait) argument
1510 switch(wait) {
/external/libpcap/
H A Dpcap-dos.c285 /* If not to wait for a packet or pcap_close() called from
583 * For pcap_offline_read(): wait and yield between printing packets
586 void pcap_set_wait (pcap_t *p, void (*yield)(void), int wait) argument
591 p->inter_packet_wait = wait;
/external/wpa_supplicant_8/hostapd/src/ap/
H A Dap_drv_ops.c626 unsigned int wait, const u8 *dst, const u8 *data,
631 return hapd->driver->send_action(hapd->drv_priv, freq, wait, dst,
625 hostapd_drv_send_action(struct hostapd_data *hapd, unsigned int freq, unsigned int wait, const u8 *dst, const u8 *data, size_t len) argument

Completed in 4593 milliseconds

123