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

12

/external/mesa3d/src/gallium/winsys/radeon/drm/
H A Dradeon_drm_bo.c75 bool busy = false; local
83 busy = true;
93 return busy;
532 /* Try to avoid busy-waiting in radeon_bo_wait. */
/external/mesa3d/src/vulkan/wsi/
H A Dwsi_common_wayland.c480 bool busy; member in struct:wsi_wl_image
546 if (!chain->images[i].busy) {
547 /* We found a non-busy image */
549 chain->images[i].busy = true;
604 chain->images[image_index].busy = true;
618 image->busy = false;
760 chain->images[i].busy = false;
H A Dwsi_common_x11.c517 bool busy; member in struct:x11_image
593 chain->images[i].busy = false;
646 if (!chain->images[i].busy) {
647 /* We found a non-busy image */
650 chain->images[i].busy = true;
756 image->busy = true;
893 image->busy = false;
/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/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/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;
/external/swiftshader/third_party/LLVM/include/llvm/Support/
H A Dsystem_error.h888 busy = 170, // ERROR_BUSY, enumerator in enum:llvm::windows_error::_
/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/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/python/cpython2/Python/
H A Dceval.c519 section is protected with the "busy" variable. On Windows, which
522 The two threads could theoretically wiggle around the "busy" variable.
537 static volatile int busy = 0; local
540 if (busy)
542 busy = 1;
546 busy = 0;
555 busy = 0;
563 static int busy = 0; local
564 if (busy)
566 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;
/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/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/llvm/include/llvm/Support/
H A DMachO.h1525 busy :1; member in struct:llvm::MachO::fp_status_t
/external/valgrind/include/vki/
H A Dvki-linux-drm.h784 __vki_u32 busy; member in struct:vki_drm_i915_gem_busy
/external/swiftshader/third_party/llvm-subzero/include/llvm/Support/
H A DMachO.h1540 busy :1; member in struct:llvm::MachO::fp_status_t
/external/guice/lib/build/
H A Dbnd-0.0.384.jarMETA-INF/MANIFEST.MF LICENSE OSGI-OPT/ OSGI-OPT/bnd.bnd OSGI-OPT/ ...
/external/sqlite/dist/orig/
H A Dsqlite3.c1234 ** to the connections busy-handler callback. The argument is of type (void **)
1237 ** busy-handler, this function should be invoked with the second (void *) in
2579 ** KEYWORDS: {busy-handler callback} {busy handler}
2590 ** ^If the busy callback is NULL, then [SQLITE_BUSY]
2591 ** is returned immediately upon encountering the lock. ^If the busy callback
2594 ** ^The first argument to the busy handler is a copy of the void* pointer which
2596 ** the busy handler callback is the number of times that the busy handler has
2598 ** busy callbac
14182 u8 busy; /* TRUE if currently initializing */ member in struct:sqlite3::sqlite3InitInfo
[all...]
/external/sqlite/dist/
H A Dsqlite3.c1234 ** to the connections busy-handler callback. The argument is of type (void **)
1237 ** busy-handler, this function should be invoked with the second (void *) in
2579 ** KEYWORDS: {busy-handler callback} {busy handler}
2590 ** ^If the busy callback is NULL, then [SQLITE_BUSY]
2591 ** is returned immediately upon encountering the lock. ^If the busy callback
2594 ** ^The first argument to the busy handler is a copy of the void* pointer which
2596 ** the busy handler callback is the number of times that the busy handler has
2598 ** busy callbac
14182 u8 busy; /* TRUE if currently initializing */ member in struct:sqlite3::sqlite3InitInfo
[all...]
/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/guice/lib/
H A Dguava-16.0.1.jarMETA-INF/MANIFEST.MF META-INF/ META-INF/maven/ META-INF/maven/com. ...
/external/r8/deps/
H A Dguava-19.0.jarMETA-INF/MANIFEST.MF META-INF/ META-INF/maven/ META-INF/maven/com. ...
/external/v8/src/inspector/build/closure-compiler/
H A Dclosure-compiler.jarMETA-INF/MANIFEST.MF META-INF/ com/ com/google/ com/google/debugging/ com/google/debugging/sourcemap/ ...
/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 ...

Completed in 1387 milliseconds

12