Searched refs:busy (Results 1 - 25 of 69) sorted by relevance

123

/external/javasqlite/src/main/java/SQLite/
H A DBusyHandler.java4 * Callback interface for SQLite's user defined busy handler.
19 public boolean busy(String table, int count); method in interface:BusyHandler
/external/chromium_org/third_party/skia/src/gpu/
H A DGrPlotMgr.h39 char* busy = fBusy; local
42 if (!*busy) {
43 *busy = true;
47 busy++;
/external/skia/src/gpu/
H A DGrPlotMgr.h39 char* busy = fBusy; local
42 if (!*busy) {
43 *busy = true;
47 busy++;
/external/qemu-pc-bios/bochs/bios/
H A Dnotes24 * drive sets the busy bit in Status Reg to 1
28 > Drive also sets the busy bit in the Status register to 0.
35 the busy bit to 0, and generates an interrupt.
37 the data, the drive sets the data-request bit and the busy bit to 0.
40 and the busy bit to 1. When each subsequent sector is ready to be
41 transferred, the drive sets the data-request bit to 1, the busy bit to 0,
43 the drive sets the data-request bit and busy bit to 0.
/external/webrtc/src/system_wrappers/source/
H A Dcpu_linux.cc66 long long busy = 0; local
68 if (GetData(busy, idle, m_busyArray, m_idleArray) != 0)
71 long long deltaBusy = busy - m_oldBusyTime;
73 m_oldBusyTime = busy;
110 int CpuLinux::GetData(long long& busy, long long& idle, long long*& busyArray, argument
147 busy = luser + lnice + lsystem;
H A Dcpu_linux.h34 int GetData(long long& busy, long long& idle, long long*& busyArray,
/external/bluetooth/bluedroid/btif/src/
H A Dbtif_profile_queue.c47 uint16_t busy; member in struct:connect_node_tag
100 /* If the queue is currently busy, we return success anyway,
102 if (p_head->busy != FALSE)
105 p_head->busy = TRUE;
152 ** Description Clear the queue's busy status and advance to the next
/external/chromium_org/third_party/sqlite/src/src/
H A Dtest_superlock.c26 ** A structure to collect a busy-handler callback and argument and a count
30 int (*xBusy)(void*,int); /* Pointer to busy-handler function */
49 ** SuperlockBusy structure. Invoke the busy-handler function encapsulated
88 ** the busy-handler until either it is obtained or the busy-handler
107 ** Invoke the supplied busy-handler as required.
178 ** as a busy-handler registered with SQLite (using sqlite3_busy_handler())
179 ** until either the lock can be obtained or the busy-handler function returns
186 void *pBusyArg, /* Context arg for busy handler */
189 SuperlockBusy busy local
312 InterpAndScript busy = {0, 0}; local
[all...]
H A Dtest4.c35 int busy; /* True if this thread is in use */ member in struct:Thread
59 ** The main loop for a thread. Threads use busy waiting.
139 if( threadset[i].busy ){
143 threadset[i].busy = 1;
152 threadset[i].busy = 0;
186 if( !threadset[i].busy ){
206 p->busy = 0;
230 if( threadset[i].busy ) stop_thread(&threadset[i]);
235 if( !threadset[i].busy ){
266 if( !threadset[i].busy ){
[all...]
H A Dtest7.c57 volatile int busy; /* True if this thread is in use */ member in struct:Thread
81 ** The main loop for a thread. Threads use busy waiting.
161 if( threadset[i].busy ){
165 threadset[i].busy = 1;
174 threadset[i].busy = 0;
209 if( !threadset[i].busy ){
229 p->busy = 0;
253 if( threadset[i].busy ){
260 if( !threadset[i].busy ){
268 for(i=0; i<N_THREAD && threadset[i].busy
[all...]
H A Dprepare.c72 ** But because db->init.busy is set to 1, no VDBE code is generated
80 assert( db->init.busy );
314 assert( db->init.busy );
389 db->init.busy = 1;
412 db->init.busy = 0;
428 if( !db->init.busy ){
648 assert( db->init.busy==0 || saveSqlFlag==0 );
649 if( db->init.busy==0 ){
H A Dauth.c204 if( db->init.busy || IN_DECLARE_VTAB ){
/external/chromium_org/mojo/system/
H A Dcore_impl.cc74 : busy(false) {
80 busy(false) {
84 DCHECK(!busy);
106 if (it->second.busy)
190 // We have to handle |handles| here, since we have to mark them busy in the
207 // busy).
211 // and mark the handles as busy. If the call succeeds, we then remove the
223 // "busy").
236 if (entries[i]->busy) {
240 // Note: By marking the handle as busy her
[all...]
H A Dcore_impl.h87 // The |busy| member is used only to deal with functions (in particular
92 // the handle table lock) it must first check that that handle is not busy (if
93 // it is busy, then it fails with |MOJO_RESULT_BUSY|) and then marks it as
94 // busy. To avoid deadlock, it should also try to acquire the locks for all
100 // handle is marked busy. If it is, it fails (with |MOJO_RESULT_BUSY|). This
118 bool busy; member in struct:mojo::system::CoreImpl::HandleTableEntry
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/analysis/
H A DDFA.java829 boolean _hasSynPred(DFAState d, Set<DFAState> busy) { argument
830 busy.add(d);
842 if ( !busy.contains(edgeTarget) && _hasSynPred(edgeTarget, busy) ) return true;
853 boolean _hasSemPred(DFAState d, Set<DFAState> busy) { argument
854 busy.add(d);
862 if ( !busy.contains(edgeTarget) && _hasSemPred(edgeTarget, busy) ) return true;
874 boolean _hasCycle(DFAState d, Map<DFAState, Integer> busy) { argument
875 busy
[all...]
/external/chromium_org/chrome/common/extensions/docs/examples/extensions/ttsdebug/
H A Dttsdebug.js543 var busy = document.createElement('img');
544 busy.src = 'pacman.gif';
545 busy.alt = 'Busy indicator';
546 buttonWrap.appendChild(busy);
547 busy.style.visibility = 'hidden';
574 busy.style.visibility = 'hidden';
599 busy.style.visibility = 'hidden';
640 busy.style.visibility = 'visible';
/external/valgrind/main/helgrind/tests/
H A Dbar_bad.stderr.exp53 with error code 16 (EBUSY: Device or resource busy)
/external/bluetooth/bluedroid/stack/btm/
H A Dbtm_ble_addr.c224 p_mgnt_cb->busy = FALSE;
329 if ( !p_mgnt_cb->busy)
332 p_mgnt_cb->busy = TRUE;
/external/javasqlite/src/main/java/SQLite/JDBC2z/
H A DJDBCStatement.java96 int busy = 0;
121 conn.busy3(conn.db, ++busy)) {
130 int ms = 20 + busy * 10;
/external/wpa_supplicant_8/hostapd/src/ap/
H A Dacs.c69 * observed busy time over the time we spent on the channel,
76 * (busy time - tx time) / (active time - tx time) * 2^(chan_nf + band_min_nf)
81 * What this does is it decreases the observed busy time ratio if the
86 * If channel busy time is not available the fallback is to use channel RX time.
92 * (busy time - tx time) / (active time - tx time) *
96 * However to account for cases where busy/rx time is 0 (channel load is then
100 * 10^(chan_nf/5) + (busy time - tx time) / (active time - tx time) *
133 * ACS: 1: min_nf=-113 interference_factor=0.0802469 nf=-113 time=162 busy=0 rx=13
134 * ACS: 2: min_nf=-113 interference_factor=0.0745342 nf=-113 time=161 busy=0 rx=12
135 * ACS: 3: min_nf=-113 interference_factor=0.0679012 nf=-113 time=162 busy
292 long double factor, busy, total; local
[all...]
/external/wpa_supplicant_8/src/ap/
H A Dacs.c69 * observed busy time over the time we spent on the channel,
76 * (busy time - tx time) / (active time - tx time) * 2^(chan_nf + band_min_nf)
81 * What this does is it decreases the observed busy time ratio if the
86 * If channel busy time is not available the fallback is to use channel RX time.
92 * (busy time - tx time) / (active time - tx time) *
96 * However to account for cases where busy/rx time is 0 (channel load is then
100 * 10^(chan_nf/5) + (busy time - tx time) / (active time - tx time) *
133 * ACS: 1: min_nf=-113 interference_factor=0.0802469 nf=-113 time=162 busy=0 rx=13
134 * ACS: 2: min_nf=-113 interference_factor=0.0745342 nf=-113 time=161 busy=0 rx=12
135 * ACS: 3: min_nf=-113 interference_factor=0.0679012 nf=-113 time=162 busy
292 long double factor, busy, total; local
[all...]
/external/wpa_supplicant_8/wpa_supplicant/src/ap/
H A Dacs.c69 * observed busy time over the time we spent on the channel,
76 * (busy time - tx time) / (active time - tx time) * 2^(chan_nf + band_min_nf)
81 * What this does is it decreases the observed busy time ratio if the
86 * If channel busy time is not available the fallback is to use channel RX time.
92 * (busy time - tx time) / (active time - tx time) *
96 * However to account for cases where busy/rx time is 0 (channel load is then
100 * 10^(chan_nf/5) + (busy time - tx time) / (active time - tx time) *
133 * ACS: 1: min_nf=-113 interference_factor=0.0802469 nf=-113 time=162 busy=0 rx=13
134 * ACS: 2: min_nf=-113 interference_factor=0.0745342 nf=-113 time=161 busy=0 rx=12
135 * ACS: 3: min_nf=-113 interference_factor=0.0679012 nf=-113 time=162 busy
292 long double factor, busy, total; local
[all...]
/external/e2fsprogs/e2fsck/
H A Dmtrace.h120 /* Heap information for a busy block. */
136 } busy; member in union:__anon17746
/external/valgrind/main/coregrind/m_gdbserver/
H A Dm_gdbserver.c739 /* busy > 0 when gdbserver is currently being called.
740 busy is used to to avoid vgdb invoking gdbserver
742 static volatile int busy = 0; variable
746 busy++;
764 busy--;
807 "busy %d vgdb_interrupted_tid %d\n",
808 busy, vgdb_interrupted_tid);
833 if (busy) {
884 busy++;
893 busy
[all...]
/external/oprofile/events/i386/westmere/
H A Devents23 event:0x14 counters:0,1,2,3 um:arith minimum:2000000 name:ARITH : Cycles the divider is busy

Completed in 1738 milliseconds

123