Searched defs:busy (Results 1 - 25 of 41) sorted by relevance

12

/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/libmojo/mojo/edk/system/
H A Dhandle_table.h37 // Marks handles as busy and populates |dispatchers|. Returns MOJO_RESULT_BUSY
60 bool busy = false; member in struct:mojo::edk::HandleTable::Entry
/external/compiler-rt/test/tsan/
H A Dsignal_reset.cc21 static void* busy(void *p) { function
62 pthread_create(&th[0], 0, busy, 0);
/external/e2fsprogs/e2fsck/
H A Dmtrace.h120 /* Heap information for a busy block. */
136 } busy; member in union:__anon4983
/external/libdrm/amdgpu/
H A Damdgpu_cs.c315 bool *busy)
337 *busy = args.out.status;
346 bool busy = true; local
364 fence->fence, timeout_ns, flags, &busy);
366 if (!r && !busy)
308 amdgpu_ioctl_wait_cs(amdgpu_context_handle context, unsigned ip, unsigned ip_instance, uint32_t ring, uint64_t handle, uint64_t timeout_ns, uint64_t flags, bool *busy) argument
H A Damdgpu_bo.c511 bool *busy)
524 *busy = args.out.status;
509 amdgpu_bo_wait_for_idle(amdgpu_bo_handle bo, uint64_t timeout_ns, bool *busy) argument
/external/libunwind/include/tdep-ia64/
H A Dscript.h63 AO_TS_t busy; /* is the script-cache busy? */ member in struct:ia64_script_cache
/external/guava/guava/src/com/google/common/cache/
H A DStriped64.java49 * A single spinlock ("busy") is used for initializing and
141 transient volatile int busy; field in class:Striped64
157 * CASes the busy field from 0 to 1 to acquire lock.
199 if (busy == 0) { // Try to attach new Cell
201 if (busy == 0 && casBusy()) {
212 busy = 0;
229 else if (busy == 0 && casBusy()) {
237 busy = 0;
247 else if (busy == 0 && cells == as && casBusy()) {
257 busy
[all...]
/external/libdrm/tests/exynos/
H A Dexynos_fimg2d_event.c35 unsigned int busy; member in struct:g2d_job
57 job->busy = 0;
108 while (jobs[i].busy)
119 if (jobs[i].busy == 0)
167 j->busy = 1;
/external/wpa_supplicant_8/hostapd/src/ap/
H A Dacs.c70 * observed busy time over the time we spent on the channel,
77 * (busy time - tx time) / (active time - tx time) * 2^(chan_nf + band_min_nf)
82 * What this does is it decreases the observed busy time ratio if the
87 * If channel busy time is not available the fallback is to use channel RX time.
93 * (busy time - tx time) / (active time - tx time) *
97 * However to account for cases where busy/rx time is 0 (channel load is then
101 * 10^(chan_nf/5) + (busy time - tx time) / (active time - tx time) *
134 * ACS: 1: min_nf=-113 interference_factor=0.0802469 nf=-113 time=162 busy=0 rx=13
135 * ACS: 2: min_nf=-113 interference_factor=0.0745342 nf=-113 time=161 busy=0 rx=12
136 * ACS: 3: min_nf=-113 interference_factor=0.0679012 nf=-113 time=162 busy
295 long double factor, busy, total; local
[all...]
/external/wpa_supplicant_8/src/ap/
H A Dacs.c70 * observed busy time over the time we spent on the channel,
77 * (busy time - tx time) / (active time - tx time) * 2^(chan_nf + band_min_nf)
82 * What this does is it decreases the observed busy time ratio if the
87 * If channel busy time is not available the fallback is to use channel RX time.
93 * (busy time - tx time) / (active time - tx time) *
97 * However to account for cases where busy/rx time is 0 (channel load is then
101 * 10^(chan_nf/5) + (busy time - tx time) / (active time - tx time) *
134 * ACS: 1: min_nf=-113 interference_factor=0.0802469 nf=-113 time=162 busy=0 rx=13
135 * ACS: 2: min_nf=-113 interference_factor=0.0745342 nf=-113 time=161 busy=0 rx=12
136 * ACS: 3: min_nf=-113 interference_factor=0.0679012 nf=-113 time=162 busy
295 long double factor, busy, total; local
[all...]
/external/wpa_supplicant_8/wpa_supplicant/src/ap/
H A Dacs.c70 * observed busy time over the time we spent on the channel,
77 * (busy time - tx time) / (active time - tx time) * 2^(chan_nf + band_min_nf)
82 * What this does is it decreases the observed busy time ratio if the
87 * If channel busy time is not available the fallback is to use channel RX time.
93 * (busy time - tx time) / (active time - tx time) *
97 * However to account for cases where busy/rx time is 0 (channel load is then
101 * 10^(chan_nf/5) + (busy time - tx time) / (active time - tx time) *
134 * ACS: 1: min_nf=-113 interference_factor=0.0802469 nf=-113 time=162 busy=0 rx=13
135 * ACS: 2: min_nf=-113 interference_factor=0.0745342 nf=-113 time=161 busy=0 rx=12
136 * ACS: 3: min_nf=-113 interference_factor=0.0679012 nf=-113 time=162 busy
295 long double factor, busy, total; local
[all...]
/external/ltp/testcases/kernel/io/ltp-aiodio/
H A Daiocp.c49 static int busy = 0; // # of I/O's in flight variable
235 --busy;
263 --busy;
500 int n = MIN(MIN(aio_maxio - busy, aio_maxio),
529 busy += n;
531 printf("io_submit(%d) busy:%d\n", n, busy);
549 printf("busy:%d aio_maxio:%d tocopy:%d\n",
550 busy, aio_maxio, tocopy);
H A Daio-stress.c202 int busy; member in struct:io_unit
379 /* worker func to check the busy bits and get an io unit ready for use */
382 if (io->busy == IO_PENDING)
385 io->busy = IO_PENDING;
467 io->busy = IO_FREE;
/external/mesa3d/src/mesa/drivers/dri/i915/
H A Dintel_buffer_objects.c182 bool busy; local
204 busy =
208 if (busy) {
210 /* Replace the current busy bo with fresh data. */
216 "to a busy buffer object.\n");
/external/mesa3d/src/mesa/drivers/dri/i965/
H A Dintel_buffer_objects.c182 bool busy; local
204 busy =
208 if (busy) {
210 /* Replace the current busy bo with fresh data. */
216 "to a busy buffer object.\n");
/external/mesa3d/src/mesa/drivers/dri/intel/
H A Dintel_buffer_objects.c182 bool busy; local
204 busy =
208 if (busy) {
210 /* Replace the current busy bo with fresh data. */
216 "to a busy buffer object.\n");
/external/javasqlite/src/main/java/SQLite/JDBC2z/
H A DJDBCConnection.java90 public boolean busy(String table, int count) { method in class:JDBCConnection
/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/libpcap/msdos/
H A Dpktdrvr.c802 PUBLIC void PktQueueBusy (BOOL busy) argument
804 *rxOutOfsFp = busy ? (*rxInOfsFp + sizeof(RX_ELEMENT)) : *rxInOfsFp;
857 PUBLIC void PktQueueBusy (BOOL busy) argument
863 if (busy)
923 PUBLIC void PktQueueBusy (BOOL busy) argument
929 if (busy)
983 PUBLIC void PktQueueBusy (BOOL busy) argument
985 rxOutOfs = busy ? (rxInOfs + sizeof(RX_ELEMENT)) : rxInOfs;
/external/valgrind/coregrind/m_gdbserver/
H A Dm_gdbserver.c775 /* busy > 0 when gdbserver is currently being called.
776 busy is used to avoid vgdb invoking gdbserver
778 static volatile int busy = 0; variable
782 busy++;
800 busy--;
844 "busy %d vgdb_interrupted_tid %u\n",
845 busy, vgdb_interrupted_tid);
879 if (busy) {
930 busy++;
943 busy
[all...]
/external/autotest/client/tests/aiostress/
H A Daio-stress.c204 int busy; member in struct:io_unit
376 /* worker func to check the busy bits and get an io unit ready for use */
378 if (io->busy == IO_PENDING)
381 io->busy = IO_PENDING;
457 io->busy = IO_FREE;
/external/swiftshader/third_party/LLVM/include/llvm/Support/
H A Dsystem_error.h888 busy = 170, // ERROR_BUSY, enumerator in enum:llvm::windows_error::_
/external/libdrm/intel/
H A Dintel_bufmgr_gem.c654 struct drm_i915_gem_busy busy; local
660 memclear(busy);
661 busy.handle = bo_gem->gem_handle;
663 ret = drmIoctl(bufmgr_gem->fd, DRM_IOCTL_I915_GEM_BUSY, &busy);
665 bo_gem->idle = !busy.busy;
666 return busy.busy;
670 return (ret == 0 && busy.busy);
[all...]
/external/ltp/testcases/kernel/fs/doio/
H A Ddoio.c149 int busy; member in struct:aio_info
4621 if (Aio_Info[i].busy) {
4670 if (!Aio_Info[i].busy) {
4672 aiop->busy = 1;
4677 if (Aio_Info[i].busy && Aio_Info[i].id == aio_id) {
4736 aiop->busy = 0;

Completed in 1062 milliseconds

12