Searched defs:busy (Results 1 - 25 of 50) sorted by path

12

/external/antlr/antlr-3.4/lib/
H A Dantlr-3.4-complete.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/antlr/ org/antlr/analysis/ org/antlr/codegen/ org/ ...
/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/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/autotest/server/cros/network/rf_switch/
H A Drf_switch.py178 def busy(self): member in class:RfSwitch
/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/dagger2/lib/
H A Dgoogle-java-format-0.1-20151017.042846-2.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/googlejavaformat/ com/google/googlejavaformat/CloseOp ...
/external/e2fsprogs/e2fsck/
H A Dmtrace.h120 /* Heap information for a busy block. */
136 } busy; member in union:__anon5084
/external/fio/t/
H A Dread-to-pipe-async.c80 int busy; member in struct:reader_thread
368 __sync_fetch_and_add(&rt->busy, 1);
370 __sync_fetch_and_sub(&rt->busy, 1);
387 } else if (!rt->busy && !pthread_mutex_trylock(&rt->thread.lock)) {
/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/guice/lib/build/
H A Dbnd-0.0.384.jarMETA-INF/MANIFEST.MF LICENSE OSGI-OPT/ OSGI-OPT/bnd.bnd OSGI-OPT/ ...
/external/guice/lib/
H A Dguava-16.0.1.jarMETA-INF/MANIFEST.MF META-INF/ META-INF/maven/ META-INF/maven/com. ...
/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/javasqlite/src/main/java/SQLite/JDBC2z/
H A DJDBCConnection.java90 public boolean busy(String table, int count) { method in class:JDBCConnection
/external/kernel-headers/original/uapi/drm/
H A Di915_drm.h855 /** Handle of the buffer to check for busy */
858 /** Return busy status
867 * as busy may become idle before the ioctl is completed.
869 * Furthermore, if the object is busy, which engine is busy is only
871 * report of which engines are busy from being always accurate.
899 * the object is idle or busy. The report of which engines are busy
902 __u32 busy; member in struct:drm_i915_gem_busy
/external/libdrm/amdgpu/
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
H A Damdgpu_cs.c385 bool *busy)
407 *busy = args.out.status;
416 bool busy = true; local
438 fence->fence, timeout_ns, flags, &busy);
440 if (!r && !busy)
378 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
/external/libdrm/include/drm/
H A Di915_drm.h919 /** Handle of the buffer to check for busy */
922 /** Return busy status
931 * as busy may become idle before the ioctl is completed.
933 * Furthermore, if the object is busy, which engine is busy is only
935 * report of which engines are busy from being always accurate.
963 * the object is idle or busy. The report of which engines are busy
966 __u32 busy; member in struct:drm_i915_gem_busy
/external/libdrm/intel/
H A Dintel_bufmgr_gem.c663 struct drm_i915_gem_busy busy; local
669 memclear(busy);
670 busy.handle = bo_gem->gem_handle;
672 ret = drmIoctl(bufmgr_gem->fd, DRM_IOCTL_I915_GEM_BUSY, &busy);
674 bo_gem->idle = !busy.busy;
675 return busy.busy;
679 return (ret == 0 && busy.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/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/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/libunwind/include/tdep-ia64/
H A Dscript.h63 AO_TS_t busy; /* is the script-cache busy? */ member in struct:ia64_script_cache
/external/llvm/include/llvm/Support/
H A DMachO.h1525 busy :1; member in struct:llvm::MachO::fp_status_t
/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;
/external/ltp/testcases/kernel/io/ltp-aiodio/
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;

Completed in 3151 milliseconds

12